We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a HDInsight Interactive Query Cluster.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleContainer = new Azure.Storage.Container("exampleContainer", new Azure.Storage.ContainerArgs
{
StorageAccountName = exampleAccount.Name,
ContainerAccessType = "private",
});
var exampleInteractiveQueryCluster = new Azure.HDInsight.InteractiveQueryCluster("exampleInteractiveQueryCluster", new Azure.HDInsight.InteractiveQueryClusterArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
ClusterVersion = "3.6",
Tier = "Standard",
ComponentVersion = new Azure.HDInsight.Inputs.InteractiveQueryClusterComponentVersionArgs
{
InteractiveHive = "2.1",
},
Gateway = new Azure.HDInsight.Inputs.InteractiveQueryClusterGatewayArgs
{
Enabled = true,
Username = "acctestusrgw",
Password = "Password!",
},
StorageAccounts =
{
new Azure.HDInsight.Inputs.InteractiveQueryClusterStorageAccountArgs
{
StorageContainerId = exampleContainer.Id,
StorageAccountKey = exampleAccount.PrimaryAccessKey,
IsDefault = true,
},
},
Roles = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesArgs
{
HeadNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesHeadNodeArgs
{
VmSize = "Standard_D13_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
},
WorkerNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeArgs
{
VmSize = "Standard_D14_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
TargetInstanceCount = 3,
},
ZookeeperNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesZookeeperNodeArgs
{
VmSize = "Standard_A4_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/hdinsight"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleContainer, err := storage.NewContainer(ctx, "exampleContainer", &storage.ContainerArgs{
StorageAccountName: exampleAccount.Name,
ContainerAccessType: pulumi.String("private"),
})
if err != nil {
return err
}
_, err = hdinsight.NewInteractiveQueryCluster(ctx, "exampleInteractiveQueryCluster", &hdinsight.InteractiveQueryClusterArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
ClusterVersion: pulumi.String("3.6"),
Tier: pulumi.String("Standard"),
ComponentVersion: &hdinsight.InteractiveQueryClusterComponentVersionArgs{
InteractiveHive: pulumi.String("2.1"),
},
Gateway: &hdinsight.InteractiveQueryClusterGatewayArgs{
Enabled: pulumi.Bool(true),
Username: pulumi.String("acctestusrgw"),
Password: pulumi.String("Password!"),
},
StorageAccounts: hdinsight.InteractiveQueryClusterStorageAccountArray{
&hdinsight.InteractiveQueryClusterStorageAccountArgs{
StorageContainerId: exampleContainer.ID(),
StorageAccountKey: exampleAccount.PrimaryAccessKey,
IsDefault: pulumi.Bool(true),
},
},
Roles: &hdinsight.InteractiveQueryClusterRolesArgs{
HeadNode: &hdinsight.InteractiveQueryClusterRolesHeadNodeArgs{
VmSize: pulumi.String("Standard_D13_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
},
WorkerNode: &hdinsight.InteractiveQueryClusterRolesWorkerNodeArgs{
VmSize: pulumi.String("Standard_D14_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
TargetInstanceCount: pulumi.Int(3),
},
ZookeeperNode: &hdinsight.InteractiveQueryClusterRolesZookeeperNodeArgs{
VmSize: pulumi.String("Standard_A4_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleContainer = new azure.storage.Container("exampleContainer", {
storageAccountName: exampleAccount.name,
containerAccessType: "private",
});
const exampleInteractiveQueryCluster = new azure.hdinsight.InteractiveQueryCluster("exampleInteractiveQueryCluster", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
clusterVersion: "3.6",
tier: "Standard",
componentVersion: {
interactiveHive: "2.1",
},
gateway: {
enabled: true,
username: "acctestusrgw",
password: "Password!",
},
storageAccounts: [{
storageContainerId: exampleContainer.id,
storageAccountKey: exampleAccount.primaryAccessKey,
isDefault: true,
}],
roles: {
headNode: {
vmSize: "Standard_D13_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
},
workerNode: {
vmSize: "Standard_D14_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
targetInstanceCount: 3,
},
zookeeperNode: {
vmSize: "Standard_A4_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
},
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="LRS")
example_container = azure.storage.Container("exampleContainer",
storage_account_name=example_account.name,
container_access_type="private")
example_interactive_query_cluster = azure.hdinsight.InteractiveQueryCluster("exampleInteractiveQueryCluster",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
cluster_version="3.6",
tier="Standard",
component_version=azure.hdinsight.InteractiveQueryClusterComponentVersionArgs(
interactive_hive="2.1",
),
gateway=azure.hdinsight.InteractiveQueryClusterGatewayArgs(
enabled=True,
username="acctestusrgw",
password="Password!",
),
storage_accounts=[azure.hdinsight.InteractiveQueryClusterStorageAccountArgs(
storage_container_id=example_container.id,
storage_account_key=example_account.primary_access_key,
is_default=True,
)],
roles=azure.hdinsight.InteractiveQueryClusterRolesArgs(
head_node=azure.hdinsight.InteractiveQueryClusterRolesHeadNodeArgs(
vm_size="Standard_D13_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
),
worker_node=azure.hdinsight.InteractiveQueryClusterRolesWorkerNodeArgs(
vm_size="Standard_D14_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
target_instance_count=3,
),
zookeeper_node=azure.hdinsight.InteractiveQueryClusterRolesZookeeperNodeArgs(
vm_size="Standard_A4_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
),
))
Example coming soon!
Create InteractiveQueryCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InteractiveQueryCluster(name: string, args: InteractiveQueryClusterArgs, opts?: CustomResourceOptions);@overload
def InteractiveQueryCluster(resource_name: str,
args: InteractiveQueryClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InteractiveQueryCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_version: Optional[str] = None,
component_version: Optional[InteractiveQueryClusterComponentVersionArgs] = None,
tier: Optional[str] = None,
gateway: Optional[InteractiveQueryClusterGatewayArgs] = None,
roles: Optional[InteractiveQueryClusterRolesArgs] = None,
resource_group_name: Optional[str] = None,
network: Optional[InteractiveQueryClusterNetworkArgs] = None,
name: Optional[str] = None,
monitor: Optional[InteractiveQueryClusterMonitorArgs] = None,
metastores: Optional[InteractiveQueryClusterMetastoresArgs] = None,
location: Optional[str] = None,
security_profile: Optional[InteractiveQueryClusterSecurityProfileArgs] = None,
storage_account_gen2: Optional[InteractiveQueryClusterStorageAccountGen2Args] = None,
storage_accounts: Optional[Sequence[InteractiveQueryClusterStorageAccountArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
encryption_in_transit_enabled: Optional[bool] = None,
tls_min_version: Optional[str] = None)func NewInteractiveQueryCluster(ctx *Context, name string, args InteractiveQueryClusterArgs, opts ...ResourceOption) (*InteractiveQueryCluster, error)public InteractiveQueryCluster(string name, InteractiveQueryClusterArgs args, CustomResourceOptions? opts = null)
public InteractiveQueryCluster(String name, InteractiveQueryClusterArgs args)
public InteractiveQueryCluster(String name, InteractiveQueryClusterArgs args, CustomResourceOptions options)
type: azure:hdinsight:InteractiveQueryCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InteractiveQueryClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InteractiveQueryClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InteractiveQueryClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InteractiveQueryClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InteractiveQueryClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var interactiveQueryClusterResource = new Azure.HDInsight.InteractiveQueryCluster("interactiveQueryClusterResource", new()
{
ClusterVersion = "string",
ComponentVersion = new Azure.HDInsight.Inputs.InteractiveQueryClusterComponentVersionArgs
{
InteractiveHive = "string",
},
Tier = "string",
Gateway = new Azure.HDInsight.Inputs.InteractiveQueryClusterGatewayArgs
{
Password = "string",
Username = "string",
},
Roles = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesArgs
{
HeadNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesHeadNodeArgs
{
Username = "string",
VmSize = "string",
Password = "string",
SshKeys = new[]
{
"string",
},
SubnetId = "string",
VirtualNetworkId = "string",
},
WorkerNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeArgs
{
TargetInstanceCount = 0,
Username = "string",
VmSize = "string",
Autoscale = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeAutoscaleArgs
{
Capacity = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeAutoscaleCapacityArgs
{
MaxInstanceCount = 0,
MinInstanceCount = 0,
},
Recurrence = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceArgs
{
Schedules = new[]
{
new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceScheduleArgs
{
Days = new[]
{
"string",
},
TargetInstanceCount = 0,
Time = "string",
},
},
Timezone = "string",
},
},
Password = "string",
SshKeys = new[]
{
"string",
},
SubnetId = "string",
VirtualNetworkId = "string",
},
ZookeeperNode = new Azure.HDInsight.Inputs.InteractiveQueryClusterRolesZookeeperNodeArgs
{
Username = "string",
VmSize = "string",
Password = "string",
SshKeys = new[]
{
"string",
},
SubnetId = "string",
VirtualNetworkId = "string",
},
},
ResourceGroupName = "string",
Network = new Azure.HDInsight.Inputs.InteractiveQueryClusterNetworkArgs
{
ConnectionDirection = "string",
PrivateLinkEnabled = false,
},
Name = "string",
Monitor = new Azure.HDInsight.Inputs.InteractiveQueryClusterMonitorArgs
{
LogAnalyticsWorkspaceId = "string",
PrimaryKey = "string",
},
Metastores = new Azure.HDInsight.Inputs.InteractiveQueryClusterMetastoresArgs
{
Ambari = new Azure.HDInsight.Inputs.InteractiveQueryClusterMetastoresAmbariArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
Hive = new Azure.HDInsight.Inputs.InteractiveQueryClusterMetastoresHiveArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
Oozie = new Azure.HDInsight.Inputs.InteractiveQueryClusterMetastoresOozieArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
},
Location = "string",
SecurityProfile = new Azure.HDInsight.Inputs.InteractiveQueryClusterSecurityProfileArgs
{
AaddsResourceId = "string",
DomainName = "string",
DomainUserPassword = "string",
DomainUsername = "string",
LdapsUrls = new[]
{
"string",
},
MsiResourceId = "string",
ClusterUsersGroupDns = new[]
{
"string",
},
},
StorageAccountGen2 = new Azure.HDInsight.Inputs.InteractiveQueryClusterStorageAccountGen2Args
{
FilesystemId = "string",
IsDefault = false,
ManagedIdentityResourceId = "string",
StorageResourceId = "string",
},
StorageAccounts = new[]
{
new Azure.HDInsight.Inputs.InteractiveQueryClusterStorageAccountArgs
{
IsDefault = false,
StorageAccountKey = "string",
StorageContainerId = "string",
StorageResourceId = "string",
},
},
Tags =
{
{ "string", "string" },
},
EncryptionInTransitEnabled = false,
TlsMinVersion = "string",
});
example, err := hdinsight.NewInteractiveQueryCluster(ctx, "interactiveQueryClusterResource", &hdinsight.InteractiveQueryClusterArgs{
ClusterVersion: pulumi.String("string"),
ComponentVersion: &hdinsight.InteractiveQueryClusterComponentVersionArgs{
InteractiveHive: pulumi.String("string"),
},
Tier: pulumi.String("string"),
Gateway: &hdinsight.InteractiveQueryClusterGatewayArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
Roles: &hdinsight.InteractiveQueryClusterRolesArgs{
HeadNode: &hdinsight.InteractiveQueryClusterRolesHeadNodeArgs{
Username: pulumi.String("string"),
VmSize: pulumi.String("string"),
Password: pulumi.String("string"),
SshKeys: pulumi.StringArray{
pulumi.String("string"),
},
SubnetId: pulumi.String("string"),
VirtualNetworkId: pulumi.String("string"),
},
WorkerNode: &hdinsight.InteractiveQueryClusterRolesWorkerNodeArgs{
TargetInstanceCount: pulumi.Int(0),
Username: pulumi.String("string"),
VmSize: pulumi.String("string"),
Autoscale: &hdinsight.InteractiveQueryClusterRolesWorkerNodeAutoscaleArgs{
Capacity: &hdinsight.InteractiveQueryClusterRolesWorkerNodeAutoscaleCapacityArgs{
MaxInstanceCount: pulumi.Int(0),
MinInstanceCount: pulumi.Int(0),
},
Recurrence: &hdinsight.InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceArgs{
Schedules: hdinsight.InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceScheduleArray{
&hdinsight.InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceScheduleArgs{
Days: pulumi.StringArray{
pulumi.String("string"),
},
TargetInstanceCount: pulumi.Int(0),
Time: pulumi.String("string"),
},
},
Timezone: pulumi.String("string"),
},
},
Password: pulumi.String("string"),
SshKeys: pulumi.StringArray{
pulumi.String("string"),
},
SubnetId: pulumi.String("string"),
VirtualNetworkId: pulumi.String("string"),
},
ZookeeperNode: &hdinsight.InteractiveQueryClusterRolesZookeeperNodeArgs{
Username: pulumi.String("string"),
VmSize: pulumi.String("string"),
Password: pulumi.String("string"),
SshKeys: pulumi.StringArray{
pulumi.String("string"),
},
SubnetId: pulumi.String("string"),
VirtualNetworkId: pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
Network: &hdinsight.InteractiveQueryClusterNetworkArgs{
ConnectionDirection: pulumi.String("string"),
PrivateLinkEnabled: pulumi.Bool(false),
},
Name: pulumi.String("string"),
Monitor: &hdinsight.InteractiveQueryClusterMonitorArgs{
LogAnalyticsWorkspaceId: pulumi.String("string"),
PrimaryKey: pulumi.String("string"),
},
Metastores: &hdinsight.InteractiveQueryClusterMetastoresArgs{
Ambari: &hdinsight.InteractiveQueryClusterMetastoresAmbariArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
Hive: &hdinsight.InteractiveQueryClusterMetastoresHiveArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
Oozie: &hdinsight.InteractiveQueryClusterMetastoresOozieArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
SecurityProfile: &hdinsight.InteractiveQueryClusterSecurityProfileArgs{
AaddsResourceId: pulumi.String("string"),
DomainName: pulumi.String("string"),
DomainUserPassword: pulumi.String("string"),
DomainUsername: pulumi.String("string"),
LdapsUrls: pulumi.StringArray{
pulumi.String("string"),
},
MsiResourceId: pulumi.String("string"),
ClusterUsersGroupDns: pulumi.StringArray{
pulumi.String("string"),
},
},
StorageAccountGen2: &hdinsight.InteractiveQueryClusterStorageAccountGen2Args{
FilesystemId: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
ManagedIdentityResourceId: pulumi.String("string"),
StorageResourceId: pulumi.String("string"),
},
StorageAccounts: hdinsight.InteractiveQueryClusterStorageAccountArray{
&hdinsight.InteractiveQueryClusterStorageAccountArgs{
IsDefault: pulumi.Bool(false),
StorageAccountKey: pulumi.String("string"),
StorageContainerId: pulumi.String("string"),
StorageResourceId: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
EncryptionInTransitEnabled: pulumi.Bool(false),
TlsMinVersion: pulumi.String("string"),
})
var interactiveQueryClusterResource = new InteractiveQueryCluster("interactiveQueryClusterResource", InteractiveQueryClusterArgs.builder()
.clusterVersion("string")
.componentVersion(InteractiveQueryClusterComponentVersionArgs.builder()
.interactiveHive("string")
.build())
.tier("string")
.gateway(InteractiveQueryClusterGatewayArgs.builder()
.password("string")
.username("string")
.build())
.roles(InteractiveQueryClusterRolesArgs.builder()
.headNode(InteractiveQueryClusterRolesHeadNodeArgs.builder()
.username("string")
.vmSize("string")
.password("string")
.sshKeys("string")
.subnetId("string")
.virtualNetworkId("string")
.build())
.workerNode(InteractiveQueryClusterRolesWorkerNodeArgs.builder()
.targetInstanceCount(0)
.username("string")
.vmSize("string")
.autoscale(InteractiveQueryClusterRolesWorkerNodeAutoscaleArgs.builder()
.capacity(InteractiveQueryClusterRolesWorkerNodeAutoscaleCapacityArgs.builder()
.maxInstanceCount(0)
.minInstanceCount(0)
.build())
.recurrence(InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceArgs.builder()
.schedules(InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceScheduleArgs.builder()
.days("string")
.targetInstanceCount(0)
.time("string")
.build())
.timezone("string")
.build())
.build())
.password("string")
.sshKeys("string")
.subnetId("string")
.virtualNetworkId("string")
.build())
.zookeeperNode(InteractiveQueryClusterRolesZookeeperNodeArgs.builder()
.username("string")
.vmSize("string")
.password("string")
.sshKeys("string")
.subnetId("string")
.virtualNetworkId("string")
.build())
.build())
.resourceGroupName("string")
.network(InteractiveQueryClusterNetworkArgs.builder()
.connectionDirection("string")
.privateLinkEnabled(false)
.build())
.name("string")
.monitor(InteractiveQueryClusterMonitorArgs.builder()
.logAnalyticsWorkspaceId("string")
.primaryKey("string")
.build())
.metastores(InteractiveQueryClusterMetastoresArgs.builder()
.ambari(InteractiveQueryClusterMetastoresAmbariArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.hive(InteractiveQueryClusterMetastoresHiveArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.oozie(InteractiveQueryClusterMetastoresOozieArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.build())
.location("string")
.securityProfile(InteractiveQueryClusterSecurityProfileArgs.builder()
.aaddsResourceId("string")
.domainName("string")
.domainUserPassword("string")
.domainUsername("string")
.ldapsUrls("string")
.msiResourceId("string")
.clusterUsersGroupDns("string")
.build())
.storageAccountGen2(InteractiveQueryClusterStorageAccountGen2Args.builder()
.filesystemId("string")
.isDefault(false)
.managedIdentityResourceId("string")
.storageResourceId("string")
.build())
.storageAccounts(InteractiveQueryClusterStorageAccountArgs.builder()
.isDefault(false)
.storageAccountKey("string")
.storageContainerId("string")
.storageResourceId("string")
.build())
.tags(Map.of("string", "string"))
.encryptionInTransitEnabled(false)
.tlsMinVersion("string")
.build());
interactive_query_cluster_resource = azure.hdinsight.InteractiveQueryCluster("interactiveQueryClusterResource",
cluster_version="string",
component_version={
"interactive_hive": "string",
},
tier="string",
gateway={
"password": "string",
"username": "string",
},
roles={
"head_node": {
"username": "string",
"vm_size": "string",
"password": "string",
"ssh_keys": ["string"],
"subnet_id": "string",
"virtual_network_id": "string",
},
"worker_node": {
"target_instance_count": 0,
"username": "string",
"vm_size": "string",
"autoscale": {
"capacity": {
"max_instance_count": 0,
"min_instance_count": 0,
},
"recurrence": {
"schedules": [{
"days": ["string"],
"target_instance_count": 0,
"time": "string",
}],
"timezone": "string",
},
},
"password": "string",
"ssh_keys": ["string"],
"subnet_id": "string",
"virtual_network_id": "string",
},
"zookeeper_node": {
"username": "string",
"vm_size": "string",
"password": "string",
"ssh_keys": ["string"],
"subnet_id": "string",
"virtual_network_id": "string",
},
},
resource_group_name="string",
network={
"connection_direction": "string",
"private_link_enabled": False,
},
name="string",
monitor={
"log_analytics_workspace_id": "string",
"primary_key": "string",
},
metastores={
"ambari": {
"database_name": "string",
"password": "string",
"server": "string",
"username": "string",
},
"hive": {
"database_name": "string",
"password": "string",
"server": "string",
"username": "string",
},
"oozie": {
"database_name": "string",
"password": "string",
"server": "string",
"username": "string",
},
},
location="string",
security_profile={
"aadds_resource_id": "string",
"domain_name": "string",
"domain_user_password": "string",
"domain_username": "string",
"ldaps_urls": ["string"],
"msi_resource_id": "string",
"cluster_users_group_dns": ["string"],
},
storage_account_gen2={
"filesystem_id": "string",
"is_default": False,
"managed_identity_resource_id": "string",
"storage_resource_id": "string",
},
storage_accounts=[{
"is_default": False,
"storage_account_key": "string",
"storage_container_id": "string",
"storage_resource_id": "string",
}],
tags={
"string": "string",
},
encryption_in_transit_enabled=False,
tls_min_version="string")
const interactiveQueryClusterResource = new azure.hdinsight.InteractiveQueryCluster("interactiveQueryClusterResource", {
clusterVersion: "string",
componentVersion: {
interactiveHive: "string",
},
tier: "string",
gateway: {
password: "string",
username: "string",
},
roles: {
headNode: {
username: "string",
vmSize: "string",
password: "string",
sshKeys: ["string"],
subnetId: "string",
virtualNetworkId: "string",
},
workerNode: {
targetInstanceCount: 0,
username: "string",
vmSize: "string",
autoscale: {
capacity: {
maxInstanceCount: 0,
minInstanceCount: 0,
},
recurrence: {
schedules: [{
days: ["string"],
targetInstanceCount: 0,
time: "string",
}],
timezone: "string",
},
},
password: "string",
sshKeys: ["string"],
subnetId: "string",
virtualNetworkId: "string",
},
zookeeperNode: {
username: "string",
vmSize: "string",
password: "string",
sshKeys: ["string"],
subnetId: "string",
virtualNetworkId: "string",
},
},
resourceGroupName: "string",
network: {
connectionDirection: "string",
privateLinkEnabled: false,
},
name: "string",
monitor: {
logAnalyticsWorkspaceId: "string",
primaryKey: "string",
},
metastores: {
ambari: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
hive: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
oozie: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
},
location: "string",
securityProfile: {
aaddsResourceId: "string",
domainName: "string",
domainUserPassword: "string",
domainUsername: "string",
ldapsUrls: ["string"],
msiResourceId: "string",
clusterUsersGroupDns: ["string"],
},
storageAccountGen2: {
filesystemId: "string",
isDefault: false,
managedIdentityResourceId: "string",
storageResourceId: "string",
},
storageAccounts: [{
isDefault: false,
storageAccountKey: "string",
storageContainerId: "string",
storageResourceId: "string",
}],
tags: {
string: "string",
},
encryptionInTransitEnabled: false,
tlsMinVersion: "string",
});
type: azure:hdinsight:InteractiveQueryCluster
properties:
clusterVersion: string
componentVersion:
interactiveHive: string
encryptionInTransitEnabled: false
gateway:
password: string
username: string
location: string
metastores:
ambari:
databaseName: string
password: string
server: string
username: string
hive:
databaseName: string
password: string
server: string
username: string
oozie:
databaseName: string
password: string
server: string
username: string
monitor:
logAnalyticsWorkspaceId: string
primaryKey: string
name: string
network:
connectionDirection: string
privateLinkEnabled: false
resourceGroupName: string
roles:
headNode:
password: string
sshKeys:
- string
subnetId: string
username: string
virtualNetworkId: string
vmSize: string
workerNode:
autoscale:
capacity:
maxInstanceCount: 0
minInstanceCount: 0
recurrence:
schedules:
- days:
- string
targetInstanceCount: 0
time: string
timezone: string
password: string
sshKeys:
- string
subnetId: string
targetInstanceCount: 0
username: string
virtualNetworkId: string
vmSize: string
zookeeperNode:
password: string
sshKeys:
- string
subnetId: string
username: string
virtualNetworkId: string
vmSize: string
securityProfile:
aaddsResourceId: string
clusterUsersGroupDns:
- string
domainName: string
domainUserPassword: string
domainUsername: string
ldapsUrls:
- string
msiResourceId: string
storageAccountGen2:
filesystemId: string
isDefault: false
managedIdentityResourceId: string
storageResourceId: string
storageAccounts:
- isDefault: false
storageAccountKey: string
storageContainerId: string
storageResourceId: string
tags:
string: string
tier: string
tlsMinVersion: string
InteractiveQueryCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The InteractiveQueryCluster resource accepts the following input properties:
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - Gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - Tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - Monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - Name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- Network
Interactive
Query Cluster Network - A
networkblock as defined below. - Security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - Storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - Storage
Accounts List<InteractiveQuery Cluster Storage Account> - One or more
storage_accountblock as defined below. - Dictionary<string, string>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- Tls
Min stringVersion
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version InteractiveQuery Cluster Component Version Args - A
component_versionblock as defined below. - Gateway
Interactive
Query Cluster Gateway Args - A
gatewayblock as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Roles
Interactive
Query Cluster Roles Args - A
rolesblock as defined below. - Tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- Location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Interactive
Query Cluster Metastores Args - A
metastoresblock as defined below. - Monitor
Interactive
Query Cluster Monitor Args - A
monitorblock as defined below. - Name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- Network
Interactive
Query Cluster Network Args - A
networkblock as defined below. - Security
Profile InteractiveQuery Cluster Security Profile Args - A
security_profileblock as defined below. - Storage
Account InteractiveGen2 Query Cluster Storage Account Gen2Args - A
storage_account_gen2block as defined below. - Storage
Accounts []InteractiveQuery Cluster Storage Account Args - One or more
storage_accountblock as defined below. - map[string]string
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- Tls
Min stringVersion
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - tier String
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - name String
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network - A
networkblock as defined below. - security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - storage
Accounts List<InteractiveQuery Cluster Storage Account> - One or more
storage_accountblock as defined below. - Map<String,String>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tls
Min StringVersion
- cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - encryption
In booleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network - A
networkblock as defined below. - security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - storage
Accounts InteractiveQuery Cluster Storage Account[] - One or more
storage_accountblock as defined below. - {[key: string]: string}
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tls
Min stringVersion
- cluster_
version str - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component_
version InteractiveQuery Cluster Component Version Args - A
component_versionblock as defined below. - gateway
Interactive
Query Cluster Gateway Args - A
gatewayblock as defined below. - resource_
group_ strname - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles Args - A
rolesblock as defined below. - tier str
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - encryption_
in_ booltransit_ enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- location str
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores Args - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor Args - A
monitorblock as defined below. - name str
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network Args - A
networkblock as defined below. - security_
profile InteractiveQuery Cluster Security Profile Args - A
security_profileblock as defined below. - storage_
account_ Interactivegen2 Query Cluster Storage Account Gen2Args - A
storage_account_gen2block as defined below. - storage_
accounts Sequence[InteractiveQuery Cluster Storage Account Args] - One or more
storage_accountblock as defined below. - Mapping[str, str]
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tls_
min_ strversion
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version Property Map - A
component_versionblock as defined below. - gateway Property Map
- A
gatewayblock as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles Property Map
- A
rolesblock as defined below. - tier String
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- location String
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores Property Map
- A
metastoresblock as defined below. - monitor Property Map
- A
monitorblock as defined below. - name String
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network Property Map
- A
networkblock as defined below. - security
Profile Property Map - A
security_profileblock as defined below. - storage
Account Property MapGen2 - A
storage_account_gen2block as defined below. - storage
Accounts List<Property Map> - One or more
storage_accountblock as defined below. - Map<String>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tls
Min StringVersion
Outputs
All input properties are implicitly available as output properties. Additionally, the InteractiveQueryCluster resource produces the following output properties:
- Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- https_
endpoint str - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- ssh_
endpoint str - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
Look up Existing InteractiveQueryCluster Resource
Get an existing InteractiveQueryCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InteractiveQueryClusterState, opts?: CustomResourceOptions): InteractiveQueryCluster@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_version: Optional[str] = None,
component_version: Optional[InteractiveQueryClusterComponentVersionArgs] = None,
encryption_in_transit_enabled: Optional[bool] = None,
gateway: Optional[InteractiveQueryClusterGatewayArgs] = None,
https_endpoint: Optional[str] = None,
location: Optional[str] = None,
metastores: Optional[InteractiveQueryClusterMetastoresArgs] = None,
monitor: Optional[InteractiveQueryClusterMonitorArgs] = None,
name: Optional[str] = None,
network: Optional[InteractiveQueryClusterNetworkArgs] = None,
resource_group_name: Optional[str] = None,
roles: Optional[InteractiveQueryClusterRolesArgs] = None,
security_profile: Optional[InteractiveQueryClusterSecurityProfileArgs] = None,
ssh_endpoint: Optional[str] = None,
storage_account_gen2: Optional[InteractiveQueryClusterStorageAccountGen2Args] = None,
storage_accounts: Optional[Sequence[InteractiveQueryClusterStorageAccountArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tier: Optional[str] = None,
tls_min_version: Optional[str] = None) -> InteractiveQueryClusterfunc GetInteractiveQueryCluster(ctx *Context, name string, id IDInput, state *InteractiveQueryClusterState, opts ...ResourceOption) (*InteractiveQueryCluster, error)public static InteractiveQueryCluster Get(string name, Input<string> id, InteractiveQueryClusterState? state, CustomResourceOptions? opts = null)public static InteractiveQueryCluster get(String name, Output<String> id, InteractiveQueryClusterState state, CustomResourceOptions options)resources: _: type: azure:hdinsight:InteractiveQueryCluster get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- Gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - Monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - Name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- Network
Interactive
Query Cluster Network - A
networkblock as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - Security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - Storage
Accounts List<InteractiveQuery Cluster Storage Account> - One or more
storage_accountblock as defined below. - Dictionary<string, string>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- Tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - Tls
Min stringVersion
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version InteractiveQuery Cluster Component Version Args - A
component_versionblock as defined below. - Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- Gateway
Interactive
Query Cluster Gateway Args - A
gatewayblock as defined below. - Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Interactive
Query Cluster Metastores Args - A
metastoresblock as defined below. - Monitor
Interactive
Query Cluster Monitor Args - A
monitorblock as defined below. - Name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- Network
Interactive
Query Cluster Network Args - A
networkblock as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- Roles
Interactive
Query Cluster Roles Args - A
rolesblock as defined below. - Security
Profile InteractiveQuery Cluster Security Profile Args - A
security_profileblock as defined below. - Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- Storage
Account InteractiveGen2 Query Cluster Storage Account Gen2Args - A
storage_account_gen2block as defined below. - Storage
Accounts []InteractiveQuery Cluster Storage Account Args - One or more
storage_accountblock as defined below. - map[string]string
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- Tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - Tls
Min stringVersion
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- location String
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - name String
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network - A
networkblock as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - storage
Accounts List<InteractiveQuery Cluster Storage Account> - One or more
storage_accountblock as defined below. - Map<String,String>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tier String
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - tls
Min StringVersion
- cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version InteractiveQuery Cluster Component Version - A
component_versionblock as defined below. - encryption
In booleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- gateway
Interactive
Query Cluster Gateway - A
gatewayblock as defined below. - https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- location string
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor - A
monitorblock as defined below. - name string
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network - A
networkblock as defined below. - resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles - A
rolesblock as defined below. - security
Profile InteractiveQuery Cluster Security Profile - A
security_profileblock as defined below. - ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- storage
Account InteractiveGen2 Query Cluster Storage Account Gen2 - A
storage_account_gen2block as defined below. - storage
Accounts InteractiveQuery Cluster Storage Account[] - One or more
storage_accountblock as defined below. - {[key: string]: string}
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tier string
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - tls
Min stringVersion
- cluster_
version str - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component_
version InteractiveQuery Cluster Component Version Args - A
component_versionblock as defined below. - encryption_
in_ booltransit_ enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- gateway
Interactive
Query Cluster Gateway Args - A
gatewayblock as defined below. - https_
endpoint str - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- location str
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores
Interactive
Query Cluster Metastores Args - A
metastoresblock as defined below. - monitor
Interactive
Query Cluster Monitor Args - A
monitorblock as defined below. - name str
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network
Interactive
Query Cluster Network Args - A
networkblock as defined below. - resource_
group_ strname - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles
Interactive
Query Cluster Roles Args - A
rolesblock as defined below. - security_
profile InteractiveQuery Cluster Security Profile Args - A
security_profileblock as defined below. - ssh_
endpoint str - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- storage_
account_ Interactivegen2 Query Cluster Storage Account Gen2Args - A
storage_account_gen2block as defined below. - storage_
accounts Sequence[InteractiveQuery Cluster Storage Account Args] - One or more
storage_accountblock as defined below. - Mapping[str, str]
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tier str
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - tls_
min_ strversion
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version Property Map - A
component_versionblock as defined below. - encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this Cluster. Changing this forces a new resource to be created.
- gateway Property Map
- A
gatewayblock as defined below. - https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- location String
- Specifies the Azure Region which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- metastores Property Map
- A
metastoresblock as defined below. - monitor Property Map
- A
monitorblock as defined below. - name String
- Specifies the name for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
- network Property Map
- A
networkblock as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Interactive Query Cluster should exist. Changing this forces a new resource to be created.
- roles Property Map
- A
rolesblock as defined below. - security
Profile Property Map - A
security_profileblock as defined below. - ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Interactive Query Cluster.
- storage
Account Property MapGen2 - A
storage_account_gen2block as defined below. - storage
Accounts List<Property Map> - One or more
storage_accountblock as defined below. - Map<String>
- A map of Tags which should be assigned to this HDInsight Interactive Query Cluster.
- tier String
- Specifies the Tier which should be used for this HDInsight Interactive Query Cluster. Possible values are
StandardorPremium. Changing this forces a new resource to be created. - tls
Min StringVersion
Supporting Types
InteractiveQueryClusterComponentVersion, InteractiveQueryClusterComponentVersionArgs
- Interactive
Hive string
- Interactive
Hive string
- interactive
Hive String
- interactive
Hive string
- interactive_
hive str
- interactive
Hive String
InteractiveQueryClusterGateway, InteractiveQueryClusterGatewayArgs
InteractiveQueryClusterMetastores, InteractiveQueryClusterMetastoresArgs
- Ambari
Interactive
Query Cluster Metastores Ambari - An
ambariblock as defined below. - Hive
Interactive
Query Cluster Metastores Hive - A
hiveblock as defined below. - Oozie
Interactive
Query Cluster Metastores Oozie - An
oozieblock as defined below.
- Ambari
Interactive
Query Cluster Metastores Ambari - An
ambariblock as defined below. - Hive
Interactive
Query Cluster Metastores Hive - A
hiveblock as defined below. - Oozie
Interactive
Query Cluster Metastores Oozie - An
oozieblock as defined below.
- ambari
Interactive
Query Cluster Metastores Ambari - An
ambariblock as defined below. - hive
Interactive
Query Cluster Metastores Hive - A
hiveblock as defined below. - oozie
Interactive
Query Cluster Metastores Oozie - An
oozieblock as defined below.
- ambari
Interactive
Query Cluster Metastores Ambari - An
ambariblock as defined below. - hive
Interactive
Query Cluster Metastores Hive - A
hiveblock as defined below. - oozie
Interactive
Query Cluster Metastores Oozie - An
oozieblock as defined below.
- ambari
Interactive
Query Cluster Metastores Ambari - An
ambariblock as defined below. - hive
Interactive
Query Cluster Metastores Hive - A
hiveblock as defined below. - oozie
Interactive
Query Cluster Metastores Oozie - An
oozieblock as defined below.
- ambari Property Map
- An
ambariblock as defined below. - hive Property Map
- A
hiveblock as defined below. - oozie Property Map
- An
oozieblock as defined below.
InteractiveQueryClusterMetastoresAmbari, InteractiveQueryClusterMetastoresAmbariArgs
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- Username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- Username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username String
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username str
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username String
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
InteractiveQueryClusterMetastoresHive, InteractiveQueryClusterMetastoresHiveArgs
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- Username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- Username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username String
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username str
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username String
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
InteractiveQueryClusterMetastoresOozie, InteractiveQueryClusterMetastoresOozieArgs
- Database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- Username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- Username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username String
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username str
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username String
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
InteractiveQueryClusterMonitor, InteractiveQueryClusterMonitorArgs
- Log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- Primary
Key string - The Operations Management Suite (OMS) workspace key.
- Log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- Primary
Key string - The Operations Management Suite (OMS) workspace key.
- log
Analytics StringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key String - The Operations Management Suite (OMS) workspace key.
- log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key string - The Operations Management Suite (OMS) workspace key.
- log_
analytics_ strworkspace_ id - The Operations Management Suite (OMS) workspace ID.
- primary_
key str - The Operations Management Suite (OMS) workspace key.
- log
Analytics StringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key String - The Operations Management Suite (OMS) workspace key.
InteractiveQueryClusterNetwork, InteractiveQueryClusterNetworkArgs
- Connection
Direction string - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - Private
Link boolEnabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
- Connection
Direction string - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - Private
Link boolEnabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
- connection
Direction String - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - private
Link BooleanEnabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
- connection
Direction string - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - private
Link booleanEnabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
- connection_
direction str - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - private_
link_ boolenabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
- connection
Direction String - The direction of the resource provider connection. Possible values include
InboundorOutbound. Defaults toInbound. Changing this forces a new resource to be created. - private
Link BooleanEnabled - Is the private link enabled? Possible values include
TrueorFalse. Defaults toFalse. Changing this forces a new resource to be created.
InteractiveQueryClusterRoles, InteractiveQueryClusterRolesArgs
- Head
Node InteractiveQuery Cluster Roles Head Node - A
head_nodeblock as defined above. - Worker
Node InteractiveQuery Cluster Roles Worker Node - A
worker_nodeblock as defined below. - Zookeeper
Node InteractiveQuery Cluster Roles Zookeeper Node - A
zookeeper_nodeblock as defined below.
- Head
Node InteractiveQuery Cluster Roles Head Node - A
head_nodeblock as defined above. - Worker
Node InteractiveQuery Cluster Roles Worker Node - A
worker_nodeblock as defined below. - Zookeeper
Node InteractiveQuery Cluster Roles Zookeeper Node - A
zookeeper_nodeblock as defined below.
- head
Node InteractiveQuery Cluster Roles Head Node - A
head_nodeblock as defined above. - worker
Node InteractiveQuery Cluster Roles Worker Node - A
worker_nodeblock as defined below. - zookeeper
Node InteractiveQuery Cluster Roles Zookeeper Node - A
zookeeper_nodeblock as defined below.
- head
Node InteractiveQuery Cluster Roles Head Node - A
head_nodeblock as defined above. - worker
Node InteractiveQuery Cluster Roles Worker Node - A
worker_nodeblock as defined below. - zookeeper
Node InteractiveQuery Cluster Roles Zookeeper Node - A
zookeeper_nodeblock as defined below.
- head_
node InteractiveQuery Cluster Roles Head Node - A
head_nodeblock as defined above. - worker_
node InteractiveQuery Cluster Roles Worker Node - A
worker_nodeblock as defined below. - zookeeper_
node InteractiveQuery Cluster Roles Zookeeper Node - A
zookeeper_nodeblock as defined below.
- head
Node Property Map - A
head_nodeblock as defined above. - worker
Node Property Map - A
worker_nodeblock as defined below. - zookeeper
Node Property Map - A
zookeeper_nodeblock as defined below.
InteractiveQueryClusterRolesHeadNode, InteractiveQueryClusterRolesHeadNodeArgs
- Username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Ssh
Keys List<string> - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Ssh
Keys []string - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- password string
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- ssh
Keys string[] - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username str
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- password str
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- ssh_
keys Sequence[str] - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- subnet_
id str - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Head Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
InteractiveQueryClusterRolesWorkerNode, InteractiveQueryClusterRolesWorkerNodeArgs
- Target
Instance intCount - The number of instances which should be run for the Worker Nodes.
- Username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- Autoscale
Interactive
Query Cluster Roles Worker Node Autoscale - A
autoscaleblock as defined below. - Min
Instance intCount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Ssh
Keys List<string> - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Target
Instance intCount - The number of instances which should be run for the Worker Nodes.
- Username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- Autoscale
Interactive
Query Cluster Roles Worker Node Autoscale - A
autoscaleblock as defined below. - Min
Instance intCount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Ssh
Keys []string - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- target
Instance IntegerCount - The number of instances which should be run for the Worker Nodes.
- username String
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- autoscale
Interactive
Query Cluster Roles Worker Node Autoscale - A
autoscaleblock as defined below. - min
Instance IntegerCount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- target
Instance numberCount - The number of instances which should be run for the Worker Nodes.
- username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- autoscale
Interactive
Query Cluster Roles Worker Node Autoscale - A
autoscaleblock as defined below. - min
Instance numberCount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- password string
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- ssh
Keys string[] - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- target_
instance_ intcount - The number of instances which should be run for the Worker Nodes.
- username str
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- autoscale
Interactive
Query Cluster Roles Worker Node Autoscale - A
autoscaleblock as defined below. - min_
instance_ intcount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- password str
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- ssh_
keys Sequence[str] - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- subnet_
id str - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- target
Instance NumberCount - The number of instances which should be run for the Worker Nodes.
- username String
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Worker Nodes. Changing this forces a new resource to be created.
- autoscale Property Map
- A
autoscaleblock as defined below. - min
Instance NumberCount - The minimum number of instances which should be run for the Worker Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
InteractiveQueryClusterRolesWorkerNodeAutoscale, InteractiveQueryClusterRolesWorkerNodeAutoscaleArgs
- Capacity
Interactive
Query Cluster Roles Worker Node Autoscale Capacity - A
capacityblock as defined below. - Recurrence
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence - A
recurrenceblock as defined below.
- Capacity
Interactive
Query Cluster Roles Worker Node Autoscale Capacity - A
capacityblock as defined below. - Recurrence
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence - A
recurrenceblock as defined below.
- capacity
Interactive
Query Cluster Roles Worker Node Autoscale Capacity - A
capacityblock as defined below. - recurrence
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence - A
recurrenceblock as defined below.
- capacity
Interactive
Query Cluster Roles Worker Node Autoscale Capacity - A
capacityblock as defined below. - recurrence
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence - A
recurrenceblock as defined below.
- capacity
Interactive
Query Cluster Roles Worker Node Autoscale Capacity - A
capacityblock as defined below. - recurrence
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence - A
recurrenceblock as defined below.
- capacity Property Map
- A
capacityblock as defined below. - recurrence Property Map
- A
recurrenceblock as defined below.
InteractiveQueryClusterRolesWorkerNodeAutoscaleCapacity, InteractiveQueryClusterRolesWorkerNodeAutoscaleCapacityArgs
- Max
Instance intCount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- Min
Instance intCount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
- Max
Instance intCount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- Min
Instance intCount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
- max
Instance IntegerCount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- min
Instance IntegerCount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
- max
Instance numberCount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- min
Instance numberCount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
- max_
instance_ intcount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- min_
instance_ intcount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
- max
Instance NumberCount - The maximum number of worker nodes to autoscale to based on the cluster's activity.
- min
Instance NumberCount - The minimum number of worker nodes to autoscale to based on the cluster's activity.
InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrence, InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceArgs
- Schedules
List<Interactive
Query Cluster Roles Worker Node Autoscale Recurrence Schedule> - A list of
scheduleblocks as defined below. - Timezone string
- The time zone for the autoscale schedule times.
- Schedules
[]Interactive
Query Cluster Roles Worker Node Autoscale Recurrence Schedule - A list of
scheduleblocks as defined below. - Timezone string
- The time zone for the autoscale schedule times.
- schedules
List<Interactive
Query Cluster Roles Worker Node Autoscale Recurrence Schedule> - A list of
scheduleblocks as defined below. - timezone String
- The time zone for the autoscale schedule times.
- schedules
Interactive
Query Cluster Roles Worker Node Autoscale Recurrence Schedule[] - A list of
scheduleblocks as defined below. - timezone string
- The time zone for the autoscale schedule times.
- schedules
Sequence[Interactive
Query Cluster Roles Worker Node Autoscale Recurrence Schedule] - A list of
scheduleblocks as defined below. - timezone str
- The time zone for the autoscale schedule times.
- schedules List<Property Map>
- A list of
scheduleblocks as defined below. - timezone String
- The time zone for the autoscale schedule times.
InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceSchedule, InteractiveQueryClusterRolesWorkerNodeAutoscaleRecurrenceScheduleArgs
- Days List<string>
- The days of the week to perform autoscale.
- Target
Instance intCount - The number of worker nodes to autoscale at the specified time.
- Time string
- The time of day to perform the autoscale in 24hour format.
- Days []string
- The days of the week to perform autoscale.
- Target
Instance intCount - The number of worker nodes to autoscale at the specified time.
- Time string
- The time of day to perform the autoscale in 24hour format.
- days List<String>
- The days of the week to perform autoscale.
- target
Instance IntegerCount - The number of worker nodes to autoscale at the specified time.
- time String
- The time of day to perform the autoscale in 24hour format.
- days string[]
- The days of the week to perform autoscale.
- target
Instance numberCount - The number of worker nodes to autoscale at the specified time.
- time string
- The time of day to perform the autoscale in 24hour format.
- days Sequence[str]
- The days of the week to perform autoscale.
- target_
instance_ intcount - The number of worker nodes to autoscale at the specified time.
- time str
- The time of day to perform the autoscale in 24hour format.
- days List<String>
- The days of the week to perform autoscale.
- target
Instance NumberCount - The number of worker nodes to autoscale at the specified time.
- time String
- The time of day to perform the autoscale in 24hour format.
InteractiveQueryClusterRolesZookeeperNode, InteractiveQueryClusterRolesZookeeperNodeArgs
- Username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Ssh
Keys List<string> - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- Password string
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Ssh
Keys []string - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- password string
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- ssh
Keys string[] - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username str
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- password str
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- ssh_
keys Sequence[str] - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- subnet_
id str - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Changing this forces a new resource to be created.
- password String
- The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- ssh
Keys List<String> - A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
- subnet
Id String - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
InteractiveQueryClusterSecurityProfile, InteractiveQueryClusterSecurityProfileArgs
- Aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- Domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Ldaps
Urls List<string> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- Msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- Cluster
Users List<string>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- Aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- Domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Ldaps
Urls []string - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- Msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- Cluster
Users []stringGroup Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource StringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name String - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User StringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username String - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls List<String> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource StringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users List<String>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls string[] - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users string[]Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds_
resource_ strid - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain_
name str - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain_
user_ strpassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain_
username str - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps_
urls Sequence[str] - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi_
resource_ strid - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster_
users_ Sequence[str]group_ dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource StringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name String - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User StringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username String - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls List<String> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource StringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users List<String>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
InteractiveQueryClusterStorageAccount, InteractiveQueryClusterStorageAccountArgs
- Is
Default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- Storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- Storage
Container stringId - The ID of the Storage Container. Changing this forces a new resource to be created.
- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- Is
Default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- Storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- Storage
Container stringId - The ID of the Storage Container. Changing this forces a new resource to be created.
- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default Boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- storage
Account StringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container StringId - The ID of the Storage Container. Changing this forces a new resource to be created.
- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container stringId - The ID of the Storage Container. Changing this forces a new resource to be created.
- storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is_
default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- storage_
account_ strkey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage_
container_ strid - The ID of the Storage Container. Changing this forces a new resource to be created.
- storage_
resource_ strid - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default Boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- storage
Account StringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container StringId - The ID of the Storage Container. Changing this forces a new resource to be created.
- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
InteractiveQueryClusterStorageAccountGen2, InteractiveQueryClusterStorageAccountGen2Args
- Filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- Is
Default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- Managed
Identity stringResource Id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- Filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- Is
Default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- Managed
Identity stringResource Id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id String - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default Boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- managed
Identity StringResource Id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- managed
Identity stringResource Id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem_
id str - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is_
default bool - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- managed_
identity_ strresource_ id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- storage_
resource_ strid - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id String - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default Boolean - Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
- managed
Identity StringResource Id - The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
Import
HDInsight Interactive Query Clusters can be imported using the resource id, e.g.
$ pulumi import azure:hdinsight/interactiveQueryCluster:InteractiveQueryCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.HDInsight/clusters/cluster1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
