All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.hdinsight.kotlin.HBaseCluster.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.hdinsight.kotlin

import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterComponentVersion
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterComputeIsolation
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterDiskEncryption
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterExtension
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterGateway
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterMetastores
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterMonitor
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterNetwork
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterPrivateLinkConfiguration
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterRoles
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterSecurityProfile
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterStorageAccount
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterStorageAccountGen2
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterComponentVersion.Companion.toKotlin as hBaseClusterComponentVersionToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterComputeIsolation.Companion.toKotlin as hBaseClusterComputeIsolationToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterDiskEncryption.Companion.toKotlin as hBaseClusterDiskEncryptionToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterExtension.Companion.toKotlin as hBaseClusterExtensionToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterGateway.Companion.toKotlin as hBaseClusterGatewayToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterMetastores.Companion.toKotlin as hBaseClusterMetastoresToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterMonitor.Companion.toKotlin as hBaseClusterMonitorToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterNetwork.Companion.toKotlin as hBaseClusterNetworkToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterPrivateLinkConfiguration.Companion.toKotlin as hBaseClusterPrivateLinkConfigurationToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterRoles.Companion.toKotlin as hBaseClusterRolesToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterSecurityProfile.Companion.toKotlin as hBaseClusterSecurityProfileToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterStorageAccount.Companion.toKotlin as hBaseClusterStorageAccountToKotlin
import com.pulumi.azure.hdinsight.kotlin.outputs.HBaseClusterStorageAccountGen2.Companion.toKotlin as hBaseClusterStorageAccountGen2ToKotlin

/**
 * Builder for [HBaseCluster].
 */
@PulumiTagMarker
public class HBaseClusterResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: HBaseClusterArgs = HBaseClusterArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend HBaseClusterArgsBuilder.() -> Unit) {
        val builder = HBaseClusterArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): HBaseCluster {
        val builtJavaResource = com.pulumi.azure.hdinsight.HBaseCluster(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return HBaseCluster(builtJavaResource)
    }
}

