1. Packages
  2. Azure Classic
  3. API Docs
  4. hdinsight
  5. KafkaCluster

We recommend using Azure Native.

Azure Classic v5.69.0 published on Thursday, Mar 14, 2024 by Pulumi

azure.hdinsight.KafkaCluster

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.69.0 published on Thursday, Mar 14, 2024 by Pulumi

    Manages a HDInsight Kafka Cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleAccount = new azure.storage.Account("example", {
        name: "hdinsightstor",
        resourceGroupName: example.name,
        location: example.location,
        accountTier: "Standard",
        accountReplicationType: "LRS",
    });
    const exampleContainer = new azure.storage.Container("example", {
        name: "hdinsight",
        storageAccountName: exampleAccount.name,
        containerAccessType: "private",
    });
    const exampleKafkaCluster = new azure.hdinsight.KafkaCluster("example", {
        name: "example-hdicluster",
        resourceGroupName: example.name,
        location: example.location,
        clusterVersion: "4.0",
        tier: "Standard",
        componentVersion: {
            kafka: "2.1",
        },
        gateway: {
            username: "acctestusrgw",
            password: "Password123!",
        },
        storageAccounts: [{
            storageContainerId: exampleContainer.id,
            storageAccountKey: exampleAccount.primaryAccessKey,
            isDefault: true,
        }],
        roles: {
            headNode: {
                vmSize: "Standard_D3_V2",
                username: "acctestusrvm",
                password: "AccTestvdSC4daf986!",
            },
            workerNode: {
                vmSize: "Standard_D3_V2",
                username: "acctestusrvm",
                password: "AccTestvdSC4daf986!",
                numberOfDisksPerNode: 3,
                targetInstanceCount: 3,
            },
            zookeeperNode: {
                vmSize: "Standard_D3_V2",
                username: "acctestusrvm",
                password: "AccTestvdSC4daf986!",
            },
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_account = azure.storage.Account("example",
        name="hdinsightstor",
        resource_group_name=example.name,
        location=example.location,
        account_tier="Standard",
        account_replication_type="LRS")
    example_container = azure.storage.Container("example",
        name="hdinsight",
        storage_account_name=example_account.name,
        container_access_type="private")
    example_kafka_cluster = azure.hdinsight.KafkaCluster("example",
        name="example-hdicluster",
        resource_group_name=example.name,
        location=example.location,
        cluster_version="4.0",
        tier="Standard",
        component_version=azure.hdinsight.KafkaClusterComponentVersionArgs(
            kafka="2.1",
        ),
        gateway=azure.hdinsight.KafkaClusterGatewayArgs(
            username="acctestusrgw",
            password="Password123!",
        ),
        storage_accounts=[azure.hdinsight.KafkaClusterStorageAccountArgs(
            storage_container_id=example_container.id,
            storage_account_key=example_account.primary_access_key,
            is_default=True,
        )],
        roles=azure.hdinsight.KafkaClusterRolesArgs(
            head_node=azure.hdinsight.KafkaClusterRolesHeadNodeArgs(
                vm_size="Standard_D3_V2",
                username="acctestusrvm",
                password="AccTestvdSC4daf986!",
            ),
            worker_node=azure.hdinsight.KafkaClusterRolesWorkerNodeArgs(
                vm_size="Standard_D3_V2",
                username="acctestusrvm",
                password="AccTestvdSC4daf986!",
                number_of_disks_per_node=3,
                target_instance_count=3,
            ),
            zookeeper_node=azure.hdinsight.KafkaClusterRolesZookeeperNodeArgs(
                vm_size="Standard_D3_V2",
                username="acctestusrvm",
                password="AccTestvdSC4daf986!",
            ),
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/hdinsight"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
    			Name:                   pulumi.String("hdinsightstor"),
    			ResourceGroupName:      example.Name,
    			Location:               example.Location,
    			AccountTier:            pulumi.String("Standard"),
    			AccountReplicationType: pulumi.String("LRS"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleContainer, err := storage.NewContainer(ctx, "example", &storage.ContainerArgs{
    			Name:                pulumi.String("hdinsight"),
    			StorageAccountName:  exampleAccount.Name,
    			ContainerAccessType: pulumi.String("private"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = hdinsight.NewKafkaCluster(ctx, "example", &hdinsight.KafkaClusterArgs{
    			Name:              pulumi.String("example-hdicluster"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			ClusterVersion:    pulumi.String("4.0"),
    			Tier:              pulumi.String("Standard"),
    			ComponentVersion: &hdinsight.KafkaClusterComponentVersionArgs{
    				Kafka: pulumi.String("2.1"),
    			},
    			Gateway: &hdinsight.KafkaClusterGatewayArgs{
    				Username: pulumi.String("acctestusrgw"),
    				Password: pulumi.String("Password123!"),
    			},
    			StorageAccounts: hdinsight.KafkaClusterStorageAccountArray{
    				&hdinsight.KafkaClusterStorageAccountArgs{
    					StorageContainerId: exampleContainer.ID(),
    					StorageAccountKey:  exampleAccount.PrimaryAccessKey,
    					IsDefault:          pulumi.Bool(true),
    				},
    			},
    			Roles: &hdinsight.KafkaClusterRolesArgs{
    				HeadNode: &hdinsight.KafkaClusterRolesHeadNodeArgs{
    					VmSize:   pulumi.String("Standard_D3_V2"),
    					Username: pulumi.String("acctestusrvm"),
    					Password: pulumi.String("AccTestvdSC4daf986!"),
    				},
    				WorkerNode: &hdinsight.KafkaClusterRolesWorkerNodeArgs{
    					VmSize:               pulumi.String("Standard_D3_V2"),
    					Username:             pulumi.String("acctestusrvm"),
    					Password:             pulumi.String("AccTestvdSC4daf986!"),
    					NumberOfDisksPerNode: pulumi.Int(3),
    					TargetInstanceCount:  pulumi.Int(3),
    				},
    				ZookeeperNode: &hdinsight.KafkaClusterRolesZookeeperNodeArgs{
    					VmSize:   pulumi.String("Standard_D3_V2"),
    					Username: pulumi.String("acctestusrvm"),
    					Password: pulumi.String("AccTestvdSC4daf986!"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleAccount = new Azure.Storage.Account("example", new()
        {
            Name = "hdinsightstor",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
        });
    
        var exampleContainer = new Azure.Storage.Container("example", new()
        {
            Name = "hdinsight",
            StorageAccountName = exampleAccount.Name,
            ContainerAccessType = "private",
        });
    
        var exampleKafkaCluster = new Azure.HDInsight.KafkaCluster("example", new()
        {
            Name = "example-hdicluster",
            ResourceGroupName = example.Name,
            Location = example.Location,
            ClusterVersion = "4.0",
            Tier = "Standard",
            ComponentVersion = new Azure.HDInsight.Inputs.KafkaClusterComponentVersionArgs
            {
                Kafka = "2.1",
            },
            Gateway = new Azure.HDInsight.Inputs.KafkaClusterGatewayArgs
            {
                Username = "acctestusrgw",
                Password = "Password123!",
            },
            StorageAccounts = new[]
            {
                new Azure.HDInsight.Inputs.KafkaClusterStorageAccountArgs
                {
                    StorageContainerId = exampleContainer.Id,
                    StorageAccountKey = exampleAccount.PrimaryAccessKey,
                    IsDefault = true,
                },
            },
            Roles = new Azure.HDInsight.Inputs.KafkaClusterRolesArgs
            {
                HeadNode = new Azure.HDInsight.Inputs.KafkaClusterRolesHeadNodeArgs
                {
                    VmSize = "Standard_D3_V2",
                    Username = "acctestusrvm",
                    Password = "AccTestvdSC4daf986!",
                },
                WorkerNode = new Azure.HDInsight.Inputs.KafkaClusterRolesWorkerNodeArgs
                {
                    VmSize = "Standard_D3_V2",
                    Username = "acctestusrvm",
                    Password = "AccTestvdSC4daf986!",
                    NumberOfDisksPerNode = 3,
                    TargetInstanceCount = 3,
                },
                ZookeeperNode = new Azure.HDInsight.Inputs.KafkaClusterRolesZookeeperNodeArgs
                {
                    VmSize = "Standard_D3_V2",
                    Username = "acctestusrvm",
                    Password = "AccTestvdSC4daf986!",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.storage.Container;
    import com.pulumi.azure.storage.ContainerArgs;
    import com.pulumi.azure.hdinsight.KafkaCluster;
    import com.pulumi.azure.hdinsight.KafkaClusterArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterComponentVersionArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterGatewayArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterStorageAccountArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesHeadNodeArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesWorkerNodeArgs;
    import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesZookeeperNodeArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .name("hdinsightstor")
                .resourceGroupName(example.name())
                .location(example.location())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .build());
    
            var exampleContainer = new Container("exampleContainer", ContainerArgs.builder()        
                .name("hdinsight")
                .storageAccountName(exampleAccount.name())
                .containerAccessType("private")
                .build());
    
            var exampleKafkaCluster = new KafkaCluster("exampleKafkaCluster", KafkaClusterArgs.builder()        
                .name("example-hdicluster")
                .resourceGroupName(example.name())
                .location(example.location())
                .clusterVersion("4.0")
                .tier("Standard")
                .componentVersion(KafkaClusterComponentVersionArgs.builder()
                    .kafka("2.1")
                    .build())
                .gateway(KafkaClusterGatewayArgs.builder()
                    .username("acctestusrgw")
                    .password("Password123!")
                    .build())
                .storageAccounts(KafkaClusterStorageAccountArgs.builder()
                    .storageContainerId(exampleContainer.id())
                    .storageAccountKey(exampleAccount.primaryAccessKey())
                    .isDefault(true)
                    .build())
                .roles(KafkaClusterRolesArgs.builder()
                    .headNode(KafkaClusterRolesHeadNodeArgs.builder()
                        .vmSize("Standard_D3_V2")
                        .username("acctestusrvm")
                        .password("AccTestvdSC4daf986!")
                        .build())
                    .workerNode(KafkaClusterRolesWorkerNodeArgs.builder()
                        .vmSize("Standard_D3_V2")
                        .username("acctestusrvm")
                        .password("AccTestvdSC4daf986!")
                        .numberOfDisksPerNode(3)
                        .targetInstanceCount(3)
                        .build())
                    .zookeeperNode(KafkaClusterRolesZookeeperNodeArgs.builder()
                        .vmSize("Standard_D3_V2")
                        .username("acctestusrvm")
                        .password("AccTestvdSC4daf986!")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleAccount:
        type: azure:storage:Account
        name: example
        properties:
          name: hdinsightstor
          resourceGroupName: ${example.name}
          location: ${example.location}
          accountTier: Standard
          accountReplicationType: LRS
      exampleContainer:
        type: azure:storage:Container
        name: example
        properties:
          name: hdinsight
          storageAccountName: ${exampleAccount.name}
          containerAccessType: private
      exampleKafkaCluster:
        type: azure:hdinsight:KafkaCluster
        name: example
        properties:
          name: example-hdicluster
          resourceGroupName: ${example.name}
          location: ${example.location}
          clusterVersion: '4.0'
          tier: Standard
          componentVersion:
            kafka: '2.1'
          gateway:
            username: acctestusrgw
            password: Password123!
          storageAccounts:
            - storageContainerId: ${exampleContainer.id}
              storageAccountKey: ${exampleAccount.primaryAccessKey}
              isDefault: true
          roles:
            headNode:
              vmSize: Standard_D3_V2
              username: acctestusrvm
              password: AccTestvdSC4daf986!
            workerNode:
              vmSize: Standard_D3_V2
              username: acctestusrvm
              password: AccTestvdSC4daf986!
              numberOfDisksPerNode: 3
              targetInstanceCount: 3
            zookeeperNode:
              vmSize: Standard_D3_V2
              username: acctestusrvm
              password: AccTestvdSC4daf986!
    

    Create KafkaCluster Resource

    new KafkaCluster(name: string, args: KafkaClusterArgs, opts?: CustomResourceOptions);
    @overload
    def KafkaCluster(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     cluster_version: Optional[str] = None,
                     component_version: Optional[KafkaClusterComponentVersionArgs] = None,
                     compute_isolation: Optional[KafkaClusterComputeIsolationArgs] = None,
                     disk_encryptions: Optional[Sequence[KafkaClusterDiskEncryptionArgs]] = None,
                     encryption_in_transit_enabled: Optional[bool] = None,
                     extension: Optional[KafkaClusterExtensionArgs] = None,
                     gateway: Optional[KafkaClusterGatewayArgs] = None,
                     location: Optional[str] = None,
                     metastores: Optional[KafkaClusterMetastoresArgs] = None,
                     monitor: Optional[KafkaClusterMonitorArgs] = None,
                     name: Optional[str] = None,
                     network: Optional[KafkaClusterNetworkArgs] = None,
                     resource_group_name: Optional[str] = None,
                     rest_proxy: Optional[KafkaClusterRestProxyArgs] = None,
                     roles: Optional[KafkaClusterRolesArgs] = None,
                     security_profile: Optional[KafkaClusterSecurityProfileArgs] = None,
                     storage_account_gen2: Optional[KafkaClusterStorageAccountGen2Args] = None,
                     storage_accounts: Optional[Sequence[KafkaClusterStorageAccountArgs]] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     tier: Optional[str] = None,
                     tls_min_version: Optional[str] = None)
    @overload
    def KafkaCluster(resource_name: str,
                     args: KafkaClusterArgs,
                     opts: Optional[ResourceOptions] = None)
    func NewKafkaCluster(ctx *Context, name string, args KafkaClusterArgs, opts ...ResourceOption) (*KafkaCluster, error)
    public KafkaCluster(string name, KafkaClusterArgs args, CustomResourceOptions? opts = null)
    public KafkaCluster(String name, KafkaClusterArgs args)
    public KafkaCluster(String name, KafkaClusterArgs args, CustomResourceOptions options)
    
    type: azure:hdinsight:KafkaCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args KafkaClusterArgs
    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 KafkaClusterArgs
    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 KafkaClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KafkaClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KafkaClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    KafkaCluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The KafkaCluster resource accepts the following input properties:

    ClusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    ComponentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    Gateway KafkaClusterGateway
    A gateway block as defined below.
    ResourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    Tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    ComputeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    DiskEncryptions List<KafkaClusterDiskEncryption>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    EncryptionInTransitEnabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Extension KafkaClusterExtension
    An extension block as defined below.
    Location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Metastores KafkaClusterMetastores
    A metastores block as defined below.
    Monitor KafkaClusterMonitor
    A monitor block as defined below.
    Name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Network KafkaClusterNetwork
    A network block as defined below.
    RestProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    SecurityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    StorageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    StorageAccounts List<KafkaClusterStorageAccount>
    One or more storage_account block as defined below.
    Tags Dictionary<string, string>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    TlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    ClusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    ComponentVersion KafkaClusterComponentVersionArgs
    A component_version block as defined below.
    Gateway KafkaClusterGatewayArgs
    A gateway block as defined below.
    ResourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Roles KafkaClusterRolesArgs
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    Tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    ComputeIsolation KafkaClusterComputeIsolationArgs
    A compute_isolation block as defined below.
    DiskEncryptions []KafkaClusterDiskEncryptionArgs

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    EncryptionInTransitEnabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Extension KafkaClusterExtensionArgs
    An extension block as defined below.
    Location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Metastores KafkaClusterMetastoresArgs
    A metastores block as defined below.
    Monitor KafkaClusterMonitorArgs
    A monitor block as defined below.
    Name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Network KafkaClusterNetworkArgs
    A network block as defined below.
    RestProxy KafkaClusterRestProxyArgs
    A rest_proxy block as defined below.
    SecurityProfile KafkaClusterSecurityProfileArgs
    A security_profile block as defined below. Changing this forces a new resource to be created.
    StorageAccountGen2 KafkaClusterStorageAccountGen2Args
    A storage_account_gen2 block as defined below.
    StorageAccounts []KafkaClusterStorageAccountArgs
    One or more storage_account block as defined below.
    Tags map[string]string
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    TlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion String
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    gateway KafkaClusterGateway
    A gateway block as defined below.
    resourceGroupName String
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    tier String
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    computeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    diskEncryptions List<KafkaClusterDiskEncryption>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled Boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtension
    An extension block as defined below.
    location String
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastores
    A metastores block as defined below.
    monitor KafkaClusterMonitor
    A monitor block as defined below.
    name String
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetwork
    A network block as defined below.
    restProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    securityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    storageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    storageAccounts List<KafkaClusterStorageAccount>
    One or more storage_account block as defined below.
    tags Map<String,String>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tlsMinVersion String
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    gateway KafkaClusterGateway
    A gateway block as defined below.
    resourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    computeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    diskEncryptions KafkaClusterDiskEncryption[]

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtension
    An extension block as defined below.
    location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastores
    A metastores block as defined below.
    monitor KafkaClusterMonitor
    A monitor block as defined below.
    name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetwork
    A network block as defined below.
    restProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    securityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    storageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    storageAccounts KafkaClusterStorageAccount[]
    One or more storage_account block as defined below.
    tags {[key: string]: string}
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    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 KafkaClusterComponentVersionArgs
    A component_version block as defined below.
    gateway KafkaClusterGatewayArgs
    A gateway block as defined below.
    resource_group_name str
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    roles KafkaClusterRolesArgs
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    tier str
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    compute_isolation KafkaClusterComputeIsolationArgs
    A compute_isolation block as defined below.
    disk_encryptions Sequence[KafkaClusterDiskEncryptionArgs]

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryption_in_transit_enabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtensionArgs
    An extension block as defined below.
    location str
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastoresArgs
    A metastores block as defined below.
    monitor KafkaClusterMonitorArgs
    A monitor block as defined below.
    name str
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetworkArgs
    A network block as defined below.
    rest_proxy KafkaClusterRestProxyArgs
    A rest_proxy block as defined below.
    security_profile KafkaClusterSecurityProfileArgs
    A security_profile block as defined below. Changing this forces a new resource to be created.
    storage_account_gen2 KafkaClusterStorageAccountGen2Args
    A storage_account_gen2 block as defined below.
    storage_accounts Sequence[KafkaClusterStorageAccountArgs]
    One or more storage_account block as defined below.
    tags Mapping[str, str]
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tls_min_version str
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion String
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion Property Map
    A component_version block as defined below.
    gateway Property Map
    A gateway block as defined below.
    resourceGroupName String
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    roles Property Map
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    tier String
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    computeIsolation Property Map
    A compute_isolation block as defined below.
    diskEncryptions List<Property Map>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled Boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension Property Map
    An extension block as defined below.
    location String
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores Property Map
    A metastores block as defined below.
    monitor Property Map
    A monitor block as defined below.
    name String
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network Property Map
    A network block as defined below.
    restProxy Property Map
    A rest_proxy block as defined below.
    securityProfile Property Map
    A security_profile block as defined below. Changing this forces a new resource to be created.
    storageAccountGen2 Property Map
    A storage_account_gen2 block as defined below.
    storageAccounts List<Property Map>
    One or more storage_account block as defined below.
    tags Map<String>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tlsMinVersion String
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KafkaCluster resource produces the following output properties:

    HttpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    KafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    SshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    HttpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    KafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    SshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    httpsEndpoint String
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    kafkaRestProxyEndpoint String
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    sshEndpoint String
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    httpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    kafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    sshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    https_endpoint str
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    kafka_rest_proxy_endpoint str
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    ssh_endpoint str
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    httpsEndpoint String
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    kafkaRestProxyEndpoint String
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    sshEndpoint String
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.

    Look up Existing KafkaCluster Resource

    Get an existing KafkaCluster 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?: KafkaClusterState, opts?: CustomResourceOptions): KafkaCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_version: Optional[str] = None,
            component_version: Optional[KafkaClusterComponentVersionArgs] = None,
            compute_isolation: Optional[KafkaClusterComputeIsolationArgs] = None,
            disk_encryptions: Optional[Sequence[KafkaClusterDiskEncryptionArgs]] = None,
            encryption_in_transit_enabled: Optional[bool] = None,
            extension: Optional[KafkaClusterExtensionArgs] = None,
            gateway: Optional[KafkaClusterGatewayArgs] = None,
            https_endpoint: Optional[str] = None,
            kafka_rest_proxy_endpoint: Optional[str] = None,
            location: Optional[str] = None,
            metastores: Optional[KafkaClusterMetastoresArgs] = None,
            monitor: Optional[KafkaClusterMonitorArgs] = None,
            name: Optional[str] = None,
            network: Optional[KafkaClusterNetworkArgs] = None,
            resource_group_name: Optional[str] = None,
            rest_proxy: Optional[KafkaClusterRestProxyArgs] = None,
            roles: Optional[KafkaClusterRolesArgs] = None,
            security_profile: Optional[KafkaClusterSecurityProfileArgs] = None,
            ssh_endpoint: Optional[str] = None,
            storage_account_gen2: Optional[KafkaClusterStorageAccountGen2Args] = None,
            storage_accounts: Optional[Sequence[KafkaClusterStorageAccountArgs]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tier: Optional[str] = None,
            tls_min_version: Optional[str] = None) -> KafkaCluster
    func GetKafkaCluster(ctx *Context, name string, id IDInput, state *KafkaClusterState, opts ...ResourceOption) (*KafkaCluster, error)
    public static KafkaCluster Get(string name, Input<string> id, KafkaClusterState? state, CustomResourceOptions? opts = null)
    public static KafkaCluster get(String name, Output<String> id, KafkaClusterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    ClusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    ComponentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    ComputeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    DiskEncryptions List<KafkaClusterDiskEncryption>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    EncryptionInTransitEnabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Extension KafkaClusterExtension
    An extension block as defined below.
    Gateway KafkaClusterGateway
    A gateway block as defined below.
    HttpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    KafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    Location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Metastores KafkaClusterMetastores
    A metastores block as defined below.
    Monitor KafkaClusterMonitor
    A monitor block as defined below.
    Name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Network KafkaClusterNetwork
    A network block as defined below.
    ResourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    RestProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    Roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    SecurityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    SshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    StorageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    StorageAccounts List<KafkaClusterStorageAccount>
    One or more storage_account block as defined below.
    Tags Dictionary<string, string>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    Tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    TlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    ClusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    ComponentVersion KafkaClusterComponentVersionArgs
    A component_version block as defined below.
    ComputeIsolation KafkaClusterComputeIsolationArgs
    A compute_isolation block as defined below.
    DiskEncryptions []KafkaClusterDiskEncryptionArgs

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    EncryptionInTransitEnabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Extension KafkaClusterExtensionArgs
    An extension block as defined below.
    Gateway KafkaClusterGatewayArgs
    A gateway block as defined below.
    HttpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    KafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    Location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    Metastores KafkaClusterMetastoresArgs
    A metastores block as defined below.
    Monitor KafkaClusterMonitorArgs
    A monitor block as defined below.
    Name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Network KafkaClusterNetworkArgs
    A network block as defined below.
    ResourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    RestProxy KafkaClusterRestProxyArgs
    A rest_proxy block as defined below.
    Roles KafkaClusterRolesArgs
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    SecurityProfile KafkaClusterSecurityProfileArgs
    A security_profile block as defined below. Changing this forces a new resource to be created.
    SshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    StorageAccountGen2 KafkaClusterStorageAccountGen2Args
    A storage_account_gen2 block as defined below.
    StorageAccounts []KafkaClusterStorageAccountArgs
    One or more storage_account block as defined below.
    Tags map[string]string
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    Tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    TlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion String
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    computeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    diskEncryptions List<KafkaClusterDiskEncryption>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled Boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtension
    An extension block as defined below.
    gateway KafkaClusterGateway
    A gateway block as defined below.
    httpsEndpoint String
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    kafkaRestProxyEndpoint String
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    location String
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastores
    A metastores block as defined below.
    monitor KafkaClusterMonitor
    A monitor block as defined below.
    name String
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetwork
    A network block as defined below.
    resourceGroupName String
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    restProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    securityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    sshEndpoint String
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    storageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    storageAccounts List<KafkaClusterStorageAccount>
    One or more storage_account block as defined below.
    tags Map<String,String>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tier String
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    tlsMinVersion String
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion string
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion KafkaClusterComponentVersion
    A component_version block as defined below.
    computeIsolation KafkaClusterComputeIsolation
    A compute_isolation block as defined below.
    diskEncryptions KafkaClusterDiskEncryption[]

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtension
    An extension block as defined below.
    gateway KafkaClusterGateway
    A gateway block as defined below.
    httpsEndpoint string
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    kafkaRestProxyEndpoint string
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    location string
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastores
    A metastores block as defined below.
    monitor KafkaClusterMonitor
    A monitor block as defined below.
    name string
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetwork
    A network block as defined below.
    resourceGroupName string
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    restProxy KafkaClusterRestProxy
    A rest_proxy block as defined below.
    roles KafkaClusterRoles
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    securityProfile KafkaClusterSecurityProfile
    A security_profile block as defined below. Changing this forces a new resource to be created.
    sshEndpoint string
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    storageAccountGen2 KafkaClusterStorageAccountGen2
    A storage_account_gen2 block as defined below.
    storageAccounts KafkaClusterStorageAccount[]
    One or more storage_account block as defined below.
    tags {[key: string]: string}
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tier string
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    tlsMinVersion string
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    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 KafkaClusterComponentVersionArgs
    A component_version block as defined below.
    compute_isolation KafkaClusterComputeIsolationArgs
    A compute_isolation block as defined below.
    disk_encryptions Sequence[KafkaClusterDiskEncryptionArgs]

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryption_in_transit_enabled bool
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension KafkaClusterExtensionArgs
    An extension block as defined below.
    gateway KafkaClusterGatewayArgs
    A gateway block as defined below.
    https_endpoint str
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    kafka_rest_proxy_endpoint str
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    location str
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores KafkaClusterMetastoresArgs
    A metastores block as defined below.
    monitor KafkaClusterMonitorArgs
    A monitor block as defined below.
    name str
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network KafkaClusterNetworkArgs
    A network block as defined below.
    resource_group_name str
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    rest_proxy KafkaClusterRestProxyArgs
    A rest_proxy block as defined below.
    roles KafkaClusterRolesArgs
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    security_profile KafkaClusterSecurityProfileArgs
    A security_profile block as defined below. Changing this forces a new resource to be created.
    ssh_endpoint str
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    storage_account_gen2 KafkaClusterStorageAccountGen2Args
    A storage_account_gen2 block as defined below.
    storage_accounts Sequence[KafkaClusterStorageAccountArgs]
    One or more storage_account block as defined below.
    tags Mapping[str, str]
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tier str
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    tls_min_version str
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
    clusterVersion String
    Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
    componentVersion Property Map
    A component_version block as defined below.
    computeIsolation Property Map
    A compute_isolation block as defined below.
    diskEncryptions List<Property Map>

    One or more disk_encryption block as defined below.

    NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.

    encryptionInTransitEnabled Boolean
    Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    extension Property Map
    An extension block as defined below.
    gateway Property Map
    A gateway block as defined below.
    httpsEndpoint String
    The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
    kafkaRestProxyEndpoint String
    The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
    location String
    Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    metastores Property Map
    A metastores block as defined below.
    monitor Property Map
    A monitor block as defined below.
    name String
    Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    network Property Map
    A network block as defined below.
    resourceGroupName String
    Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
    restProxy Property Map
    A rest_proxy block as defined below.
    roles Property Map
    A roles block as defined below.

    Deprecated:kafka_management_node will be removed in version 4.0 of the AzureRM Provider since it no longer support configurations from the user

    securityProfile Property Map
    A security_profile block as defined below. Changing this forces a new resource to be created.
    sshEndpoint String
    The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
    storageAccountGen2 Property Map
    A storage_account_gen2 block as defined below.
    storageAccounts List<Property Map>
    One or more storage_account block as defined below.
    tags Map<String>
    A map of Tags which should be assigned to this HDInsight Kafka Cluster.
    tier String
    Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are Standard or Premium. Changing this forces a new resource to be created.
    tlsMinVersion String
    The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.

    Supporting Types

    KafkaClusterComponentVersion, KafkaClusterComponentVersionArgs

    Kafka string
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    Kafka string
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    kafka String
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    kafka string
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    kafka str
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
    kafka String
    The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.

    KafkaClusterComputeIsolation, KafkaClusterComputeIsolationArgs

    ComputeIsolationEnabled bool
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    HostSku string
    The name of the host SKU.
    ComputeIsolationEnabled bool
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    HostSku string
    The name of the host SKU.
    computeIsolationEnabled Boolean
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    hostSku String
    The name of the host SKU.
    computeIsolationEnabled boolean
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    hostSku string
    The name of the host SKU.
    compute_isolation_enabled bool
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    host_sku str
    The name of the host SKU.
    computeIsolationEnabled Boolean
    This field indicates whether enable compute isolation or not. Possible values are true or false.
    hostSku String
    The name of the host SKU.

    KafkaClusterDiskEncryption, KafkaClusterDiskEncryptionArgs

    EncryptionAlgorithm string
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    EncryptionAtHostEnabled bool
    This is indicator to show whether resource disk encryption is enabled.
    KeyVaultKeyId string
    The ID of the key vault key.
    KeyVaultManagedIdentityId string
    This is the resource ID of Managed Identity used to access the key vault.
    EncryptionAlgorithm string
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    EncryptionAtHostEnabled bool
    This is indicator to show whether resource disk encryption is enabled.
    KeyVaultKeyId string
    The ID of the key vault key.
    KeyVaultManagedIdentityId string
    This is the resource ID of Managed Identity used to access the key vault.
    encryptionAlgorithm String
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    encryptionAtHostEnabled Boolean
    This is indicator to show whether resource disk encryption is enabled.
    keyVaultKeyId String
    The ID of the key vault key.
    keyVaultManagedIdentityId String
    This is the resource ID of Managed Identity used to access the key vault.
    encryptionAlgorithm string
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    encryptionAtHostEnabled boolean
    This is indicator to show whether resource disk encryption is enabled.
    keyVaultKeyId string
    The ID of the key vault key.
    keyVaultManagedIdentityId string
    This is the resource ID of Managed Identity used to access the key vault.
    encryption_algorithm str
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    encryption_at_host_enabled bool
    This is indicator to show whether resource disk encryption is enabled.
    key_vault_key_id str
    The ID of the key vault key.
    key_vault_managed_identity_id str
    This is the resource ID of Managed Identity used to access the key vault.
    encryptionAlgorithm String
    This is an algorithm identifier for encryption. Possible values are RSA1_5, RSA-OAEP, RSA-OAEP-256.
    encryptionAtHostEnabled Boolean
    This is indicator to show whether resource disk encryption is enabled.
    keyVaultKeyId String
    The ID of the key vault key.
    keyVaultManagedIdentityId String
    This is the resource ID of Managed Identity used to access the key vault.

    KafkaClusterExtension, KafkaClusterExtensionArgs

    LogAnalyticsWorkspaceId string
    The workspace ID of the log analytics extension.
    PrimaryKey string
    The workspace key of the log analytics extension.
    LogAnalyticsWorkspaceId string
    The workspace ID of the log analytics extension.
    PrimaryKey string
    The workspace key of the log analytics extension.
    logAnalyticsWorkspaceId String
    The workspace ID of the log analytics extension.
    primaryKey String
    The workspace key of the log analytics extension.
    logAnalyticsWorkspaceId string
    The workspace ID of the log analytics extension.
    primaryKey string
    The workspace key of the log analytics extension.
    log_analytics_workspace_id str
    The workspace ID of the log analytics extension.
    primary_key str
    The workspace key of the log analytics extension.
    logAnalyticsWorkspaceId String
    The workspace ID of the log analytics extension.
    primaryKey String
    The workspace key of the log analytics extension.

    KafkaClusterGateway, KafkaClusterGatewayArgs

    Password string

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    Username string
    The username used for the Ambari Portal. Changing this forces a new resource to be created.
    Password string

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    Username string
    The username used for the Ambari Portal. Changing this forces a new resource to be created.
    password String

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    username String
    The username used for the Ambari Portal. Changing this forces a new resource to be created.
    password string

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    username string
    The username used for the Ambari Portal. Changing this forces a new resource to be created.
    password str

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    username str
    The username used for the Ambari Portal. Changing this forces a new resource to be created.
    password String

    The password used for the Ambari Portal.

    NOTE: This password must be different from the one used for the head_node, worker_node and zookeeper_node roles.

    username String
    The username used for the Ambari Portal. Changing this forces a new resource to be created.

    KafkaClusterMetastores, KafkaClusterMetastoresArgs

    Ambari KafkaClusterMetastoresAmbari
    An ambari block as defined below.
    Hive KafkaClusterMetastoresHive
    A hive block as defined below.
    Oozie KafkaClusterMetastoresOozie
    An oozie block as defined below.
    Ambari KafkaClusterMetastoresAmbari
    An ambari block as defined below.
    Hive KafkaClusterMetastoresHive
    A hive block as defined below.
    Oozie KafkaClusterMetastoresOozie
    An oozie block as defined below.
    ambari KafkaClusterMetastoresAmbari
    An ambari block as defined below.
    hive KafkaClusterMetastoresHive
    A hive block as defined below.
    oozie KafkaClusterMetastoresOozie
    An oozie block as defined below.
    ambari KafkaClusterMetastoresAmbari
    An ambari block as defined below.
    hive KafkaClusterMetastoresHive
    A hive block as defined below.
    oozie KafkaClusterMetastoresOozie
    An oozie block as defined below.
    ambari KafkaClusterMetastoresAmbari
    An ambari block as defined below.
    hive KafkaClusterMetastoresHive
    A hive block as defined below.
    oozie KafkaClusterMetastoresOozie
    An oozie block as defined below.
    ambari Property Map
    An ambari block as defined below.
    hive Property Map
    A hive block as defined below.
    oozie Property Map
    An oozie block as defined below.

    KafkaClusterMetastoresAmbari, KafkaClusterMetastoresAmbariArgs

    DatabaseName 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.
    DatabaseName 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.
    databaseName 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.
    databaseName 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.
    databaseName 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.

    KafkaClusterMetastoresHive, KafkaClusterMetastoresHiveArgs

    DatabaseName 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.
    DatabaseName 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.
    databaseName 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.
    databaseName 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.
    databaseName 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.

    KafkaClusterMetastoresOozie, KafkaClusterMetastoresOozieArgs

    DatabaseName 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.
    DatabaseName 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.
    databaseName 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.
    databaseName 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.
    databaseName 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.

    KafkaClusterMonitor, KafkaClusterMonitorArgs

    LogAnalyticsWorkspaceId string
    The Operations Management Suite (OMS) workspace ID.
    PrimaryKey string
    The Operations Management Suite (OMS) workspace key.
    LogAnalyticsWorkspaceId string
    The Operations Management Suite (OMS) workspace ID.
    PrimaryKey string
    The Operations Management Suite (OMS) workspace key.
    logAnalyticsWorkspaceId String
    The Operations Management Suite (OMS) workspace ID.
    primaryKey String
    The Operations Management Suite (OMS) workspace key.
    logAnalyticsWorkspaceId string
    The Operations Management Suite (OMS) workspace ID.
    primaryKey string
    The Operations Management Suite (OMS) workspace key.
    log_analytics_workspace_id str
    The Operations Management Suite (OMS) workspace ID.
    primary_key str
    The Operations Management Suite (OMS) workspace key.
    logAnalyticsWorkspaceId String
    The Operations Management Suite (OMS) workspace ID.
    primaryKey String
    The Operations Management Suite (OMS) workspace key.

    KafkaClusterNetwork, KafkaClusterNetworkArgs

    ConnectionDirection string

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    PrivateLinkEnabled bool
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.
    ConnectionDirection string

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    PrivateLinkEnabled bool
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.
    connectionDirection String

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    privateLinkEnabled Boolean
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.
    connectionDirection string

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    privateLinkEnabled boolean
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.
    connection_direction str

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    private_link_enabled bool
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.
    connectionDirection String

    The direction of the resource provider connection. Possible values include Inbound or Outbound. Defaults to Inbound. Changing this forces a new resource to be created.

    NOTE: To enabled the private link the connection_direction must be set to Outbound.

    privateLinkEnabled Boolean
    Is the private link enabled? Possible values include true or false. Defaults to false. Changing this forces a new resource to be created.

    KafkaClusterRestProxy, KafkaClusterRestProxyArgs

    SecurityGroupId string
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    SecurityGroupName string

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    SecurityGroupId string
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    SecurityGroupName string

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    securityGroupId String
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    securityGroupName String

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    securityGroupId string
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    securityGroupName string

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    security_group_id str
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    security_group_name str

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    securityGroupId String
    The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
    securityGroupName String

    The Azure Active Directory Security Group name. Changing this forces a new resource to be created.

    Note: The security_group_name property will be Required in version 3.0 of the AzureRM Provider.

    KafkaClusterRoles, KafkaClusterRolesArgs

    HeadNode KafkaClusterRolesHeadNode
    A head_node block as defined above.
    WorkerNode KafkaClusterRolesWorkerNode
    A worker_node block as defined below.
    ZookeeperNode KafkaClusterRolesZookeeperNode
    A zookeeper_node block as defined below.
    KafkaManagementNode KafkaClusterRolesKafkaManagementNode

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    HeadNode KafkaClusterRolesHeadNode
    A head_node block as defined above.
    WorkerNode KafkaClusterRolesWorkerNode
    A worker_node block as defined below.
    ZookeeperNode KafkaClusterRolesZookeeperNode
    A zookeeper_node block as defined below.
    KafkaManagementNode KafkaClusterRolesKafkaManagementNode

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    headNode KafkaClusterRolesHeadNode
    A head_node block as defined above.
    workerNode KafkaClusterRolesWorkerNode
    A worker_node block as defined below.
    zookeeperNode KafkaClusterRolesZookeeperNode
    A zookeeper_node block as defined below.
    kafkaManagementNode KafkaClusterRolesKafkaManagementNode

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    headNode KafkaClusterRolesHeadNode
    A head_node block as defined above.
    workerNode KafkaClusterRolesWorkerNode
    A worker_node block as defined below.
    zookeeperNode KafkaClusterRolesZookeeperNode
    A zookeeper_node block as defined below.
    kafkaManagementNode KafkaClusterRolesKafkaManagementNode

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    head_node KafkaClusterRolesHeadNode
    A head_node block as defined above.
    worker_node KafkaClusterRolesWorkerNode
    A worker_node block as defined below.
    zookeeper_node KafkaClusterRolesZookeeperNode
    A zookeeper_node block as defined below.
    kafka_management_node KafkaClusterRolesKafkaManagementNode

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    headNode Property Map
    A head_node block as defined above.
    workerNode Property Map
    A worker_node block as defined below.
    zookeeperNode Property Map
    A zookeeper_node block as defined below.
    kafkaManagementNode Property Map

    A kafka_management_node block as defined below.

    Note: This property has been deprecated and will be removed in version 4.0.

    KafkaClusterRolesHeadNode, KafkaClusterRolesHeadNodeArgs

    Username string
    The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
    VmSize string
    The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions List<KafkaClusterRolesHeadNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    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.
    VmSize string
    The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions []KafkaClusterRolesHeadNodeScriptAction
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys []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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<KafkaClusterRolesHeadNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    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.
    vmSize string
    The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions KafkaClusterRolesHeadNodeScriptAction[]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId string
    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. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    script_actions Sequence[KafkaClusterRolesHeadNodeScriptAction]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    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_id str
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<Property Map>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.

    KafkaClusterRolesHeadNodeScriptAction, KafkaClusterRolesHeadNodeScriptActionArgs

    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.
    name string
    The name of the script action.
    uri string
    The URI to the script.
    parameters string
    The parameters for the script provided.
    name str
    The name of the script action.
    uri str
    The URI to the script.
    parameters str
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.

    KafkaClusterRolesKafkaManagementNode, KafkaClusterRolesKafkaManagementNodeArgs

    Username string
    The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
    VmSize string
    The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    Password string

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions List<KafkaClusterRolesKafkaManagementNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys List<string>

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId string
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    VirtualNetworkId string
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    Username string
    The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
    VmSize string
    The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    Password string

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions []KafkaClusterRolesKafkaManagementNodeScriptAction
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys []string

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId string
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    VirtualNetworkId string
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    username String
    The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
    vmSize String
    The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    password String

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<KafkaClusterRolesKafkaManagementNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys List<String>

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId String
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    virtualNetworkId String
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    username string
    The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
    vmSize string
    The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    password string

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions KafkaClusterRolesKafkaManagementNodeScriptAction[]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys string[]

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId string
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    virtualNetworkId string
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    username str
    The Username of the local administrator for the Kafka Management 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 Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    password str

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    script_actions Sequence[KafkaClusterRolesKafkaManagementNodeScriptAction]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    ssh_keys Sequence[str]

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnet_id str
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    virtual_network_id str
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    username String
    The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
    vmSize String
    The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. Changing this forces a new resource to be created.
    password String

    The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<Property Map>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys List<String>

    A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId String
    The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
    virtualNetworkId String
    The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.

    KafkaClusterRolesKafkaManagementNodeScriptAction, KafkaClusterRolesKafkaManagementNodeScriptActionArgs

    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.
    name string
    The name of the script action.
    uri string
    The URI to the script.
    parameters string
    The parameters for the script provided.
    name str
    The name of the script action.
    uri str
    The URI to the script.
    parameters str
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.

    KafkaClusterRolesWorkerNode, KafkaClusterRolesWorkerNodeArgs

    NumberOfDisksPerNode int
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    TargetInstanceCount int
    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.
    VmSize string
    The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions List<KafkaClusterRolesWorkerNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
    NumberOfDisksPerNode int
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    TargetInstanceCount int
    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.
    VmSize string
    The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions []KafkaClusterRolesWorkerNodeScriptAction
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys []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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
    numberOfDisksPerNode Integer
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    targetInstanceCount Integer
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<KafkaClusterRolesWorkerNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
    numberOfDisksPerNode number
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    targetInstanceCount number
    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.
    vmSize string
    The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions KafkaClusterRolesWorkerNodeScriptAction[]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId string
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
    number_of_disks_per_node int
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    target_instance_count int
    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. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    script_actions Sequence[KafkaClusterRolesWorkerNodeScriptAction]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    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_id str
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
    numberOfDisksPerNode Number
    The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
    targetInstanceCount Number
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<Property Map>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.

    KafkaClusterRolesWorkerNodeScriptAction, KafkaClusterRolesWorkerNodeScriptActionArgs

    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.
    name string
    The name of the script action.
    uri string
    The URI to the script.
    parameters string
    The parameters for the script provided.
    name str
    The name of the script action.
    uri str
    The URI to the script.
    parameters str
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.

    KafkaClusterRolesZookeeperNode, KafkaClusterRolesZookeeperNodeArgs

    Username string
    The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
    VmSize string
    The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions List<KafkaClusterRolesZookeeperNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    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.
    VmSize string
    The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    ScriptActions []KafkaClusterRolesZookeeperNodeScriptAction
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    SshKeys []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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    SubnetId 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.
    VirtualNetworkId string
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<KafkaClusterRolesZookeeperNodeScriptAction>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    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.
    vmSize string
    The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions KafkaClusterRolesZookeeperNodeScriptAction[]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId string
    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. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    script_actions Sequence[KafkaClusterRolesZookeeperNodeScriptAction]
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    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_id str
    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.
    vmSize String
    The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are ExtraSmall, Small, Medium, Large, ExtraLarge, A5, A6, A7, A8, A9, A10, A11, Standard_A1_V2, Standard_A2_V2, Standard_A2m_V2, Standard_A3, Standard_A4_V2, Standard_A4m_V2, Standard_A8_V2, Standard_A8m_V2, Standard_D1, Standard_D2, Standard_D3, Standard_D4, Standard_D11, Standard_D12, Standard_D13, Standard_D14, Standard_D1_V2, Standard_D2_V2, Standard_D3_V2, Standard_D4_V2, Standard_D5_V2, Standard_D11_V2, Standard_D12_V2, Standard_D13_V2, Standard_D14_V2, Standard_DS1_V2, Standard_DS2_V2, Standard_DS3_V2, Standard_DS4_V2, Standard_DS5_V2, Standard_DS11_V2, Standard_DS12_V2, Standard_DS13_V2, Standard_DS14_V2, Standard_E2_V3, Standard_E4_V3, Standard_E8_V3, Standard_E16_V3, Standard_E20_V3, Standard_E32_V3, Standard_E64_V3, Standard_E64i_V3, Standard_E2s_V3, Standard_E4s_V3, Standard_E8s_V3, Standard_E16s_V3, Standard_E20s_V3, Standard_E32s_V3, Standard_E64s_V3, Standard_E64is_V3, Standard_D2a_V4, Standard_D4a_V4, Standard_D8a_V4, Standard_D16a_V4, Standard_D32a_V4, Standard_D48a_V4, Standard_D64a_V4, Standard_D96a_V4, Standard_E2a_V4, Standard_E4a_V4, Standard_E8a_V4, Standard_E16a_V4, Standard_E20a_V4, Standard_E32a_V4, Standard_E48a_V4, Standard_E64a_V4, Standard_E96a_V4, Standard_G1, Standard_G2, Standard_G3, Standard_G4, Standard_G5, Standard_F2s_V2, Standard_F4s_V2, Standard_F8s_V2, Standard_F16s_V2, Standard_F32s_V2, Standard_F64s_V2, Standard_F72s_V2, Standard_GS1, Standard_GS2, Standard_GS3, Standard_GS4, Standard_GS5 and Standard_NC24. 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.

    NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).

    scriptActions List<Property Map>
    The script action which will run on the cluster. One or more script_actions blocks as defined below.
    sshKeys 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.

    NOTE: Either a password or one or more ssh_keys must be specified - but not both.

    subnetId 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.
    virtualNetworkId String
    The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.

    KafkaClusterRolesZookeeperNodeScriptAction, KafkaClusterRolesZookeeperNodeScriptActionArgs

    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    Name string
    The name of the script action.
    Uri string
    The URI to the script.
    Parameters string
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.
    name string
    The name of the script action.
    uri string
    The URI to the script.
    parameters string
    The parameters for the script provided.
    name str
    The name of the script action.
    uri str
    The URI to the script.
    parameters str
    The parameters for the script provided.
    name String
    The name of the script action.
    uri String
    The URI to the script.
    parameters String
    The parameters for the script provided.

    KafkaClusterSecurityProfile, KafkaClusterSecurityProfileArgs

    AaddsResourceId string
    The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
    DomainName string
    The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    DomainUserPassword string
    The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    DomainUsername string
    The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    LdapsUrls List<string>
    A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
    MsiResourceId string
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    ClusterUsersGroupDns List<string>
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
    AaddsResourceId string
    The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
    DomainName string
    The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    DomainUserPassword string
    The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    DomainUsername string
    The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    LdapsUrls []string
    A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
    MsiResourceId string
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    ClusterUsersGroupDns []string
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
    aaddsResourceId String
    The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
    domainName String
    The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUserPassword String
    The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUsername String
    The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    ldapsUrls List<String>
    A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
    msiResourceId String
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    clusterUsersGroupDns List<String>
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
    aaddsResourceId string
    The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
    domainName string
    The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUserPassword string
    The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUsername string
    The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    ldapsUrls string[]
    A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
    msiResourceId string
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    clusterUsersGroupDns string[]
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
    aadds_resource_id str
    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_password str
    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_id str
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    cluster_users_group_dns Sequence[str]
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
    aaddsResourceId String
    The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
    domainName String
    The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUserPassword String
    The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    domainUsername String
    The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
    ldapsUrls List<String>
    A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
    msiResourceId String
    The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
    clusterUsersGroupDns List<String>
    A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.

    KafkaClusterStorageAccount, KafkaClusterStorageAccountArgs

    IsDefault bool

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    StorageAccountKey string
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    StorageContainerId string

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    StorageResourceId string
    The ID of the Storage Account. Changing this forces a new resource to be created.
    IsDefault bool

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    StorageAccountKey string
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    StorageContainerId string

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    StorageResourceId string
    The ID of the Storage Account. Changing this forces a new resource to be created.
    isDefault Boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    storageAccountKey String
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    storageContainerId String

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId String
    The ID of the Storage Account. Changing this forces a new resource to be created.
    isDefault boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    storageAccountKey string
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    storageContainerId string

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId string
    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.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    storage_account_key str
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    storage_container_id str

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storage_resource_id str
    The ID of the Storage Account. Changing this forces a new resource to be created.
    isDefault Boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    storageAccountKey String
    The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
    storageContainerId String

    The ID of the Storage Container. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId String
    The ID of the Storage Account. Changing this forces a new resource to be created.

    KafkaClusterStorageAccountGen2, KafkaClusterStorageAccountGen2Args

    FilesystemId string
    The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
    IsDefault bool

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    ManagedIdentityResourceId string

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    StorageResourceId string
    The ID of the Storage Account. Changing this forces a new resource to be created.
    FilesystemId string
    The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
    IsDefault bool

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    ManagedIdentityResourceId string

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    StorageResourceId string
    The ID of the Storage Account. Changing this forces a new resource to be created.
    filesystemId String
    The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
    isDefault Boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    managedIdentityResourceId String

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId String
    The ID of the Storage Account. Changing this forces a new resource to be created.
    filesystemId string
    The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
    isDefault boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    managedIdentityResourceId string

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId string
    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.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    managed_identity_resource_id str

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storage_resource_id str
    The ID of the Storage Account. Changing this forces a new resource to be created.
    filesystemId String
    The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
    isDefault Boolean

    Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.

    NOTE: One of the storage_account or storage_account_gen2 blocks must be marked as the default.

    managedIdentityResourceId String

    The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.

    NOTE: This can be obtained from the id of the azure.storage.Container resource.

    storageResourceId String
    The ID of the Storage Account. Changing this forces a new resource to be created.

    Import

    HDInsight Kafka Clusters can be imported using the resource id, e.g.

    $ pulumi import azure:hdinsight/kafkaCluster:KafkaCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.HDInsight/clusters/cluster1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.69.0 published on Thursday, Mar 14, 2024 by Pulumi