From 4a63d1317fd5571ce343f27e4f5fe349ede2646b Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Thu, 20 May 2021 17:38:14 +0800 Subject: [PATCH 1/7] Support new azure monitor feature --- src/HDInsight/HDInsight/Az.HDInsight.psd1 | 4 +- src/HDInsight/HDInsight/ChangeLog.md | 5 + .../DisableAzureHDInsightMonitorCommand.cs | 99 ++++++++ .../EnableAzureHDInsightMonitorCommand.cs | 141 ++++++++++++ .../GetAzureHDInsightMonitorCommand.cs | 95 ++++++++ .../help/Disable-AzHDInsightMonitor.md | 181 +++++++++++++++ .../help/Enable-AzHDInsightMonitor.md | 215 ++++++++++++++++++ .../HDInsight/help/Get-AzHDInsightMonitor.md | 149 ++++++++++++ 8 files changed, 888 insertions(+), 1 deletion(-) create mode 100644 src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs create mode 100644 src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs create mode 100644 src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs create mode 100644 src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md create mode 100644 src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md create mode 100644 src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index cd8c5ecb7ca2..33049995f2de 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -104,7 +104,9 @@ CmdletsToExport = 'Get-AzHDInsightJob', 'New-AzHDInsightSqoopJobDefinition', 'Get-AzHDInsightClusterAutoscaleConfiguration', 'New-AzHDInsightClusterAutoscaleConfiguration', 'Set-AzHDInsightClusterAutoscaleConfiguration', - 'Remove-AzHDInsightClusterAutoscaleConfiguration' + 'Remove-AzHDInsightClusterAutoscaleConfiguration', + 'Get-AzHDInsightMonitor', + 'Enable-AzHDInsightMonitor', 'Disable-AzHDInsightMonitor' # Variables to export from this module # VariablesToExport = @() diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 0b674e335983..4291fb669d60 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,6 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release +* Support new azure monitor feature in HDInsight: + - Add cmdlet `Get-AzHDInsightMonitor` to allow customer to get the Azure Monitor status of HDInsight cluster. + - Add cmdlet `Enable-AzHDInsightMonitor` to allow customer to enable the Azure Monitor in HDInsight cluster. + - Add cmdlet `Disable-AzHDInsightMonitor` to allow customer to disable the Azure Monitor in HDInsight cluster. + ## Version 4.2.1 * Supported getting default vmsize from backend if customer does not provide the related parameters: `-WorkerNodeSize`, `-HeadNodeSize`, `-ZookeeperNodeSize`, `-EdgeNodeSize`, `-KafkaManagementNodeSize`. diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs new file mode 100644 index 000000000000..a6984fedce03 --- /dev/null +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs @@ -0,0 +1,99 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Azure.Commands.HDInsight.Commands; +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.Utilities.Common; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.HDInsight +{ + [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [OutputType(typeof(bool))] + public class DisableAzureHDInsightMonitorCommand : HDInsightCmdletBase + { + #region Input Parameter Definitions + + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + + [Parameter( + Position = 0, + Mandatory = false, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the resource group.")] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the cluster.")] + [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string ClusterName { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = SetByResourceIdParameterSet, + HelpMessage = "Gets or sets the resource id.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = SetByInputObjectParameterSet, + HelpMessage = "Gets or sets the input object.")] + [ValidateNotNull] + public AzureHDInsightCluster InputObject { get; set; } + + #endregion + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + this.ClusterName = resourceIdentifier.ResourceName; + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ClusterName = this.InputObject.Name; + this.ResourceGroupName = this.InputObject.ResourceGroup; + } + + if (ClusterName != null && ResourceGroupName == null) + { + ResourceGroupName = GetResourceGroupByAccountName(ClusterName); + } + + if (ShouldProcess("Disable Azure Monitor")) + { + // ToDO: need to change the api + HDInsightManagementClient.DisableMonitoring(ResourceGroupName, ClusterName); + WriteObject(true); + } + } + } +} diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs new file mode 100644 index 000000000000..f883e88f43c3 --- /dev/null +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs @@ -0,0 +1,141 @@ +// ---------------------------------------------------------------------------------- +// +// 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.WindowsAzure.Commands.Common; +using Microsoft.Azure.Commands.HDInsight.Commands; +using Microsoft.Azure.Management.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; + +namespace Microsoft.Azure.Commands.HDInsight +{ + [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [OutputType(typeof(bool))] + public class EnableAzureHDInsightMonitorCommand : HDInsightCmdletBase + { + #region Input Parameter Definitions + + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + + [Parameter( + Position = 0, + Mandatory = false, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the resource group.")] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the cluster.")] + [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string ClusterName { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = SetByResourceIdParameterSet, + HelpMessage = "Gets or sets the resource id.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = SetByInputObjectParameterSet, + HelpMessage = "Gets or sets the input object.")] + [ValidateNotNull] + public AzureHDInsightCluster InputObject { get; set; } + + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = SetByResourceIdParameterSet, + HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = SetByInputObjectParameterSet, + HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] + public string WorkspaceId { get; set; } + + [Parameter( + Position = 3, + Mandatory = true, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = SetByResourceIdParameterSet, + HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] + [Parameter( + Position = 2, + Mandatory = true, + ParameterSetName = SetByInputObjectParameterSet, + HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] + public string PrimaryKey { get; set; } + + #endregion + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + this.ClusterName = resourceIdentifier.ResourceName; + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ClusterName = this.InputObject.Name; + this.ResourceGroupName = this.InputObject.ResourceGroup; + } + + if (ClusterName != null && ResourceGroupName == null) + { + ResourceGroupName = GetResourceGroupByAccountName(ClusterName); + } + + var monitoringParams = new ClusterMonitoringRequest + { + WorkspaceId = WorkspaceId, + PrimaryKey = PrimaryKey + }; + + if (ShouldProcess("Enable Azure Monitor")) + { + // ToDO: need to change the api + HDInsightManagementClient.EnableMonitoring(ResourceGroupName, ClusterName, monitoringParams); + WriteObject(true); + } + } + } +} diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs new file mode 100644 index 000000000000..cd93356abc77 --- /dev/null +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs @@ -0,0 +1,95 @@ +// ---------------------------------------------------------------------------------- +// +// 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.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.Internal.Resources.Utilities.Models; +using Microsoft.WindowsAzure.Commands.Utilities.Common; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.HDInsight +{ + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet)] + [OutputType(typeof(AzureHDInsightMonitoring))] + public class GetAzureHDInsightMonitorCommand : HDInsightCmdletBase + { + #region Input Parameter Definitions + private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; + private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + + [Parameter( + Position = 0, + Mandatory = false, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the resource group.")] + [ResourceGroupCompleter] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + ParameterSetName = SetByNameParameterSet, + HelpMessage = "Gets or sets the name of the cluster.")] + [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] + [ValidateNotNullOrEmpty] + public string ClusterName { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = SetByResourceIdParameterSet, + HelpMessage = "Gets or sets the resource id.")] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = SetByInputObjectParameterSet, + HelpMessage = "Gets or sets the input object.")] + [ValidateNotNull] + public AzureHDInsightCluster InputObject { get; set; } + + #endregion + + public override void ExecuteCmdlet() + { + if (this.IsParameterBound(c => c.ResourceId)) + { + var resourceIdentifier = new ResourceIdentifier(ResourceId); + this.ClusterName = resourceIdentifier.ResourceName; + this.ResourceGroupName = resourceIdentifier.ResourceGroupName; + } + + if (this.IsParameterBound(c => c.InputObject)) + { + this.ClusterName = this.InputObject.Name; + this.ResourceGroupName = this.InputObject.ResourceGroup; + } + + if (ClusterName != null && ResourceGroupName == null) + { + ResourceGroupName = GetResourceGroupByAccountName(ClusterName); + } + // ToDO: need to change the api and redefine a class to replace AzureHDInsightMonitoring + var clusterMonitoringResource = HDInsightManagementClient.GetMonitoring(ResourceGroupName, ClusterName); + WriteObject(new AzureHDInsightMonitoring(clusterMonitoringResource)); + } + } +} diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md new file mode 100644 index 000000000000..1778a076038a --- /dev/null +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md @@ -0,0 +1,181 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml +Module Name: Az.HDInsight +online version: +schema: 2.0.0 +--- + +# Disable-AzHDInsightMonitor + +## SYNOPSIS +Disables Azure Monitor in a specified HDInsight cluster. + +## SYNTAX + +### SetByNameParameterSet (Default) +``` +Disable-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByResourceIdParameterSet +``` +Disable-AzHDInsightMonitor [-ResourceId] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + +### SetByInputObjectParameterSet +``` +Disable-AzHDInsightMonitor [-InputObject] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet **Disable-AzHDInsightMonitor** disables Azure Monitor in a specified HDInsight cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $resourceGroupName = "Group" +PS C:\> Disable-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName +``` + +This cmdlet disables the azure monitor in a specified HDInsight cluster. + +### Example 2 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName +PS C:\> $cluster | Disable-AzHDInsightMonitor +``` + +This cmdlet disables the azure monitor in a specified HDInsight cluster with pipeline. + +## PARAMETERS + +### -ClusterName +Gets or sets the name of the cluster. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Gets or sets the input object. + +```yaml +Type: AzureHDInsightCluster +Parameter Sets: SetByInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Gets or sets the name of the resource group. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Gets or sets the resource id. + +```yaml +Type: String +Parameter Sets: SetByResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md new file mode 100644 index 000000000000..007580b4709d --- /dev/null +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md @@ -0,0 +1,215 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml +Module Name: Az.HDInsight +online version: +schema: 2.0.0 +--- + +# Enable-AzHDInsightMonitor + +## SYNOPSIS +Enables Azure Monitor in a specified HDInsight cluster. + +## SYNTAX + +### SetByNameParameterSet (Default) +``` +Enable-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] [-WorkspaceId] + [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByResourceIdParameterSet +``` +Enable-AzHDInsightMonitor [-ResourceId] [-WorkspaceId] [-PrimaryKey] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### SetByInputObjectParameterSet +``` +Enable-AzHDInsightMonitor [-InputObject] [-WorkspaceId] [-PrimaryKey] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This cmdlet **Enable-AzHDInsightMonitor** enables Azure Monitor in a specified HDInsight cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $resourceGroupName = "Group" +PS C:\> $workspaceId = "your-workspace-id" +PS C:\> $primaryKey = "your-primary-key" +PS C:\> Enable-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName -WorkspaceId $workspaceId -PrimaryKey $primaryKey +``` + +This cmdlet enables the azure monitor in a specified HDInsight cluster. + +### Example 2 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName +PS C:\> $workspaceId = "your-workspace-id" +PS C:\> $primaryKey = "your-primary-key" +PS C:\> $cluster | Enable-AzHDInsightMonitor -WorkspaceId $workspaceId -PrimaryKey $primaryKey +``` + +This cmdlet enables the azure monitor in a specified HDInsight cluster with pipeline. + +## PARAMETERS + +### -ClusterName +Gets or sets the name of the cluster. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Gets or sets the input object. + +```yaml +Type: AzureHDInsightCluster +Parameter Sets: SetByInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PrimaryKey +Gets to sets the primary key of the Log Analytics workspace. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Gets or sets the name of the resource group. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Gets or sets the resource id. + +```yaml +Type: String +Parameter Sets: SetByResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WorkspaceId +Gets or sets the ID of the Log Analytics workspace. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md new file mode 100644 index 000000000000..83b76335c6f5 --- /dev/null +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md @@ -0,0 +1,149 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml +Module Name: Az.HDInsight +online version: +schema: 2.0.0 +--- + +# Get-AzHDInsightMonitor + +## SYNOPSIS +Gets the azure monitor status of a specified HDInsight cluster. + +## SYNTAX + +### SetByNameParameterSet (Default) +``` +Get-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] + [-DefaultProfile ] [] +``` + +### SetByResourceIdParameterSet +``` +Get-AzHDInsightMonitor [-ResourceId] [-DefaultProfile ] [] +``` + +### SetByInputObjectParameterSet +``` +Get-AzHDInsightMonitor [-InputObject] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzHDInsightMonitor** cmdlet gets the azure monitor status of a specified HDInsight cluster. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $resourceGroupName = "Group" +PS C:\> Get-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName +``` + +This cmdlet gets the azure monitor status of a specified HDInsight cluster. + +### Example 2 +```powershell +PS C:\># Cluster info +PS C:\> $clusterName = "your-hadoop-001" +PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName +PS C:\> $cluster | Get-AzHDInsightMonitor +``` + +This cmdlet gets the azure monitor with pipeline. + +## PARAMETERS + +### -ClusterName +Gets or sets the name of the cluster. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Gets or sets the input object. + +```yaml +Type: AzureHDInsightCluster +Parameter Sets: SetByInputObjectParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ResourceGroupName +Gets or sets the name of the resource group. + +```yaml +Type: String +Parameter Sets: SetByNameParameterSet +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Gets or sets the resource id. + +```yaml +Type: String +Parameter Sets: SetByResourceIdParameterSet +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster + +## OUTPUTS + +### Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightMonitoring + +## NOTES + +## RELATED LINKS From 137195cbe6ee2252e3c1504b055fa92ded55e770 Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Mon, 24 May 2021 13:45:14 +0800 Subject: [PATCH 2/7] Change the cmdlet name Get/Enable/Disable-AzHDInsightMonitor to Get/Enable/Disable-AzHDInsightAzureMonitor --- src/HDInsight/HDInsight/Az.HDInsight.psd1 | 4 ++-- src/HDInsight/HDInsight/ChangeLog.md | 6 +++--- ...sableAzureHDInsightAzureMonitorCommand.cs} | 4 ++-- ...nableAzureHDInsightAzureMonitorCommand.cs} | 4 ++-- ...> GetAzureHDInsightAzureMonitorCommand.cs} | 4 ++-- ....md => Disable-AzHDInsightAzureMonitor.md} | 20 +++++++++---------- ...r.md => Enable-AzHDInsightAzureMonitor.md} | 20 +++++++++---------- ...itor.md => Get-AzHDInsightAzureMonitor.md} | 20 ++++++++++--------- 8 files changed, 42 insertions(+), 40 deletions(-) rename src/HDInsight/HDInsight/ManagementCommands/{DisableAzureHDInsightMonitorCommand.cs => DisableAzureHDInsightAzureMonitorCommand.cs} (95%) rename src/HDInsight/HDInsight/ManagementCommands/{EnableAzureHDInsightMonitorCommand.cs => EnableAzureHDInsightAzureMonitorCommand.cs} (96%) rename src/HDInsight/HDInsight/ManagementCommands/{GetAzureHDInsightMonitorCommand.cs => GetAzureHDInsightAzureMonitorCommand.cs} (96%) rename src/HDInsight/HDInsight/help/{Disable-AzHDInsightMonitor.md => Disable-AzHDInsightAzureMonitor.md} (82%) rename src/HDInsight/HDInsight/help/{Enable-AzHDInsightMonitor.md => Enable-AzHDInsightAzureMonitor.md} (82%) rename src/HDInsight/HDInsight/help/{Get-AzHDInsightMonitor.md => Get-AzHDInsightAzureMonitor.md} (81%) diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index 33049995f2de..4042ee8a1312 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -105,8 +105,8 @@ CmdletsToExport = 'Get-AzHDInsightJob', 'New-AzHDInsightSqoopJobDefinition', 'New-AzHDInsightClusterAutoscaleConfiguration', 'Set-AzHDInsightClusterAutoscaleConfiguration', 'Remove-AzHDInsightClusterAutoscaleConfiguration', - 'Get-AzHDInsightMonitor', - 'Enable-AzHDInsightMonitor', 'Disable-AzHDInsightMonitor' + 'Get-AzHDInsightAzureMonitor', + 'Enable-AzHDInsightAzureMonitor', 'Disable-AzHDInsightAzureMonitor' # Variables to export from this module # VariablesToExport = @() diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 4291fb669d60..68ad26668ef5 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -19,9 +19,9 @@ --> ## Upcoming Release * Support new azure monitor feature in HDInsight: - - Add cmdlet `Get-AzHDInsightMonitor` to allow customer to get the Azure Monitor status of HDInsight cluster. - - Add cmdlet `Enable-AzHDInsightMonitor` to allow customer to enable the Azure Monitor in HDInsight cluster. - - Add cmdlet `Disable-AzHDInsightMonitor` to allow customer to disable the Azure Monitor in HDInsight cluster. + - Add cmdlet `Get-AzHDInsightAzureMonitor` to allow customer to get the Azure Monitor status of HDInsight cluster. + - Add cmdlet `Enable-AzHDInsightAzureMonitor` to allow customer to enable the Azure Monitor in HDInsight cluster. + - Add cmdlet `Disable-AzHDInsightAzureMonitor` to allow customer to disable the Azure Monitor in HDInsight cluster. ## Version 4.2.1 diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs similarity index 95% rename from src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs rename to src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs index a6984fedce03..998b4c075374 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs @@ -21,9 +21,9 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] - public class DisableAzureHDInsightMonitorCommand : HDInsightCmdletBase + public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs similarity index 96% rename from src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs rename to src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs index f883e88f43c3..1d0c1a1c19e4 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs @@ -23,9 +23,9 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] - public class EnableAzureHDInsightMonitorCommand : HDInsightCmdletBase + public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs similarity index 96% rename from src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs rename to src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs index cd93356abc77..bf8e043e7a33 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs @@ -22,9 +22,9 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMonitor", DefaultParameterSetName = SetByNameParameterSet)] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet)] [OutputType(typeof(AzureHDInsightMonitoring))] - public class GetAzureHDInsightMonitorCommand : HDInsightCmdletBase + public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions private const string SetByNameParameterSet = "SetByNameParameterSet"; diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md similarity index 82% rename from src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md rename to src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md index 1778a076038a..d89d59c8d152 100644 --- a/src/HDInsight/HDInsight/help/Disable-AzHDInsightMonitor.md +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md @@ -5,7 +5,7 @@ online version: schema: 2.0.0 --- -# Disable-AzHDInsightMonitor +# Disable-AzHDInsightAzureMonitor ## SYNOPSIS Disables Azure Monitor in a specified HDInsight cluster. @@ -14,43 +14,43 @@ Disables Azure Monitor in a specified HDInsight cluster. ### SetByNameParameterSet (Default) ``` -Disable-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] +Disable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByResourceIdParameterSet ``` -Disable-AzHDInsightMonitor [-ResourceId] [-DefaultProfile ] [-WhatIf] +Disable-AzHDInsightAzureMonitor [-ResourceId] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByInputObjectParameterSet ``` -Disable-AzHDInsightMonitor [-InputObject] [-DefaultProfile ] - [-WhatIf] [-Confirm] [] +Disable-AzHDInsightAzureMonitor [-InputObject] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -This cmdlet **Disable-AzHDInsightMonitor** disables Azure Monitor in a specified HDInsight cluster. +This cmdlet **Disable-AzHDInsightAzureMonitor** disables Azure Monitor in a specified HDInsight cluster. ## EXAMPLES ### Example 1 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $resourceGroupName = "Group" -PS C:\> Disable-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName +PS C:\> Disable-AzHDInsightAzureMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName ``` This cmdlet disables the azure monitor in a specified HDInsight cluster. ### Example 2 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName -PS C:\> $cluster | Disable-AzHDInsightMonitor +PS C:\> $cluster | Disable-AzHDInsightAzureMonitor ``` This cmdlet disables the azure monitor in a specified HDInsight cluster with pipeline. diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md similarity index 82% rename from src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md rename to src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md index 007580b4709d..2fba43c13744 100644 --- a/src/HDInsight/HDInsight/help/Enable-AzHDInsightMonitor.md +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md @@ -5,7 +5,7 @@ online version: schema: 2.0.0 --- -# Enable-AzHDInsightMonitor +# Enable-AzHDInsightAzureMonitor ## SYNOPSIS Enables Azure Monitor in a specified HDInsight cluster. @@ -14,47 +14,47 @@ Enables Azure Monitor in a specified HDInsight cluster. ### SetByNameParameterSet (Default) ``` -Enable-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] [-WorkspaceId] +Enable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByResourceIdParameterSet ``` -Enable-AzHDInsightMonitor [-ResourceId] [-WorkspaceId] [-PrimaryKey] +Enable-AzHDInsightAzureMonitor [-ResourceId] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### SetByInputObjectParameterSet ``` -Enable-AzHDInsightMonitor [-InputObject] [-WorkspaceId] [-PrimaryKey] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Enable-AzHDInsightAzureMonitor [-InputObject] [-WorkspaceId] + [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION -This cmdlet **Enable-AzHDInsightMonitor** enables Azure Monitor in a specified HDInsight cluster. +This cmdlet **Enable-AzHDInsightAzureMonitor** enables Azure Monitor in a specified HDInsight cluster. ## EXAMPLES ### Example 1 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $resourceGroupName = "Group" PS C:\> $workspaceId = "your-workspace-id" PS C:\> $primaryKey = "your-primary-key" -PS C:\> Enable-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName -WorkspaceId $workspaceId -PrimaryKey $primaryKey +PS C:\> Enable-AzHDInsightAzureMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName -WorkspaceId $workspaceId -PrimaryKey $primaryKey ``` This cmdlet enables the azure monitor in a specified HDInsight cluster. ### Example 2 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName PS C:\> $workspaceId = "your-workspace-id" PS C:\> $primaryKey = "your-primary-key" -PS C:\> $cluster | Enable-AzHDInsightMonitor -WorkspaceId $workspaceId -PrimaryKey $primaryKey +PS C:\> $cluster | Enable-AzHDInsightAzureMonitor -WorkspaceId $workspaceId -PrimaryKey $primaryKey ``` This cmdlet enables the azure monitor in a specified HDInsight cluster with pipeline. diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md similarity index 81% rename from src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md rename to src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md index 83b76335c6f5..049a051e1d92 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightMonitor.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md @@ -5,7 +5,7 @@ online version: schema: 2.0.0 --- -# Get-AzHDInsightMonitor +# Get-AzHDInsightAzureMonitor ## SYNOPSIS Gets the azure monitor status of a specified HDInsight cluster. @@ -14,46 +14,48 @@ Gets the azure monitor status of a specified HDInsight cluster. ### SetByNameParameterSet (Default) ``` -Get-AzHDInsightMonitor [[-ResourceGroupName] ] [-ClusterName] +Get-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [] ``` ### SetByResourceIdParameterSet ``` -Get-AzHDInsightMonitor [-ResourceId] [-DefaultProfile ] [] +Get-AzHDInsightAzureMonitor [-ResourceId] [-DefaultProfile ] + [] ``` ### SetByInputObjectParameterSet ``` -Get-AzHDInsightMonitor [-InputObject] [-DefaultProfile ] +Get-AzHDInsightAzureMonitor [-InputObject] [-DefaultProfile ] [] ``` ## DESCRIPTION -The **Get-AzHDInsightMonitor** cmdlet gets the azure monitor status of a specified HDInsight cluster. +The **Get-AzHDInsightAzureMonitor** cmdlet gets the azure monitor status of a specified HDInsight cluster. ## EXAMPLES ### Example 1 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $resourceGroupName = "Group" -PS C:\> Get-AzHDInsightMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName +PS C:\> Get-AzHDInsightAzureMonitor -ClusterName $clusterName -ResourceGroup $resourceGroupName ``` This cmdlet gets the azure monitor status of a specified HDInsight cluster. ### Example 2 ```powershell -PS C:\># Cluster info +PS C:\> # Cluster info PS C:\> $clusterName = "your-hadoop-001" PS C:\> $cluster=Get-AzHDInsightCluster -ClusterName $clusterName -PS C:\> $cluster | Get-AzHDInsightMonitor +PS C:\> $cluster | Get-AzHDInsightAzureMonitor ``` This cmdlet gets the azure monitor with pipeline. + ## PARAMETERS ### -ClusterName From 61f9545bf0655aa14ca058eb594c06a331082a60 Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Mon, 31 May 2021 19:26:48 +0800 Subject: [PATCH 3/7] Update the help doc and sdk version and add tests --- .../HDInsight.Test/HDInsight.Test.csproj | 2 +- .../HDInsightAzureMonitorTests.cs | 43 +++++++++++ .../HDInsightAzureMonitorTests.ps1 | 75 +++++++++++++++++++ .../UnitTests/GetPropertiesTests.cs | 2 +- src/HDInsight/HDInsight/HDInsight.csproj | 2 +- ...isableAzureHDInsightAzureMonitorCommand.cs | 3 +- ...EnableAzureHDInsightAzureMonitorCommand.cs | 5 +- .../GetAzureHDInsightAzureMonitorCommand.cs | 8 +- .../Management/AzureHDInsightAzureMonitor.cs | 37 +++++++++ .../Management/AzureHDInsightCapabilities.cs | 4 +- .../Management/AzureHDInsightVersionSpec.cs | 2 +- ...AzureHDInsightVmSizeCompatibilityFilter.cs | 2 +- .../AzureHdInsightManagementClient.cs | 15 ++++ src/HDInsight/HDInsight/help/Az.HDInsight.md | 9 +++ .../help/Disable-AzHDInsightAzureMonitor.md | 16 ++-- .../help/Enable-AzHDInsightAzureMonitor.md | 20 ++--- .../help/Get-AzHDInsightAzureMonitor.md | 13 ++-- 17 files changed, 220 insertions(+), 38 deletions(-) create mode 100644 src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs create mode 100644 src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 create mode 100644 src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs diff --git a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj index f0d2975c41de..ef9e720e55a2 100644 --- a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj +++ b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs new file mode 100644 index 000000000000..fc6c992ae877 --- /dev/null +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs @@ -0,0 +1,43 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Azure.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; +using Xunit.Abstractions; + +namespace Commands.HDInsight.Test.ScenarioTests +{ + public class HDInsightAzureMonitorTests + { + public XunitTracingInterceptor _logger; + + public HDInsightAzureMonitorTests(ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + } + + //[Fact(Skip = "test case cannot be re-recorded properly, need help from service team")] + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestAzureMonitorRelatedCommands() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-AzureMonitorRelatedCommands"); + } + } +} diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 new file mode 100644 index 000000000000..469569636ea3 --- /dev/null +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 @@ -0,0 +1,75 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Test Get,Enable or Disable Azure Monitor in Azure HDInsight Cluster +#> +function Test-AzureMonitorRelatedCommands{ + + # Create some resources that will be used throughout test + try + { + $location = "South Central US" + + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameter -location $location + + # create cluster that will be used throughout test + $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 + Assert-NotNull $cluster + + $workspaceName = Generate-Name("workspace-ps-test") + $resourceGroupName = $cluster.ResourceGroup + + #create a new Log Analytics Workspace + $sku = "pernode" + $workspace = New-AzOperationalInsightsWorkspace -Location $location -Name $workspaceName -ResourceGroupName $resourceGroupName -Sku $sku + + #get workspace's primaryKey + $keys = Get-AzOperationalInsightsWorkspaceSharedKey -ResourceGroupName $resourceGroupName -Name $workspace.Name + Assert-NotNull $keys + #test Get-AzHDInsightAzureMonitor + $result = Get-AzHDInsightAzureMonitor -ClusterName $cluster.Name -ResourceGroupName $cluster.ResourceGroup + Assert-Null $result.WorkspaceId + + #test Enable-AzHDInsightAzureMonitor + $workspaceId = $workspace.CustomerId + $primaryKey = $keys.PrimarySharedKey + + Assert-NotNull $workspaceId + Assert-NotNull $primaryKey + Enable-AzHDInsightAzureMonitor -ClusterName $cluster.Name -ResourceGroup $cluster.ResourceGroup -WorkspaceId $workspaceId -Primary $primaryKey + + $result = Get-AzHDInsightAzureMonitor -ClusterName $cluster.Name -ResourceGroupName $cluster.ResourceGroup + Assert-True {$result.ClusterMonitoringEnabled} + Assert-AreEqual $result.WorkspaceId $workspaceId + + #test Disable-AzHDInsightAzureMonitor + Disable-AzHDInsightAzureMonitor -ClusterName $cluster.Name -ResourceGroupName $cluster.ResourceGroup + $result = Get-AzHDInsightAzureMonitor -ClusterName $cluster.Name -ResourceGroupName $cluster.ResourceGroup + Assert-False {$result.ClusterMonitoringEnabled} + Assert-Null $result.WorkspaceId + } + finally + { + # Delete cluster and resource group + Remove-AzHDInsightCluster -ClusterName $cluster.Name + Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup + } +} diff --git a/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs index 99d80e2118db..8ff92d65d306 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs @@ -50,7 +50,7 @@ public void CanGetProperties() { Features = features, Versions = versions, - VmSizes = vm, + Vmsizes = vm, Regions = regions }; diff --git a/src/HDInsight/HDInsight/HDInsight.csproj b/src/HDInsight/HDInsight/HDInsight.csproj index e13f71627cce..8aff225607ce 100644 --- a/src/HDInsight/HDInsight/HDInsight.csproj +++ b/src/HDInsight/HDInsight/HDInsight.csproj @@ -11,7 +11,7 @@ - + diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs index 998b4c075374..131d0ed2f329 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs @@ -90,8 +90,7 @@ public override void ExecuteCmdlet() if (ShouldProcess("Disable Azure Monitor")) { - // ToDO: need to change the api - HDInsightManagementClient.DisableMonitoring(ResourceGroupName, ClusterName); + HDInsightManagementClient.DisableAzureMonitor(ResourceGroupName, ClusterName); WriteObject(true); } } diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs index 1d0c1a1c19e4..3eab2d1793b4 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs @@ -124,7 +124,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - var monitoringParams = new ClusterMonitoringRequest + var azureMonitorParams = new AzureMonitorRequest { WorkspaceId = WorkspaceId, PrimaryKey = PrimaryKey @@ -132,8 +132,7 @@ public override void ExecuteCmdlet() if (ShouldProcess("Enable Azure Monitor")) { - // ToDO: need to change the api - HDInsightManagementClient.EnableMonitoring(ResourceGroupName, ClusterName, monitoringParams); + HDInsightManagementClient.EnableAzureMonitor(ResourceGroupName, ClusterName, azureMonitorParams); WriteObject(true); } } diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs index bf8e043e7a33..97134cbcbb94 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.HDInsight { [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet)] - [OutputType(typeof(AzureHDInsightMonitoring))] + [OutputType(typeof(AzureHDInsightAzureMonitor))] public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions @@ -87,9 +87,9 @@ public override void ExecuteCmdlet() { ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - // ToDO: need to change the api and redefine a class to replace AzureHDInsightMonitoring - var clusterMonitoringResource = HDInsightManagementClient.GetMonitoring(ResourceGroupName, ClusterName); - WriteObject(new AzureHDInsightMonitoring(clusterMonitoringResource)); + + var azureMonitorStatus = HDInsightManagementClient.GetAzureMonitor(ResourceGroupName, ClusterName); + WriteObject(new AzureHDInsightAzureMonitor(azureMonitorStatus)); } } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs new file mode 100644 index 000000000000..9d4559cc0f91 --- /dev/null +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs @@ -0,0 +1,37 @@ +// ---------------------------------------------------------------------------------- +// +// 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.Azure.Management.HDInsight.Models; + +namespace Microsoft.Azure.Commands.HDInsight.Models.Management +{ + public class AzureHDInsightAzureMonitor + { + public AzureHDInsightAzureMonitor(AzureMonitorResponse azureMonitorResponse) + { + ClusterMonitoringEnabled = azureMonitorResponse.ClusterMonitoringEnabled ?? false; + WorkspaceId = azureMonitorResponse.WorkspaceId; + } + + /// + /// Bool indicates whether the cluster has enabled montioring or not. + /// + public bool ClusterMonitoringEnabled { get; set; } + + /// + /// The workspaceId of cluster. + /// + public string WorkspaceId { get; set; } + } +} diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs index 49f64fd201a5..750cf5293b17 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs @@ -26,9 +26,9 @@ public AzureHDInsightCapabilities(CapabilitiesResult capabilitiesResult) this.Regions = capabilitiesResult?.Regions?.ToDictionary(item => item.Key, item => new AzureHDInsightRegionsCapability(item.Value)); - this.VmSizes = capabilitiesResult?.VmSizes?.ToDictionary(item => item.Key, item => new AzureHDInsightVmSizesCapability(item.Value)); + this.VmSizes = capabilitiesResult?.Vmsizes?.ToDictionary(item => item.Key, item => new AzureHDInsightVmSizesCapability(item.Value)); - this.VmSizeFilters = capabilitiesResult?.VmSizeFilters?.Select(val => new AzureHDInsightVmSizeCompatibilityFilter(val)).ToList(); + this.VmSizeFilters = capabilitiesResult?.VmsizeFilters?.Select(val => new AzureHDInsightVmSizeCompatibilityFilter(val)).ToList(); this.Features = capabilitiesResult?.Features; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs index e0aba33682f2..04f3595e6e1d 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs @@ -25,7 +25,7 @@ public AzureHDInsightVersionSpec(VersionSpec versionSpec) { this.FriendlyName = versionSpec?.FriendlyName; this.DisplayName = versionSpec?.DisplayName; - this.IsDefault = versionSpec?.IsDefault; + this.IsDefault = versionSpec?.IsDefault.ToString(); // ToDo: need to change IsDefault from string to bool, waiting for next major release this.ComponentVersions = versionSpec?.ComponentVersions; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs index 2c976244c54c..ede2057dab69 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs @@ -28,7 +28,7 @@ public AzureHDInsightVmSizeCompatibilityFilter(VmSizeCompatibilityFilter vmSizeC this.ClusterFlavors = vmSizeCompatibilityFilter?.ClusterFlavors; this.NodeTypes = vmSizeCompatibilityFilter?.NodeTypes; this.ClusterVersions = vmSizeCompatibilityFilter?.ClusterVersions; - this.Vmsizes = vmSizeCompatibilityFilter?.Vmsizes; + this.Vmsizes = vmSizeCompatibilityFilter?.VMSizes; } public string FilterMode { get; set; } public IList Regions { get; set; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs index 1a4e64410652..54ac1a77cad0 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs @@ -209,6 +209,21 @@ public virtual ClusterMonitoringResponse GetMonitoring(string resourceGroupName, return HdInsightManagementClient.Extensions.GetMonitoringStatus(resourceGroupName, clusterName); } + public virtual void EnableAzureMonitor(string resourceGroupName, string clusterName, AzureMonitorRequest azureMonitorRequestParameters) + { + HdInsightManagementClient.Extensions.EnableAzureMonitor(resourceGroupName, clusterName, azureMonitorRequestParameters); + } + + public virtual void DisableAzureMonitor(string resourceGroupName, string clusterName) + { + HdInsightManagementClient.Extensions.DisableAzureMonitor(resourceGroupName, clusterName); + } + + public virtual AzureMonitorResponse GetAzureMonitor(string resourceGroupName, string clusterName) + { + return HdInsightManagementClient.Extensions.GetAzureMonitorStatus(resourceGroupName, clusterName); + } + public virtual void RotateDiskEncryptionKey(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters) { HdInsightManagementClient.Clusters.RotateDiskEncryptionKey(resourceGroupName, clusterName, parameters); diff --git a/src/HDInsight/HDInsight/help/Az.HDInsight.md b/src/HDInsight/HDInsight/help/Az.HDInsight.md index b443a038888c..cf7bad8fc281 100644 --- a/src/HDInsight/HDInsight/help/Az.HDInsight.md +++ b/src/HDInsight/HDInsight/help/Az.HDInsight.md @@ -32,12 +32,21 @@ Adds a security profile to a cluster configuration object. ### [Add-AzHDInsightStorage](Add-AzHDInsightStorage.md) Adds an Azure Storage key to a cluster configuration object. +### [Disable-AzHDInsightAzureMonitor](Disable-AzHDInsightAzureMonitor.md) +Disables Azure Monitor in a specified HDInsight cluster. + ### [Disable-AzHDInsightMonitoring](Disable-AzHDInsightMonitoring.md) Disables monitoring in a HDInsight cluster and relevant logs will stop flowing to the monitoring workspace specified during enable. +### [Enable-AzHDInsightAzureMonitor](Enable-AzHDInsightAzureMonitor.md) +Enables Azure Monitor in a specified HDInsight cluster. + ### [Enable-AzHDInsightMonitoring](Enable-AzHDInsightMonitoring.md) Enables monitoring in a HDInsight cluster and relevant logs will be sent to the monitoring workspace specified during enable. +### [Get-AzHDInsightAzureMonitor](Get-AzHDInsightAzureMonitor.md) +Gets the azure monitor status of a specified HDInsight cluster. + ### [Get-AzHDInsightCluster](Get-AzHDInsightCluster.md) Gets and lists all of the Azure HDInsight clusters associated with the current subscription or a specified resource group, or retrieves a specific cluster. diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md index d89d59c8d152..cf2131dc2c64 100644 --- a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md @@ -61,7 +61,7 @@ This cmdlet disables the azure monitor in a specified HDInsight cluster with pip Gets or sets the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -76,7 +76,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -91,7 +91,7 @@ Accept wildcard characters: False Gets or sets the input object. ```yaml -Type: AzureHDInsightCluster +Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -106,7 +106,7 @@ Accept wildcard characters: False Gets or sets the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -121,7 +121,7 @@ Accept wildcard characters: False Gets or sets the resource id. ```yaml -Type: String +Type: System.String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -136,7 +136,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -152,7 +152,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -179,3 +179,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS +[Enable-AzHDInsightAzureMonitor](./Enable-AzHDInsightAzureMonitor.md) +[Get-AzHDInsightAzureMonitor](./Get-AzHDInsightAzureMonitor.md) diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md index 2fba43c13744..b50702e701b4 100644 --- a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md @@ -65,7 +65,7 @@ This cmdlet enables the azure monitor in a specified HDInsight cluster with pipe Gets or sets the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -80,7 +80,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -95,7 +95,7 @@ Accept wildcard characters: False Gets or sets the input object. ```yaml -Type: AzureHDInsightCluster +Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -110,7 +110,7 @@ Accept wildcard characters: False Gets to sets the primary key of the Log Analytics workspace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -125,7 +125,7 @@ Accept wildcard characters: False Gets or sets the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -140,7 +140,7 @@ Accept wildcard characters: False Gets or sets the resource id. ```yaml -Type: String +Type: System.String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -155,7 +155,7 @@ Accept wildcard characters: False Gets or sets the ID of the Log Analytics workspace. ```yaml -Type: String +Type: System.String Parameter Sets: (All) Aliases: @@ -170,7 +170,7 @@ Accept wildcard characters: False Prompts you for confirmation before running the cmdlet. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: cf @@ -186,7 +186,7 @@ Shows what would happen if the cmdlet runs. The cmdlet is not run. ```yaml -Type: SwitchParameter +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: wi @@ -213,3 +213,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS +[Disable-AzHDInsightAzureMonitor](./Disable-AzHDInsightAzureMonitor.md) +[Get-AzHDInsightAzureMonitor](./Get-AzHDInsightAzureMonitor.md) diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md index 049a051e1d92..a774b5a23ed8 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md @@ -55,14 +55,13 @@ PS C:\> $cluster | Get-AzHDInsightAzureMonitor This cmdlet gets the azure monitor with pipeline. - ## PARAMETERS ### -ClusterName Gets or sets the name of the cluster. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -77,7 +76,7 @@ Accept wildcard characters: False The credentials, account, tenant, and subscription used for communication with Azure. ```yaml -Type: IAzureContextContainer +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer Parameter Sets: (All) Aliases: AzContext, AzureRmContext, AzureCredential @@ -92,7 +91,7 @@ Accept wildcard characters: False Gets or sets the input object. ```yaml -Type: AzureHDInsightCluster +Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster Parameter Sets: SetByInputObjectParameterSet Aliases: @@ -107,7 +106,7 @@ Accept wildcard characters: False Gets or sets the name of the resource group. ```yaml -Type: String +Type: System.String Parameter Sets: SetByNameParameterSet Aliases: @@ -122,7 +121,7 @@ Accept wildcard characters: False Gets or sets the resource id. ```yaml -Type: String +Type: System.String Parameter Sets: SetByResourceIdParameterSet Aliases: @@ -149,3 +148,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS +[Enable-AzHDInsightAzureMonitor](./Enable-AzHDInsightAzureMonitor.md) +[Disable-AzHDInsightAzureMonitor](./Disable-AzHDInsightAzureMonitor.md) From 5a2c41a8f01acdfb1339bd607ce2cbe28fc1ecd3 Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Tue, 1 Jun 2021 14:31:15 +0800 Subject: [PATCH 4/7] Add online version link --- src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md | 2 +- src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md | 2 +- src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md index cf2131dc2c64..fdf9c313e533 100644 --- a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight -online version: +online version: https://docs.microsoft.com/powershell/module/az.hdinsight/disable-azhdinsightazuremonitor schema: 2.0.0 --- diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md index b50702e701b4..4930d862e9ce 100644 --- a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight -online version: +online version: https://docs.microsoft.com/powershell/module/az.hdinsight/enable-azhdinsightazuremonitor schema: 2.0.0 --- diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md index a774b5a23ed8..e47e434edd72 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml Module Name: Az.HDInsight -online version: +online version: https://docs.microsoft.com/powershell/module/az.hdinsight/get-azhdinsightazuremonitor schema: 2.0.0 --- From e9c074d11c8cdb9649d03b38661bf53023d84cbf Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Wed, 2 Jun 2021 14:51:19 +0800 Subject: [PATCH 5/7] Add related test --- .../HDInsightAzureMonitorTests.ps1 | 2 +- .../TestAzureMonitorRelatedCommands.json | 3680 +++++++++++++++++ tools/SecurityTools/CredScanSuppressions.json | 4 + 3 files changed, 3685 insertions(+), 1 deletion(-) create mode 100644 src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 index 469569636ea3..6fae25ea2130 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.ps1 @@ -21,7 +21,7 @@ function Test-AzureMonitorRelatedCommands{ # Create some resources that will be used throughout test try { - $location = "South Central US" + $location = "East US" # prepare parameter for creating parameter $params= Prepare-ClusterCreateParameter -location $location 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 new file mode 100644 index 000000000000..d744ce2c09fc --- /dev/null +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json @@ -0,0 +1,3680 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7175d723-2be7-4a56-9d88-7570e42be5e1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ], + "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": [ + "42762c93-c93d-459f-a861-df5e15f6f30e" + ], + "x-ms-correlation-request-id": [ + "42762c93-c93d-459f-a861-df5e15f6f30e" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062149Z:42762c93-c93d-459f-a861-df5e15f6f30e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:21:49 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-test6386\",\r\n \"name\": \"group-ps-test6386\",\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-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzOTg/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": [ + "664d2230-11dd-4580-bdc7-8a6f7c284316" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.34" + ], + "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/67c17928-2176-4bd9-87d6-f0d0a08d67a8?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "67c17928-2176-4bd9-87d6-f0d0a08d67a8" + ], + "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": [ + "22161c27-7713-44dd-81b9-456d0d895653" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062156Z:22161c27-7713-44dd-81b9-456d0d895653" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:21:55 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/67c17928-2176-4bd9-87d6-f0d0a08d67a8?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy82N2MxNzkyOC0yMTc2LTRiZDktODdkNi1mMGQwYTA4ZDY3YTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dff35ccc-bea5-477f-8e7f-d3aaef7eb637" + ], + "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": [ + "e71cb659-bada-4dd3-ae7d-96d208a55535" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062213Z:e71cb659-bada-4dd3-ae7d-96d208a55535" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:22:12 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-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398\",\r\n \"name\": \"storagepstest5398\",\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-06-02T06:21:54.605747Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-02T06:21:54.605747Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-06-02T06:21:54.4494654Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5398.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5398.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5398.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest5398.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://storagepstest5398-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5398-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5398-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzOTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62110b05-c46f-43a1-bfe8-8396a4b10c03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f926d1e9-7a91-45bb-9954-82d2b037125a" + ], + "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": [ + "beb3cac2-7b70-4f39-be8c-dcdc4b981eeb" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062213Z:beb3cac2-7b70-4f39-be8c-dcdc4b981eeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:22:13 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"HQKdXUWaddx1o/eIZYvBLY/VLdYUG9EzeEHOD8ELfu4dAodz44pMe+qjtNJkJciGI1XTQnrTx2z3ca7/isyRkQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"truLrNc84DKzWHYfp+1gmoiKNKoqnR/Xs47w2Np4T7BBLf2oMwxGp/QUCyzuR26rvp1WC24fY4e7Lw8N9PObHg==\",\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=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "da76ddbc-2b8c-4470-b45a-6b8d4945f229" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "d793e7dc-2ab7-4bb3-aae7-6dacdae0c4ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062215Z:d793e7dc-2ab7-4bb3-aae7-6dacdae0c4ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:22:15 GMT" + ], + "Content-Length": [ + "105694" + ], + "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_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_D2a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D16a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E96a_v4\",\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 \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "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\": \"storagepstest5398.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test7545\",\r\n \"key\": \"HQKdXUWaddx1o/eIZYvBLY/VLdYUG9EzeEHOD8ELfu4dAodz44pMe+qjtNJkJciGI1XTQnrTx2z3ca7/isyRkQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2167" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"d1b4c5b5-5c73-4698-8c4c-3627d325edc2\"" + ], + "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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545?api-version=2018-06-01-preview" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "02b82d10-2a4e-4f41-9aba-1a69773a23e6" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "2a752940-3647-4cbb-8698-3d7354b21f86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062223Z:2a752940-3647-4cbb-8698-3d7354b21f86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:22:23 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545\",\r\n \"name\": \"hdi-ps-test7545\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d1b4c5b5-5c73-4698-8c4c-3627d325edc2\",\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\": \"38bf973183a3414fa6b5f6dd699f0bdd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"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-06-02T06:22:22.133\",\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\": \"storagepstest5398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test7545\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "d6741b73-9634-4d8a-bcff-15381dc1d2a2" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "592810b8-f0e9-4579-8f40-fa28f715791e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062253Z:592810b8-f0e9-4579-8f40-fa28f715791e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:22: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "65e13e49-3bbf-4d16-9ade-59b3a3613f83" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "53894393-4031-4417-a927-05467a1ceec8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062324Z:53894393-4031-4417-a927-05467a1ceec8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:23: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "ececd649-2b55-4e27-8e31-45f18892267c" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "6c8f995f-5412-4a6d-bfb1-159b723435e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062354Z:6c8f995f-5412-4a6d-bfb1-159b723435e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:23: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "26f53adb-0957-4845-956e-1ca3ddaaaed3" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "bd7d6599-ee48-4f50-8222-7ba9653e44cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062425Z:bd7d6599-ee48-4f50-8222-7ba9653e44cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:24: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "cce390a7-88e3-4e15-80e3-2e7c9e2356a2" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "49ac9972-6bc6-49f3-8017-c8584d53dfcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062455Z:49ac9972-6bc6-49f3-8017-c8584d53dfcb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:24: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "c5b621cf-d6ff-42c1-ab55-06a84f4a5631" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "80a26b6a-7358-4b36-8c50-023de283ffaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062526Z:80a26b6a-7358-4b36-8c50-023de283ffaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "d078000e-6a43-438f-9892-4d44cb48d0c5" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "fad959a0-9666-44b1-afda-0bc867ca399e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062557Z:fad959a0-9666-44b1-afda-0bc867ca399e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "55dde374-7113-406a-b14e-db3be0829749" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "660c4645-a3b0-43c1-976f-bf6a53aa6c47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062627Z:660c4645-a3b0-43c1-976f-bf6a53aa6c47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "7324e7c5-fec4-410f-bf54-6b5de2579542" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "2aa2baa6-8ab4-439f-94b4-4290de0cbfe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062657Z:2aa2baa6-8ab4-439f-94b4-4290de0cbfe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "864cae9b-ce73-4494-b54e-d93ece369e38" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "175bdcce-183c-44b2-9ff7-414238814405" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062728Z:175bdcce-183c-44b2-9ff7-414238814405" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "aabc8468-b264-4a2c-8400-ac4a0c44e573" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "e7f1a122-0e56-4101-a52c-8bda9cc5496c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062758Z:e7f1a122-0e56-4101-a52c-8bda9cc5496c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "6d909d23-75a8-4fb7-8579-dcc7f6e1f1c3" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "7f117d84-8f26-477f-ba6b-2dad46d6d097" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062829Z:7f117d84-8f26-477f-ba6b-2dad46d6d097" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:28: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "98671994-052e-4857-b437-91885b9ce02f" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "9c350018-666a-4521-852f-9e7937a48baf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062900Z:9c350018-666a-4521-852f-9e7937a48baf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:28: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "f20b5e5c-99f1-4d23-a945-279d3cad4692" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "0586ffef-91c6-443c-8841-c5db3d8782c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T062931Z:0586ffef-91c6-443c-8841-c5db3d8782c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:29: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "c5e3e930-4f91-443e-9949-e6d176379f83" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "f46e8d67-186e-4093-9c83-147a49f15577" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063001Z:f46e8d67-186e-4093-9c83-147a49f15577" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:30: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "d91ee084-241e-4465-ba7f-82c822d9e27b" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "574f7db0-0450-4c66-a0dc-97805bb06cdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063032Z:574f7db0-0450-4c66-a0dc-97805bb06cdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:30: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "f307b799-1cf2-48a1-bac9-7cc65ef177ab" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "68c78b38-b670-4420-a759-83a0c74c88de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063102Z:68c78b38-b670-4420-a759-83a0c74c88de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06: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/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "d4b6939c-57f5-4a93-83fb-b12b828685c5" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "4eaa548f-0899-47e5-916e-514054815ceb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063133Z:4eaa548f-0899-47e5-916e-514054815ceb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:31: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "89aafe81-fe85-4908-8d07-3c1caf349e31" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "db692962-9d07-437a-bfac-149300150c7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063203Z:db692962-9d07-437a-bfac-149300150c7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:32: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "96594601-fa3e-49ec-8396-78a058329de2" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "fd3f816f-6d3c-4156-9d59-2b90d43ccf39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063234Z:fd3f816f-6d3c-4156-9d59-2b90d43ccf39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:32: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "b57ed133-d0e6-4d70-b39c-8360081b92b0" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "991de4c2-3662-4ee1-a247-699f03d7e006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063304Z:991de4c2-3662-4ee1-a247-699f03d7e006" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:33: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "5e597903-0a11-42bb-aa3e-e83a6470dd0a" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "c9e2aae5-0e74-4682-b89a-b0709e25da39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063334Z:c9e2aae5-0e74-4682-b89a-b0709e25da39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:33: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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/create?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "5a263d64-da33-4c10-8e87-0d8780b8fe18" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "2af2e386-57ce-46e2-8e4f-e94398f9ea90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063405Z:2af2e386-57ce-46e2-8e4f-e94398f9ea90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34: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/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a74175f7-d04a-4ae8-ac28-9852c6af783b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "22ab1c71-d6a7-46bf-aa51-5e8067d88421" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "5a9871e0-2226-47f6-bfc9-bfb9a2d55df0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063405Z:5a9871e0-2226-47f6-bfc9-bfb9a2d55df0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:05 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545\",\r\n \"name\": \"hdi-ps-test7545\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d1b4c5b5-5c73-4698-8c4c-3627d325edc2\",\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\": \"38bf973183a3414fa6b5f6dd699f0bdd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"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-02T06:22:22.133\",\r\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-test7545-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test7545.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest5398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test7545\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"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-test6386/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test3805?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0MzgwNT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b8f2ee8-fa75-428c-8c75-c7c9aa144e50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3e199a89-91be-41a0-b01c-0dd42339570e" + ], + "x-ms-correlation-request-id": [ + "3e199a89-91be-41a0-b01c-0dd42339570e" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063407Z:3e199a89-91be-41a0-b01c-0dd42339570e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:06 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-test3805' under resource group 'group-ps-test6386' 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-test6386/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test3805?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0MzgwNT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b8f2ee8-fa75-428c-8c75-c7c9aa144e50" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e8b65c9b-5412-4dbb-a52e-e731690f072c" + ], + "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" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c5ff0454-aeb3-4cf7-a6e7-1661b7f0f7fa" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063445Z:c5ff0454-aeb3-4cf7-a6e7-1661b7f0f7fa" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:44 GMT" + ], + "Content-Length": [ + "1092" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"472fc146-c90c-43cc-beee-0957a4806272\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": \"Wed, 02 Jun 2021 06:34:12 GMT\"\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\": \"Wed, 02 Jun 2021 07:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Wed, 02 Jun 2021 06:34:12 GMT\",\r\n \"modifiedDate\": \"Wed, 02 Jun 2021 06:34:14 GMT\"\r\n },\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386/providers/microsoft.operationalinsights/workspaces/workspace-ps-test3805\",\r\n \"name\": \"workspace-ps-test3805\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test3805?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0MzgwNT9hcGktdmVyc2lvbj0yMDIwLTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n }\r\n },\r\n \"tags\": {},\r\n \"location\": \"East US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b8f2ee8-fa75-428c-8c75-c7c9aa144e50" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.21.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "115" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa70eb25-9467-46e2-a8bb-6c6d775bbef1" + ], + "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" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "3fd2d93c-43cb-4d3e-958e-5691a14ccbae" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063414Z:3fd2d93c-43cb-4d3e-958e-5691a14ccbae" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:13 GMT" + ], + "Content-Length": [ + "1091" + ], + "Content-Type": [ + "application/json" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"472fc146-c90c-43cc-beee-0957a4806272\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"pernode\",\r\n \"lastSkuUpdate\": \"Wed, 02 Jun 2021 06:34:12 GMT\"\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\": \"Wed, 02 Jun 2021 07:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"Wed, 02 Jun 2021 06:34:12 GMT\",\r\n \"modifiedDate\": \"Wed, 02 Jun 2021 06:34:12 GMT\"\r\n },\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386/providers/microsoft.operationalinsights/workspaces/workspace-ps-test3805\",\r\n \"name\": \"workspace-ps-test3805\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {}\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test3805/sharedKeys?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0MzgwNS9zaGFyZWRLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef0f9aa2-991b-4998-abbd-0d6ce8bcdce8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.21.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-AMS-APIVersion": [ + "WebAPI1.0" + ], + "CacheControl": [ + "no-cache" + ], + "x-ms-request-id": [ + "2dc17096-0adf-4162-b00a-ca6460849815" + ], + "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" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "73c8791f-cfa4-4e3f-9b1c-a5758c9d3120" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063445Z:73c8791f-cfa4-4e3f-9b1c-a5758c9d3120" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:44 GMT" + ], + "Content-Length": [ + "235" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"primarySharedKey\": \"SiNRdvkF4VrKld/rOeqyIXyh8c0FY4cA7jPzQGsN8if+X8dKIcnCfs3T6sHHAWr3KKgwkLrRFLM1Nq2jqXJCnw==\",\r\n \"secondarySharedKey\": \"ZJ54HWptQJTN/GnYKIMupGK96o39hZVOveqwhlR74iNLbCK1u2AFS1D8O2s3wyCB8zj+3Vrf8wqOja3d6kqp/Q==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5e5b02a-ec3f-4486-9504-24a1709b3b5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "dd6001a4-9044-4b59-8f07-17ce1b20a563" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "78098d69-557e-4bc8-bfca-1a63b15ed1ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063446Z:78098d69-557e-4bc8-bfca-1a63b15ed1ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:45 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804db8e2-07ca-4e82-b701-67103389712b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "8717bc4b-14b2-43a6-9378-6660d9c47651" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "25019c38-85e0-4c22-b0f4-c0495105c9bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063549Z:25019c38-85e0-4c22-b0f4-c0495105c9bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:35:49 GMT" + ], + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"472fc146-c90c-43cc-beee-0957a4806272\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9e5b022-aaf8-4908-bc8a-5ae42bb85e52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "f592219c-d15e-4b43-905b-ce15b43e585c" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "278a96a9-3b3e-41aa-8ac4-2e1b27c5762d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063549Z:278a96a9-3b3e-41aa-8ac4-2e1b27c5762d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:35:49 GMT" + ], + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"472fc146-c90c-43cc-beee-0957a4806272\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e67de512-7da6-4347-a196-4ba9565de186" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "918e4e7e-025b-4482-bae9-61078d97203f" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "ad72baef-ef7c-4137-833c-c05c8ccffb20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063652Z:ad72baef-ef7c-4137-833c-c05c8ccffb20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:36:52 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"workspaceId\": \"472fc146-c90c-43cc-beee-0957a4806272\",\r\n \"primaryKey\": \"SiNRdvkF4VrKld/rOeqyIXyh8c0FY4cA7jPzQGsN8if+X8dKIcnCfs3T6sHHAWr3KKgwkLrRFLM1Nq2jqXJCnw==\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804db8e2-07ca-4e82-b701-67103389712b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/operationresults/f837d131-d73a-4e2d-a376-8e085939c9d1-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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/f837d131-d73a-4e2d-a376-8e085939c9d1-0-r?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "4655a5a7-eee1-4cbe-aae8-86bd213294e2" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "a555170f-bc1b-4623-a3de-173f1844b489" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063448Z:a555170f-bc1b-4623-a3de-173f1844b489" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:34:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/f837d131-d73a-4e2d-a376-8e085939c9d1-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy9mODM3ZDEzMS1kNzNhLTRlMmQtYTM3Ni04ZTA4NTkzOWM5ZDEtMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "804db8e2-07ca-4e82-b701-67103389712b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "ac05f1ec-846a-4732-85d3-81b6a6584b2b" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "73770f53-e5c7-4f47-b911-e298029ad67d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063549Z:73770f53-e5c7-4f47-b911-e298029ad67d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:35:48 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/extensions/azureMonitor?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c7b247-dcdd-4b97-87f5-105ff9a85919" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/operationresults/24a151d9-f0f0-42d0-a787-ced0c502156d-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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/24a151d9-f0f0-42d0-a787-ced0c502156d-0-r?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "a024782b-d053-454c-a3ed-02e80a47111c" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "1a2e8189-4512-41c9-8f4b-a16c7c0fca5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063550Z:1a2e8189-4512-41c9-8f4b-a16c7c0fca5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:35:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/azureasyncoperations/24a151d9-f0f0-42d0-a787-ced0c502156d-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9henVyZWFzeW5jb3BlcmF0aW9ucy8yNGExNTFkOS1mMGYwLTQyZDAtYTc4Ny1jZWQwYzUwMjE1NmQtMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c7b247-dcdd-4b97-87f5-105ff9a85919" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "b58abbed-d8a3-4e4e-a812-744d7ab35e3e" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "ef7ba36b-1038-4cd0-aff2-fd9ca50db127" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063651Z:ef7ba36b-1038-4cd0-aff2-fd9ca50db127" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:36:51 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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545/operationresults/24a151d9-f0f0-42d0-a787-ced0c502156d-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NS9vcGVyYXRpb25yZXN1bHRzLzI0YTE1MWQ5LWYwZjAtNDJkMC1hNzg3LWNlZDBjNTAyMTU2ZC0wLXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10c7b247-dcdd-4b97-87f5-105ff9a85919" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "35a0aa96-1e58-45d1-8f19-64fa6cb54e3d" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "cc09a697-3317-4ac8-9b5e-117c80697431" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063652Z:cc09a697-3317-4ac8-9b5e-117c80697431" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:36:52 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": [ + "fea46b0f-6f39-4f48-ab74-3db0a07f798b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "82544b85-7533-4c4b-b8e7-343df3c55d49", + "7301a341-639c-47e3-b045-93e3c55b4a83", + "", + "", + "e854ca2e-78a4-41cf-89cc-48ad83bfe3bd", + "38285575-f3fc-4a36-8619-d79c9f308078" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "13f484e9-b203-47b0-bc50-9f494b7c3951" + ], + "x-ms-correlation-request-id": [ + "13f484e9-b203-47b0-bc50-9f494b7c3951" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063713Z:13f484e9-b203-47b0-bc50-9f494b7c3951" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:37:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "56788" + ] + }, + "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/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\": \"f69149ad-3371-4c99-8d37-cce5be69a5b0\",\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\": \"79dbfee9a2c4453dbe704651fbeb8f4a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-01T17:16:58.6\",\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-gwpro-2021-06-01t17-16-06-965z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545\",\r\n \"name\": \"hdi-ps-test7545\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d1b4c5b5-5c73-4698-8c4c-3627d325edc2\",\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\": \"38bf973183a3414fa6b5f6dd699f0bdd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"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-02T06:22:22.133\",\r\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-test7545-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test7545.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest5398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6386/providers/Microsoft.Storage/storageAccounts/storagepstest5398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test7545\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestazuremonitorineastus\",\r\n \"name\": \"zzytestazuremonitorineastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"37ca30fc-cfee-47ac-abc6-f9fd9ba120a4\",\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\": \"6352fed6d82f489c8fca56d55ce50580\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-02T04:28:28.913\",\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\": \"zzytestazuremonitorineastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestazuremonitorineastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzyformonitoreastus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzyformonitoreastus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestazuremonitorinea-2021-06-02t04-26-30-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/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/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzyforinvestigatelocationheader\",\r\n \"name\": \"zzyforinvestigatelocationheader\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"7937f172-a0ea-4320-a730-e5ea2ea6124d\",\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\": \"37ccad76def144dc99b595948aacb20e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-02T06:03:49.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\": \"zzyforinvestigatelocationheader-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzyforinvestigatelocationheader.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzyforinvestihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzyforinvestihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzyforinvestigatelocati-2021-06-02t06-02-50-163z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test\",\r\n \"name\": \"yalu-usw3-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"07a67443-77c0-4d27-9968-09bd15313237\",\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\": \"a269d90ba47b491aba01333f32a3aca4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\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\": \"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\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-05-26T07:32:26.5\",\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\": \"yalu-usw3-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-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\": \"yaluusw3testhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3testhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test-2021-05-26t07-30-08-960z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test5261\",\r\n \"name\": \"yalu-usw3-test5261\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"f1b21e46-182c-4d1a-af43-15be32dc4a97\",\r\n \"tags\": {},\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.2104161825.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"30815ed192814100a28b44051dbd7d97\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"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_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\": \"2021-05-26T08:32:08.57\",\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\": \"yalu-usw3-test5261-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5261.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\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-test5261-2021-05-26t08-29-20-083z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test5271\",\r\n \"name\": \"yalu-usw3-test5271\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"9af5aff9-1861-41ec-8091-5359497b05c9\",\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\": \"4d23c10f23084f7eb65a2597b63f8b53\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-27T12:00:12.677\",\r\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-usw3-test5271-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5271.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\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-test5271-2021-05-27t11-58-41-006z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test5311\",\r\n \"name\": \"yalu-usw3-test5311\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"26d1f7d2-de8c-4472-b93c-66af34a1ee43\",\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\": \"0334965884084efb9a17e52c01dcc5fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\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-05-31T06:01:41.04\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\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 \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5311-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5311.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\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-test5311-2021-05-31t06-00-18-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-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\": \"Error\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\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 \"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/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5313\",\r\n \"name\": \"yalu-usw3-test5313\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"0bbf1d48-2f6f-4077-bd4f-e3e331ce38a7\",\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.2104161825.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"e8a305b4188746379793541d5aa1b202\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\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\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-05-31T07:49:08.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\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\": \"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-test5313-2021-05-31t07-48-13-082z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test611\",\r\n \"name\": \"yalu-usw3-test611\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"38e02a49-5f13-48b0-9c98-eec2747fcf05\",\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\": \"63e7f951e81b432b8c346c71967ea616\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\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-06-01T09:11:17.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\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 \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test611-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test611.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test6hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test6hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test611-2021-06-01t09-09-59-160z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test612\",\r\n \"name\": \"yalu-usw3-test612\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"2dfcdd69-dd4f-4b00-82f3-f71746e3806e\",\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\": \"fa5878a6225142cfb73c1b8369caf53b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-01T12:05:32.26\",\r\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-usw3-test612-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test612.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test6hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test6hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test612-2021-06-01t12-04-52-971z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-test621\",\r\n \"name\": \"yalu-usw3-test621\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"1ebef0b7-537f-44e1-88ae-2da683ef8b61\",\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\": \"4df463cae5fe4a01aed7e966e4130885\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-02T05:40:33.353\",\r\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-usw3-test621-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test621.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test6hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test6hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test621-2021-06-02t05-39-13-235z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-rg2/providers/Microsoft.HDInsight/clusters/xinli1jio\",\r\n \"name\": \"xinli1jio\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"f1eea4a7-60a3-4885-8ecd-10903f1d4d8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"5.0.0.1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2104161825.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"5df56b3a531943dca5e7af4b78f099d7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"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_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\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\": \"sshuser\"\r\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-26T02:00:42.713\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 328\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1jio-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1jio.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-rg2/providers/Microsoft.Storage/storageAccounts/xinli1jiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1jio-2021-05-26t01-58-25-819z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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-jio-a/providers/Microsoft.HDInsight/clusters/xinli1-jio-a\",\r\n \"name\": \"xinli1-jio-a\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"651f024a-eca1-4508-bbce-26e3554ca05d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"5.0.0.1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2104161825.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"e11cd8e8c3f74d98882d903273ebad65\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-26T06:26:46.103\",\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\": \"xinli1-jio-a-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jio-a.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jioahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jio-a/providers/Microsoft.Storage/storageAccounts/xinli1jioahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-jio-a-2021-05-26t06-24-56-679z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"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/xinli1-jio-test/providers/Microsoft.HDInsight/clusters/xinli1jiotest\",\r\n \"name\": \"xinli1jiotest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"4edd80d5-2be4-46bf-be59-c9259ec9aa1d\",\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\": \"f59a32223451432bbad2f302845f2a04\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"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_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\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-26T01:19:45.77\",\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\": \"xinli1jiotest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1jiotest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jiotesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jio-test/providers/Microsoft.Storage/storageAccounts/xinli1jiotesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-jio-test-2021-05-26t01-16-49-068z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"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-test6386/providers/Microsoft.HDInsight/clusters/hdi-ps-test7545?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NzU0NT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fea46b0f-6f39-4f48-ab74-3db0a07f798b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.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/d676ab9d-8206-4fe7-92f1-7cdaecaaf2cb-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/d676ab9d-8206-4fe7-92f1-7cdaecaaf2cb-0-r?api-version=2018-06-01-preview" + ], + "x-ms-request-id": [ + "d0d92e6a-809d-404d-ae3f-5dad2597d478" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "e142ba15-4b61-4754-a792-039dcf85678f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063715Z:e142ba15-4b61-4754-a792-039dcf85678f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:37:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/d676ab9d-8206-4fe7-92f1-7cdaecaaf2cb-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvZDY3NmFiOWQtODIwNi00ZmU3LTkyZjEtN2NkYWVjYWFmMmNiLTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fea46b0f-6f39-4f48-ab74-3db0a07f798b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "e753ebba-6c0a-433a-b057-8fc5c27ef19b" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "1f67e116-780d-42f1-a09b-f7d2d007e3f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063816Z:1f67e116-780d-42f1-a09b-f7d2d007e3f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:38: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/d676ab9d-8206-4fe7-92f1-7cdaecaaf2cb-0-r?api-version=2018-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy9kNjc2YWI5ZC04MjA2LTRmZTctOTJmMS03Y2RhZWNhYWYyY2ItMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fea46b0f-6f39-4f48-ab74-3db0a07f798b" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/7.0.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": [ + "5c72565a-7b93-4cdd-96d1-bb03ea09b75e" + ], + "x-ms-hdi-served-by": [ + "eastus" + ], + "x-ms-correlation-request-id": [ + "dacfd38e-7e8c-4485-afea-72525a4d5c17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063816Z:dacfd38e-7e8c-4485-afea-72525a4d5c17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:38:16 GMT" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6386?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2Mzg2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4eb33813-ef72-4f34-8126-54103693de9d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "e78fcb92-8db8-436b-b1e8-01f3e5987427" + ], + "x-ms-correlation-request-id": [ + "e78fcb92-8db8-436b-b1e8-01f3e5987427" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063820Z:e78fcb92-8db8-436b-b1e8-01f3e5987427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:38:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "2b83964b-40a4-49b4-acfe-05156b7cf79e" + ], + "x-ms-correlation-request-id": [ + "2b83964b-40a4-49b4-acfe-05156b7cf79e" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063835Z:2b83964b-40a4-49b4-acfe-05156b7cf79e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:38:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b20490be-2f29-43a0-a8d9-275bb80e2ba5" + ], + "x-ms-correlation-request-id": [ + "b20490be-2f29-43a0-a8d9-275bb80e2ba5" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063851Z:b20490be-2f29-43a0-a8d9-275bb80e2ba5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:38:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8066cd63-1f23-4fc8-ac0a-5ae4ad56bb5a" + ], + "x-ms-correlation-request-id": [ + "8066cd63-1f23-4fc8-ac0a-5ae4ad56bb5a" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063906Z:8066cd63-1f23-4fc8-ac0a-5ae4ad56bb5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:39:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "e8a6f7ed-fae6-45c8-86da-8690472ee443" + ], + "x-ms-correlation-request-id": [ + "e8a6f7ed-fae6-45c8-86da-8690472ee443" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063922Z:e8a6f7ed-fae6-45c8-86da-8690472ee443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:39:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "c3afa651-5508-4942-aaa3-30d23c881b70" + ], + "x-ms-correlation-request-id": [ + "c3afa651-5508-4942-aaa3-30d23c881b70" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063937Z:c3afa651-5508-4942-aaa3-30d23c881b70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:39:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "8bb52088-db3e-43ca-97f8-0e007b34c99a" + ], + "x-ms-correlation-request-id": [ + "8bb52088-db3e-43ca-97f8-0e007b34c99a" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T063952Z:8bb52088-db3e-43ca-97f8-0e007b34c99a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:39:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "6258f0f7-8da7-424f-a87b-2cd627a7f91f" + ], + "x-ms-correlation-request-id": [ + "6258f0f7-8da7-424f-a87b-2cd627a7f91f" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T064008Z:6258f0f7-8da7-424f-a87b-2cd627a7f91f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:40:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYzODYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl6T0RZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "6ffc4576-d844-431f-88c6-4ca7f2329aff" + ], + "x-ms-correlation-request-id": [ + "6ffc4576-d844-431f-88c6-4ca7f2329aff" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20210602T064008Z:6ffc4576-d844-431f-88c6-4ca7f2329aff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 02 Jun 2021 06:40:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-AzureMonitorRelatedCommands": [ + "hdi-ps-test7545", + "group-ps-test6386", + "storagepstest5398", + "workspace-ps-test3805" + ] + }, + "Variables": { + "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305" + } +} \ No newline at end of file diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index 4ddfceef95ee..083da20765fe 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -553,6 +553,10 @@ "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightMonitoringTests\\TestMonitoringRelatedCommands.json", "_justification": "Test resource is deleted" }, + { + "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests\\TestAzureMonitorRelatedCommands.json", + "_justification": "Test resource is deleted" + }, { "file": "src\\HDInsight\\HDInsight.Test\\SessionRecords\\Commands.HDInsight.Test.ScenarioTests.HDInsightSetGatewayCredentialTest\\TestSetGatewayCredential.json", "_justification": "Test resource is deleted" From 9e6221d34d37b2c3359ed04cea1792e977e23048 Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Mon, 7 Jun 2021 10:39:30 +0800 Subject: [PATCH 6/7] Change setbynameparameterset to bynameparameterset --- .../DisableAzureHDInsightAzureMonitorCommand.cs | 2 +- .../EnableAzureHDInsightAzureMonitorCommand.cs | 2 +- .../GetAzureHDInsightAzureMonitorCommand.cs | 2 +- .../HDInsight/help/Disable-AzHDInsightAzureMonitor.md | 7 ++++--- .../HDInsight/help/Enable-AzHDInsightAzureMonitor.md | 7 ++++--- .../HDInsight/help/Get-AzHDInsightAzureMonitor.md | 7 ++++--- 6 files changed, 15 insertions(+), 12 deletions(-) diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs index 131d0ed2f329..9d8fd95f676d 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs @@ -27,7 +27,7 @@ public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByNameParameterSet = "ByNameParameterSet"; private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs index 3eab2d1793b4..d96258e22cde 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs @@ -29,7 +29,7 @@ public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByNameParameterSet = "ByNameParameterSet"; private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs index 97134cbcbb94..85ea2408a565 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.HDInsight public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "SetByNameParameterSet"; + private const string SetByNameParameterSet = "ByNameParameterSet"; private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md index fdf9c313e533..ac2fb2735b7c 100644 --- a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md @@ -12,7 +12,7 @@ Disables Azure Monitor in a specified HDInsight cluster. ## SYNTAX -### SetByNameParameterSet (Default) +### ByNameParameterSet (Default) ``` Disable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -62,7 +62,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: True @@ -107,7 +107,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: False @@ -179,5 +179,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + [Enable-AzHDInsightAzureMonitor](./Enable-AzHDInsightAzureMonitor.md) [Get-AzHDInsightAzureMonitor](./Get-AzHDInsightAzureMonitor.md) diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md index 4930d862e9ce..6e9662bf4228 100644 --- a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md @@ -12,7 +12,7 @@ Enables Azure Monitor in a specified HDInsight cluster. ## SYNTAX -### SetByNameParameterSet (Default) +### ByNameParameterSet (Default) ``` Enable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -66,7 +66,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: True @@ -126,7 +126,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: False @@ -213,5 +213,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + [Disable-AzHDInsightAzureMonitor](./Disable-AzHDInsightAzureMonitor.md) [Get-AzHDInsightAzureMonitor](./Get-AzHDInsightAzureMonitor.md) diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md index e47e434edd72..276df7af9ead 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md @@ -12,7 +12,7 @@ Gets the azure monitor status of a specified HDInsight cluster. ## SYNTAX -### SetByNameParameterSet (Default) +### ByNameParameterSet (Default) ``` Get-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [] @@ -62,7 +62,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: True @@ -107,7 +107,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: SetByNameParameterSet +Parameter Sets: ByNameParameterSet Aliases: Required: False @@ -148,5 +148,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + [Enable-AzHDInsightAzureMonitor](./Enable-AzHDInsightAzureMonitor.md) [Disable-AzHDInsightAzureMonitor](./Disable-AzHDInsightAzureMonitor.md) From 1de6bd603d46064c7437b0175bc426d536534354 Mon Sep 17 00:00:00 2001 From: Zhenyu Zhou Date: Mon, 7 Jun 2021 12:38:32 +0800 Subject: [PATCH 7/7] Change the parameter set names to verb+ByName|ResourceId|InputObject style --- ...isableAzureHDInsightAzureMonitorCommand.cs | 16 +++++------ ...EnableAzureHDInsightAzureMonitorCommand.cs | 28 +++++++++---------- .../GetAzureHDInsightAzureMonitorCommand.cs | 16 +++++------ .../help/Disable-AzHDInsightAzureMonitor.md | 14 +++++----- .../help/Enable-AzHDInsightAzureMonitor.md | 14 +++++----- .../help/Get-AzHDInsightAzureMonitor.md | 14 +++++----- 6 files changed, 51 insertions(+), 51 deletions(-) diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs index 9d8fd95f676d..579c1c464efd 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs @@ -21,20 +21,20 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = DisableByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "ByNameParameterSet"; - private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; - private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string DisableByNameParameterSet = "DisableByNameParameterSet"; + private const string DisableByResourceIdParameterSet = "DisableByResourceIdParameterSet"; + private const string DisableByInputObjectParameterSet = "DisableByInputObjectParameterSet"; [Parameter( Position = 0, Mandatory = false, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = DisableByNameParameterSet, HelpMessage = "Gets or sets the name of the resource group.")] [ResourceGroupCompleter] public string ResourceGroupName { get; set; } @@ -42,7 +42,7 @@ public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase [Parameter( Position = 1, Mandatory = true, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = DisableByNameParameterSet, HelpMessage = "Gets or sets the name of the cluster.")] [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] [ValidateNotNullOrEmpty] @@ -52,7 +52,7 @@ public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, - ParameterSetName = SetByResourceIdParameterSet, + ParameterSetName = DisableByResourceIdParameterSet, HelpMessage = "Gets or sets the resource id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -61,7 +61,7 @@ public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipeline = true, - ParameterSetName = SetByInputObjectParameterSet, + ParameterSetName = DisableByInputObjectParameterSet, HelpMessage = "Gets or sets the input object.")] [ValidateNotNull] public AzureHDInsightCluster InputObject { get; set; } diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs index d96258e22cde..e4f7847edb04 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs @@ -23,20 +23,20 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true)] + [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = EnableByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "ByNameParameterSet"; - private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; - private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string EnableByNameParameterSet = "EnableByNameParameterSet"; + private const string EnableByResourceIdParameterSet = "EnableByResourceIdParameterSet"; + private const string EnableByInputObjectParameterSet = "EnableByInputObjectParameterSet"; [Parameter( Position = 0, Mandatory = false, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = EnableByNameParameterSet, HelpMessage = "Gets or sets the name of the resource group.")] [ResourceGroupCompleter] public string ResourceGroupName { get; set; } @@ -44,7 +44,7 @@ public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase [Parameter( Position = 1, Mandatory = true, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = EnableByNameParameterSet, HelpMessage = "Gets or sets the name of the cluster.")] [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] [ValidateNotNullOrEmpty] @@ -54,7 +54,7 @@ public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, - ParameterSetName = SetByResourceIdParameterSet, + ParameterSetName = EnableByResourceIdParameterSet, HelpMessage = "Gets or sets the resource id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -63,7 +63,7 @@ public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipeline = true, - ParameterSetName = SetByInputObjectParameterSet, + ParameterSetName = EnableByInputObjectParameterSet, HelpMessage = "Gets or sets the input object.")] [ValidateNotNull] public AzureHDInsightCluster InputObject { get; set; } @@ -71,34 +71,34 @@ public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase [Parameter( Position = 2, Mandatory = true, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = EnableByNameParameterSet, HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] [Parameter( Position = 1, Mandatory = true, - ParameterSetName = SetByResourceIdParameterSet, + ParameterSetName = EnableByResourceIdParameterSet, HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] [Parameter( Position = 1, Mandatory = true, - ParameterSetName = SetByInputObjectParameterSet, + ParameterSetName = EnableByInputObjectParameterSet, HelpMessage = "Gets or sets the ID of the Log Analytics workspace.")] public string WorkspaceId { get; set; } [Parameter( Position = 3, Mandatory = true, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = EnableByNameParameterSet, HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] [Parameter( Position = 2, Mandatory = true, - ParameterSetName = SetByResourceIdParameterSet, + ParameterSetName = EnableByResourceIdParameterSet, HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] [Parameter( Position = 2, Mandatory = true, - ParameterSetName = SetByInputObjectParameterSet, + ParameterSetName = EnableByInputObjectParameterSet, HelpMessage = "Gets to sets the primary key of the Log Analytics workspace.")] public string PrimaryKey { get; set; } diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs index 85ea2408a565..2f33f4a891d2 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs @@ -22,19 +22,19 @@ namespace Microsoft.Azure.Commands.HDInsight { - [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = SetByNameParameterSet)] + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = GetByNameParameterSet)] [OutputType(typeof(AzureHDInsightAzureMonitor))] public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase { #region Input Parameter Definitions - private const string SetByNameParameterSet = "ByNameParameterSet"; - private const string SetByResourceIdParameterSet = "SetByResourceIdParameterSet"; - private const string SetByInputObjectParameterSet = "SetByInputObjectParameterSet"; + private const string GetByNameParameterSet = "GetByNameParameterSet"; + private const string GetByResourceIdParameterSet = "GetByResourceIdParameterSet"; + private const string GetByInputObjectParameterSet = "GetByInputObjectParameterSet"; [Parameter( Position = 0, Mandatory = false, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = GetByNameParameterSet, HelpMessage = "Gets or sets the name of the resource group.")] [ResourceGroupCompleter] public string ResourceGroupName { get; set; } @@ -42,7 +42,7 @@ public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase [Parameter( Position = 1, Mandatory = true, - ParameterSetName = SetByNameParameterSet, + ParameterSetName = GetByNameParameterSet, HelpMessage = "Gets or sets the name of the cluster.")] [ResourceNameCompleter("Microsoft.HDInsight/clusters", nameof(ResourceGroupName))] [ValidateNotNullOrEmpty] @@ -52,7 +52,7 @@ public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipelineByPropertyName = true, - ParameterSetName = SetByResourceIdParameterSet, + ParameterSetName = GetByResourceIdParameterSet, HelpMessage = "Gets or sets the resource id.")] [ValidateNotNullOrEmpty] public string ResourceId { get; set; } @@ -61,7 +61,7 @@ public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase Position = 0, Mandatory = true, ValueFromPipeline = true, - ParameterSetName = SetByInputObjectParameterSet, + ParameterSetName = GetByInputObjectParameterSet, HelpMessage = "Gets or sets the input object.")] [ValidateNotNull] public AzureHDInsightCluster InputObject { get; set; } diff --git a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md index ac2fb2735b7c..9b04678830b5 100644 --- a/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Disable-AzHDInsightAzureMonitor.md @@ -12,19 +12,19 @@ Disables Azure Monitor in a specified HDInsight cluster. ## SYNTAX -### ByNameParameterSet (Default) +### DisableByNameParameterSet (Default) ``` Disable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### SetByResourceIdParameterSet +### DisableByResourceIdParameterSet ``` Disable-AzHDInsightAzureMonitor [-ResourceId] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### SetByInputObjectParameterSet +### DisableByInputObjectParameterSet ``` Disable-AzHDInsightAzureMonitor [-InputObject] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -62,7 +62,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: DisableByNameParameterSet Aliases: Required: True @@ -92,7 +92,7 @@ Gets or sets the input object. ```yaml Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster -Parameter Sets: SetByInputObjectParameterSet +Parameter Sets: DisableByInputObjectParameterSet Aliases: Required: True @@ -107,7 +107,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: DisableByNameParameterSet Aliases: Required: False @@ -122,7 +122,7 @@ Gets or sets the resource id. ```yaml Type: System.String -Parameter Sets: SetByResourceIdParameterSet +Parameter Sets: DisableByResourceIdParameterSet Aliases: Required: True diff --git a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md index 6e9662bf4228..4aa8df06443f 100644 --- a/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Enable-AzHDInsightAzureMonitor.md @@ -12,19 +12,19 @@ Enables Azure Monitor in a specified HDInsight cluster. ## SYNTAX -### ByNameParameterSet (Default) +### EnableByNameParameterSet (Default) ``` Enable-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### SetByResourceIdParameterSet +### EnableByResourceIdParameterSet ``` Enable-AzHDInsightAzureMonitor [-ResourceId] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### SetByInputObjectParameterSet +### EnableByInputObjectParameterSet ``` Enable-AzHDInsightAzureMonitor [-InputObject] [-WorkspaceId] [-PrimaryKey] [-DefaultProfile ] [-WhatIf] [-Confirm] [] @@ -66,7 +66,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: EnableByNameParameterSet Aliases: Required: True @@ -96,7 +96,7 @@ Gets or sets the input object. ```yaml Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster -Parameter Sets: SetByInputObjectParameterSet +Parameter Sets: EnableByInputObjectParameterSet Aliases: Required: True @@ -126,7 +126,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: EnableByNameParameterSet Aliases: Required: False @@ -141,7 +141,7 @@ Gets or sets the resource id. ```yaml Type: System.String -Parameter Sets: SetByResourceIdParameterSet +Parameter Sets: EnableByResourceIdParameterSet Aliases: Required: True diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md index 276df7af9ead..9ba64ee80b88 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightAzureMonitor.md @@ -12,19 +12,19 @@ Gets the azure monitor status of a specified HDInsight cluster. ## SYNTAX -### ByNameParameterSet (Default) +### GetByNameParameterSet (Default) ``` Get-AzHDInsightAzureMonitor [[-ResourceGroupName] ] [-ClusterName] [-DefaultProfile ] [] ``` -### SetByResourceIdParameterSet +### GetByResourceIdParameterSet ``` Get-AzHDInsightAzureMonitor [-ResourceId] [-DefaultProfile ] [] ``` -### SetByInputObjectParameterSet +### GetByInputObjectParameterSet ``` Get-AzHDInsightAzureMonitor [-InputObject] [-DefaultProfile ] [] @@ -62,7 +62,7 @@ Gets or sets the name of the cluster. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: GetByNameParameterSet Aliases: Required: True @@ -92,7 +92,7 @@ Gets or sets the input object. ```yaml Type: Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster -Parameter Sets: SetByInputObjectParameterSet +Parameter Sets: GetByInputObjectParameterSet Aliases: Required: True @@ -107,7 +107,7 @@ Gets or sets the name of the resource group. ```yaml Type: System.String -Parameter Sets: ByNameParameterSet +Parameter Sets: GetByNameParameterSet Aliases: Required: False @@ -122,7 +122,7 @@ Gets or sets the resource id. ```yaml Type: System.String -Parameter Sets: SetByResourceIdParameterSet +Parameter Sets: GetByResourceIdParameterSet Aliases: Required: True