/**
 * Manages a HDInsight HBase Cluster.
 * ## Example Usage
 * 
 * ```typescript
 * 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 exampleHBaseCluster = new azure.hdinsight.HBaseCluster("example", {
 *     name: "example-hdicluster",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     clusterVersion: "3.6",
 *     tier: "Standard",
 *     componentVersion: {
 *         hbase: "1.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!",
 *             targetInstanceCount: 3,
 *         },
 *         zookeeperNode: {
 *             vmSize: "Standard_D3_V2",
 *             username: "acctestusrvm",
 *             password: "AccTestvdSC4daf986!",
 *         },
 *     },
 * });
 * ```
 * ```python
 * 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_h_base_cluster = azure.hdinsight.HBaseCluster("example",
 *     name="example-hdicluster",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     cluster_version="3.6",
 *     tier="Standard",
 *     component_version={
 *         "hbase": "1.1",
 *     },
 *     gateway={
 *         "username": "acctestusrgw",
 *         "password": "Password123!",
 *     },
 *     storage_accounts=[{
 *         "storage_container_id": example_container.id,
 *         "storage_account_key": example_account.primary_access_key,
 *         "is_default": True,
 *     }],
 *     roles={
 *         "head_node": {
 *             "vm_size": "Standard_D3_V2",
 *             "username": "acctestusrvm",
 *             "password": "AccTestvdSC4daf986!",
 *         },
 *         "worker_node": {
 *             "vm_size": "Standard_D3_V2",
 *             "username": "acctestusrvm",
 *             "password": "AccTestvdSC4daf986!",
 *             "target_instance_count": 3,
 *         },
 *         "zookeeper_node": {
 *             "vm_size": "Standard_D3_V2",
 *             "username": "acctestusrvm",
 *             "password": "AccTestvdSC4daf986!",
 *         },
 *     })
 * ```
 * ```csharp
 * 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 exampleHBaseCluster = new Azure.HDInsight.HBaseCluster("example", new()
 *     {
 *         Name = "example-hdicluster",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         ClusterVersion = "3.6",
 *         Tier = "Standard",
 *         ComponentVersion = new Azure.HDInsight.Inputs.HBaseClusterComponentVersionArgs
 *         {
 *             Hbase = "1.1",
 *         },
 *         Gateway = new Azure.HDInsight.Inputs.HBaseClusterGatewayArgs
 *         {
 *             Username = "acctestusrgw",
 *             Password = "Password123!",
 *         },
 *         StorageAccounts = new[]
 *         {
 *             new Azure.HDInsight.Inputs.HBaseClusterStorageAccountArgs
 *             {
 *                 StorageContainerId = exampleContainer.Id,
 *                 StorageAccountKey = exampleAccount.PrimaryAccessKey,
 *                 IsDefault = true,
 *             },
 *         },
 *         Roles = new Azure.HDInsight.Inputs.HBaseClusterRolesArgs
 *         {
 *             HeadNode = new Azure.HDInsight.Inputs.HBaseClusterRolesHeadNodeArgs
 *             {
 *                 VmSize = "Standard_D3_V2",
 *                 Username = "acctestusrvm",
 *                 Password = "AccTestvdSC4daf986!",
 *             },
 *             WorkerNode = new Azure.HDInsight.Inputs.HBaseClusterRolesWorkerNodeArgs
 *             {
 *                 VmSize = "Standard_D3_V2",
 *                 Username = "acctestusrvm",
 *                 Password = "AccTestvdSC4daf986!",
 *                 TargetInstanceCount = 3,
 *             },
 *             ZookeeperNode = new Azure.HDInsight.Inputs.HBaseClusterRolesZookeeperNodeArgs
 *             {
 *                 VmSize = "Standard_D3_V2",
 *                 Username = "acctestusrvm",
 *                 Password = "AccTestvdSC4daf986!",
 *             },
 *         },
 *     });
 * });
 * ```
 * ```go
 * 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.NewHBaseCluster(ctx, "example", &hdinsight.HBaseClusterArgs{
 * 			Name:              pulumi.String("example-hdicluster"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          example.Location,
 * 			ClusterVersion:    pulumi.String("3.6"),
 * 			Tier:              pulumi.String("Standard"),
 * 			ComponentVersion: &hdinsight.HBaseClusterComponentVersionArgs{
 * 				Hbase: pulumi.String("1.1"),
 * 			},
 * 			Gateway: &hdinsight.HBaseClusterGatewayArgs{
 * 				Username: pulumi.String("acctestusrgw"),
 * 				Password: pulumi.String("Password123!"),
 * 			},
 * 			StorageAccounts: hdinsight.HBaseClusterStorageAccountArray{
 * 				&hdinsight.HBaseClusterStorageAccountArgs{
 * 					StorageContainerId: exampleContainer.ID(),
 * 					StorageAccountKey:  exampleAccount.PrimaryAccessKey,
 * 					IsDefault:          pulumi.Bool(true),
 * 				},
 * 			},
 * 			Roles: &hdinsight.HBaseClusterRolesArgs{
 * 				HeadNode: &hdinsight.HBaseClusterRolesHeadNodeArgs{
 * 					VmSize:   pulumi.String("Standard_D3_V2"),
 * 					Username: pulumi.String("acctestusrvm"),
 * 					Password: pulumi.String("AccTestvdSC4daf986!"),
 * 				},
 * 				WorkerNode: &hdinsight.HBaseClusterRolesWorkerNodeArgs{
 * 					VmSize:              pulumi.String("Standard_D3_V2"),
 * 					Username:            pulumi.String("acctestusrvm"),
 * 					Password:            pulumi.String("AccTestvdSC4daf986!"),
 * 					TargetInstanceCount: pulumi.Int(3),
 * 				},
 * 				ZookeeperNode: &hdinsight.HBaseClusterRolesZookeeperNodeArgs{
 * 					VmSize:   pulumi.String("Standard_D3_V2"),
 * 					Username: pulumi.String("acctestusrvm"),
 * 					Password: pulumi.String("AccTestvdSC4daf986!"),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * 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.HBaseCluster;
 * import com.pulumi.azure.hdinsight.HBaseClusterArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterComponentVersionArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterGatewayArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterStorageAccountArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterRolesArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterRolesHeadNodeArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterRolesWorkerNodeArgs;
 * import com.pulumi.azure.hdinsight.inputs.HBaseClusterRolesZookeeperNodeArgs;
 * 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 exampleHBaseCluster = new HBaseCluster("exampleHBaseCluster", HBaseClusterArgs.builder()
 *             .name("example-hdicluster")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .clusterVersion("3.6")
 *             .tier("Standard")
 *             .componentVersion(HBaseClusterComponentVersionArgs.builder()
 *                 .hbase("1.1")
 *                 .build())
 *             .gateway(HBaseClusterGatewayArgs.builder()
 *                 .username("acctestusrgw")
 *                 .password("Password123!")
 *                 .build())
 *             .storageAccounts(HBaseClusterStorageAccountArgs.builder()
 *                 .storageContainerId(exampleContainer.id())
 *                 .storageAccountKey(exampleAccount.primaryAccessKey())
 *                 .isDefault(true)
 *                 .build())
 *             .roles(HBaseClusterRolesArgs.builder()
 *                 .headNode(HBaseClusterRolesHeadNodeArgs.builder()
 *                     .vmSize("Standard_D3_V2")
 *                     .username("acctestusrvm")
 *                     .password("AccTestvdSC4daf986!")
 *                     .build())
 *                 .workerNode(HBaseClusterRolesWorkerNodeArgs.builder()
 *                     .vmSize("Standard_D3_V2")
 *                     .username("acctestusrvm")
 *                     .password("AccTestvdSC4daf986!")
 *                     .targetInstanceCount(3)
 *                     .build())
 *                 .zookeeperNode(HBaseClusterRolesZookeeperNodeArgs.builder()
 *                     .vmSize("Standard_D3_V2")
 *                     .username("acctestusrvm")
 *                     .password("AccTestvdSC4daf986!")
 *                     .build())
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * 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
 *   exampleHBaseCluster:
 *     type: azure:hdinsight:HBaseCluster
 *     name: example
 *     properties:
 *       name: example-hdicluster
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       clusterVersion: '3.6'
 *       tier: Standard
 *       componentVersion:
 *         hbase: '1.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!
 *           targetInstanceCount: 3
 *         zookeeperNode:
 *           vmSize: Standard_D3_V2
 *           username: acctestusrvm
 *           password: AccTestvdSC4daf986!
 * ```
 * 
 * ## Import
 * HDInsight HBase Clusters can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:hdinsight/hBaseCluster:HBaseCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.HDInsight/clusters/cluster1
 * ```
 */
public class HBaseCluster internal constructor(
    override val javaResource: com.pulumi.azure.hdinsight.HBaseCluster,
) : KotlinCustomResource(javaResource, HBaseClusterMapper) {
    /**
     * Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
     */
    public val clusterVersion: Output
        get() = javaResource.clusterVersion().applyValue({ args0 -> args0 })

    /**
     * A `component_version` block as defined below.
     */
    public val componentVersion: Output
        get() = javaResource.componentVersion().applyValue({ args0 ->
            args0.let({ args0 ->
                hBaseClusterComponentVersionToKotlin(args0)
            })
        })

    /**
     * A `compute_isolation` block as defined below.
     */
    public val computeIsolation: Output?
        get() = javaResource.computeIsolation().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> hBaseClusterComputeIsolationToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * One or more `disk_encryption` block as defined below.
     */
    public val diskEncryptions: Output>?
        get() = javaResource.diskEncryptions().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 ->
                        hBaseClusterDiskEncryptionToKotlin(args0)
                    })
                })
            }).orElse(null)
        })

    /**
     * An `extension` block as defined below.
     */
    public val extension: Output?
        get() = javaResource.extension().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    hBaseClusterExtensionToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * A `gateway` block as defined below.
     */
    public val gateway: Output
        get() = javaResource.gateway().applyValue({ args0 ->
            args0.let({ args0 ->
                hBaseClusterGatewayToKotlin(args0)
            })
        })

    /**
     * The HTTPS Connectivity Endpoint for this HDInsight HBase Cluster.
     */
    public val httpsEndpoint: Output
        get() = javaResource.httpsEndpoint().applyValue({ args0 -> args0 })

    /**
     * Specifies the Azure Region which this HDInsight HBase Cluster should exist. Changing this forces a new resource to be created.
     */
    public val location: Output
        get() = javaResource.location().applyValue({ args0 -> args0 })

    /**
     * A `metastores` block as defined below.
     */
    public val metastores: Output?
        get() = javaResource.metastores().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    hBaseClusterMetastoresToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * A `monitor` block as defined below.
     */
    public val monitor: Output?
        get() = javaResource.monitor().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    hBaseClusterMonitorToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * Specifies the name for this HDInsight HBase Cluster. Changing this forces a new resource to be created.
     */
    public val name: Output
        get() = javaResource.name().applyValue({ args0 -> args0 })

    /**
     * A `network` block as defined below.
     */
    public val network: Output?
        get() = javaResource.network().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 ->
                    hBaseClusterNetworkToKotlin(args0)
                })
            }).orElse(null)
        })

    /**
     * A `private_link_configuration` block as defined below.
     */
    public val privateLinkConfiguration: Output?
        get() = javaResource.privateLinkConfiguration().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> hBaseClusterPrivateLinkConfigurationToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * Specifies the name of the Resource Group in which this HDInsight HBase Cluster should exist. Changing this forces a new resource to be created.
     */
    public val resourceGroupName: Output
        get() = javaResource.resourceGroupName().applyValue({ args0 -> args0 })

    /**
     * A `roles` block as defined below.
     */
    public val roles: Output
        get() = javaResource.roles().applyValue({ args0 ->
            args0.let({ args0 ->
                hBaseClusterRolesToKotlin(args0)
            })
        })

    /**
     * A `security_profile` block as defined below. Changing this forces a new resource to be created.
     */
    public val securityProfile: Output?
        get() = javaResource.securityProfile().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> hBaseClusterSecurityProfileToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * The SSH Connectivity Endpoint for this HDInsight HBase Cluster.
     */
    public val sshEndpoint: Output
        get() = javaResource.sshEndpoint().applyValue({ args0 -> args0 })

    /**
     * A `storage_account_gen2` block as defined below.
     */
    public val storageAccountGen2: Output?
        get() = javaResource.storageAccountGen2().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.let({ args0 -> hBaseClusterStorageAccountGen2ToKotlin(args0) })
            }).orElse(null)
        })

    /**
     * One or more `storage_account` block as defined below.
     */
    public val storageAccounts: Output>?
        get() = javaResource.storageAccounts().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 ->
                        hBaseClusterStorageAccountToKotlin(args0)
                    })
                })
            }).orElse(null)
        })

    /**
     * A map of Tags which should be assigned to this HDInsight HBase Cluster.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.key.to(args0.value)
                }).toMap()
            }).orElse(null)
        })

    /**
     * Specifies the Tier which should be used for this HDInsight HBase Cluster. Possible values are `Standard` or `Premium`. Changing this forces a new resource to be created.
     */
    public val tier: Output
        get() = javaResource.tier().applyValue({ args0 -> args0 })

    /**
     * The minimal supported TLS version. Possible values are 1.0, 1.1 or 1.2. Changing this forces a new resource to be created.
     * > **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](https://azure.microsoft.com/en-us/updates/azure-hdinsight-tls-12-enforcement/).
     */
    public val tlsMinVersion: Output?
        get() = javaResource.tlsMinVersion().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })
}

public object HBaseClusterMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.azure.hdinsight.HBaseCluster::class == javaResource::class

    override fun map(javaResource: Resource): HBaseCluster = HBaseCluster(
        javaResource as
            com.pulumi.azure.hdinsight.HBaseCluster,
    )
}

/**
 * @see [HBaseCluster].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [HBaseCluster].
 */
public suspend fun hBaseCluster(
    name: String,
    block: suspend HBaseClusterResourceBuilder.() -> Unit,
): HBaseCluster {
    val builder = HBaseClusterResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [HBaseCluster].
 * @param name The _unique_ name of the resulting resource.
 */
public fun hBaseCluster(name: String): HBaseCluster {
    val builder = HBaseClusterResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy