1. Packages
  2. Azure Native
  3. API Docs
  4. hdinsight
  5. ClusterPool
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.hdinsight.ClusterPool

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Cluster pool. Azure REST API version: 2023-06-01-preview.

    Other available API versions: 2023-11-01-preview, 2024-05-01.

    Example Usage

    ClusterPoolPut

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var clusterPool = new AzureNative.HDInsight.ClusterPool("clusterPool", new()
        {
            ClusterPoolName = "clusterpool1",
            ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
            {
                ClusterPoolVersion = "1.2",
            },
            ComputeProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfileArgs
            {
                VmSize = "Standard_D3_v2",
            },
            Location = "West US 2",
            ResourceGroupName = "hiloResourcegroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/hdinsight/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := hdinsight.NewClusterPool(ctx, "clusterPool", &hdinsight.ClusterPoolArgs{
    			ClusterPoolName: pulumi.String("clusterpool1"),
    			ClusterPoolProfile: &hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs{
    				ClusterPoolVersion: pulumi.String("1.2"),
    			},
    			ComputeProfile: &hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs{
    				VmSize: pulumi.String("Standard_D3_v2"),
    			},
    			Location:          pulumi.String("West US 2"),
    			ResourceGroupName: pulumi.String("hiloResourcegroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.hdinsight.ClusterPool;
    import com.pulumi.azurenative.hdinsight.ClusterPoolArgs;
    import com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs;
    import com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesComputeProfileArgs;
    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 clusterPool = new ClusterPool("clusterPool", ClusterPoolArgs.builder()        
                .clusterPoolName("clusterpool1")
                .clusterPoolProfile(ClusterPoolResourcePropertiesClusterPoolProfileArgs.builder()
                    .clusterPoolVersion("1.2")
                    .build())
                .computeProfile(ClusterPoolResourcePropertiesComputeProfileArgs.builder()
                    .vmSize("Standard_D3_v2")
                    .build())
                .location("West US 2")
                .resourceGroupName("hiloResourcegroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    cluster_pool = azure_native.hdinsight.ClusterPool("clusterPool",
        cluster_pool_name="clusterpool1",
        cluster_pool_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs(
            cluster_pool_version="1.2",
        ),
        compute_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs(
            vm_size="Standard_D3_v2",
        ),
        location="West US 2",
        resource_group_name="hiloResourcegroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const clusterPool = new azure_native.hdinsight.ClusterPool("clusterPool", {
        clusterPoolName: "clusterpool1",
        clusterPoolProfile: {
            clusterPoolVersion: "1.2",
        },
        computeProfile: {
            vmSize: "Standard_D3_v2",
        },
        location: "West US 2",
        resourceGroupName: "hiloResourcegroup",
    });
    
    resources:
      clusterPool:
        type: azure-native:hdinsight:ClusterPool
        properties:
          clusterPoolName: clusterpool1
          clusterPoolProfile:
            clusterPoolVersion: '1.2'
          computeProfile:
            vmSize: Standard_D3_v2
          location: West US 2
          resourceGroupName: hiloResourcegroup
    

    Create ClusterPool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ClusterPool(name: string, args: ClusterPoolArgs, opts?: CustomResourceOptions);
    @overload
    def ClusterPool(resource_name: str,
                    args: ClusterPoolArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def ClusterPool(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    compute_profile: Optional[ClusterPoolResourcePropertiesComputeProfileArgs] = None,
                    resource_group_name: Optional[str] = None,
                    cluster_pool_name: Optional[str] = None,
                    cluster_pool_profile: Optional[ClusterPoolResourcePropertiesClusterPoolProfileArgs] = None,
                    location: Optional[str] = None,
                    log_analytics_profile: Optional[ClusterPoolResourcePropertiesLogAnalyticsProfileArgs] = None,
                    managed_resource_group_name: Optional[str] = None,
                    network_profile: Optional[ClusterPoolResourcePropertiesNetworkProfileArgs] = None,
                    tags: Optional[Mapping[str, str]] = None)
    func NewClusterPool(ctx *Context, name string, args ClusterPoolArgs, opts ...ResourceOption) (*ClusterPool, error)
    public ClusterPool(string name, ClusterPoolArgs args, CustomResourceOptions? opts = null)
    public ClusterPool(String name, ClusterPoolArgs args)
    public ClusterPool(String name, ClusterPoolArgs args, CustomResourceOptions options)
    
    type: azure-native:hdinsight:ClusterPool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ClusterPoolArgs
    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 ClusterPoolArgs
    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 ClusterPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var clusterPoolResource = new AzureNative.HDInsight.ClusterPool("clusterPoolResource", new()
    {
        ComputeProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfileArgs
        {
            VmSize = "string",
        },
        ResourceGroupName = "string",
        ClusterPoolName = "string",
        ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
        {
            ClusterPoolVersion = "string",
        },
        Location = "string",
        LogAnalyticsProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
        {
            Enabled = false,
            WorkspaceId = "string",
        },
        ManagedResourceGroupName = "string",
        NetworkProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfileArgs
        {
            SubnetId = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := hdinsight.NewClusterPool(ctx, "clusterPoolResource", &hdinsight.ClusterPoolArgs{
    ComputeProfile: &hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs{
    VmSize: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    ClusterPoolName: pulumi.String("string"),
    ClusterPoolProfile: &hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs{
    ClusterPoolVersion: pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    LogAnalyticsProfile: &hdinsight.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs{
    Enabled: pulumi.Bool(false),
    WorkspaceId: pulumi.String("string"),
    },
    ManagedResourceGroupName: pulumi.String("string"),
    NetworkProfile: &hdinsight.ClusterPoolResourcePropertiesNetworkProfileArgs{
    SubnetId: pulumi.String("string"),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var clusterPoolResource = new ClusterPool("clusterPoolResource", ClusterPoolArgs.builder()        
        .computeProfile(ClusterPoolResourcePropertiesComputeProfileArgs.builder()
            .vmSize("string")
            .build())
        .resourceGroupName("string")
        .clusterPoolName("string")
        .clusterPoolProfile(ClusterPoolResourcePropertiesClusterPoolProfileArgs.builder()
            .clusterPoolVersion("string")
            .build())
        .location("string")
        .logAnalyticsProfile(ClusterPoolResourcePropertiesLogAnalyticsProfileArgs.builder()
            .enabled(false)
            .workspaceId("string")
            .build())
        .managedResourceGroupName("string")
        .networkProfile(ClusterPoolResourcePropertiesNetworkProfileArgs.builder()
            .subnetId("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    cluster_pool_resource = azure_native.hdinsight.ClusterPool("clusterPoolResource",
        compute_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs(
            vm_size="string",
        ),
        resource_group_name="string",
        cluster_pool_name="string",
        cluster_pool_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs(
            cluster_pool_version="string",
        ),
        location="string",
        log_analytics_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs(
            enabled=False,
            workspace_id="string",
        ),
        managed_resource_group_name="string",
        network_profile=azure_native.hdinsight.ClusterPoolResourcePropertiesNetworkProfileArgs(
            subnet_id="string",
        ),
        tags={
            "string": "string",
        })
    
    const clusterPoolResource = new azure_native.hdinsight.ClusterPool("clusterPoolResource", {
        computeProfile: {
            vmSize: "string",
        },
        resourceGroupName: "string",
        clusterPoolName: "string",
        clusterPoolProfile: {
            clusterPoolVersion: "string",
        },
        location: "string",
        logAnalyticsProfile: {
            enabled: false,
            workspaceId: "string",
        },
        managedResourceGroupName: "string",
        networkProfile: {
            subnetId: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:hdinsight:ClusterPool
    properties:
        clusterPoolName: string
        clusterPoolProfile:
            clusterPoolVersion: string
        computeProfile:
            vmSize: string
        location: string
        logAnalyticsProfile:
            enabled: false
            workspaceId: string
        managedResourceGroupName: string
        networkProfile:
            subnetId: string
        resourceGroupName: string
        tags:
            string: string
    

    ClusterPool 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 ClusterPool resource accepts the following input properties:

    ComputeProfile Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfile
    CLuster pool compute profile.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterPoolName string
    The name of the cluster pool.
    ClusterPoolProfile Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfile
    CLuster pool profile.
    Location string
    The geo-location where the resource lives
    LogAnalyticsProfile Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesLogAnalyticsProfile
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    ManagedResourceGroupName string
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    NetworkProfile Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfile
    Cluster pool network profile.
    Tags Dictionary<string, string>
    Resource tags.
    ComputeProfile ClusterPoolResourcePropertiesComputeProfileArgs
    CLuster pool compute profile.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterPoolName string
    The name of the cluster pool.
    ClusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfileArgs
    CLuster pool profile.
    Location string
    The geo-location where the resource lives
    LogAnalyticsProfile ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    ManagedResourceGroupName string
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    NetworkProfile ClusterPoolResourcePropertiesNetworkProfileArgs
    Cluster pool network profile.
    Tags map[string]string
    Resource tags.
    computeProfile ClusterPoolResourcePropertiesComputeProfile
    CLuster pool compute profile.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterPoolName String
    The name of the cluster pool.
    clusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfile
    CLuster pool profile.
    location String
    The geo-location where the resource lives
    logAnalyticsProfile ClusterPoolResourcePropertiesLogAnalyticsProfile
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    managedResourceGroupName String
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    networkProfile ClusterPoolResourcePropertiesNetworkProfile
    Cluster pool network profile.
    tags Map<String,String>
    Resource tags.
    computeProfile ClusterPoolResourcePropertiesComputeProfile
    CLuster pool compute profile.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    clusterPoolName string
    The name of the cluster pool.
    clusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfile
    CLuster pool profile.
    location string
    The geo-location where the resource lives
    logAnalyticsProfile ClusterPoolResourcePropertiesLogAnalyticsProfile
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    managedResourceGroupName string
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    networkProfile ClusterPoolResourcePropertiesNetworkProfile
    Cluster pool network profile.
    tags {[key: string]: string}
    Resource tags.
    compute_profile ClusterPoolResourcePropertiesComputeProfileArgs
    CLuster pool compute profile.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    cluster_pool_name str
    The name of the cluster pool.
    cluster_pool_profile ClusterPoolResourcePropertiesClusterPoolProfileArgs
    CLuster pool profile.
    location str
    The geo-location where the resource lives
    log_analytics_profile ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    managed_resource_group_name str
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    network_profile ClusterPoolResourcePropertiesNetworkProfileArgs
    Cluster pool network profile.
    tags Mapping[str, str]
    Resource tags.
    computeProfile Property Map
    CLuster pool compute profile.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterPoolName String
    The name of the cluster pool.
    clusterPoolProfile Property Map
    CLuster pool profile.
    location String
    The geo-location where the resource lives
    logAnalyticsProfile Property Map
    Cluster pool log analytics profile to enable OMS agent for AKS cluster.
    managedResourceGroupName String
    A resource group created by RP, to hold the resources created by RP on-behalf of customers. It will also be used to generate aksManagedResourceGroupName by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}. Please make sure it meets resource group name restriction.
    networkProfile Property Map
    Cluster pool network profile.
    tags Map<String>
    Resource tags.

    Outputs

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

    AksClusterProfile Pulumi.AzureNative.HDInsight.Outputs.ClusterPoolResourcePropertiesResponseAksClusterProfile
    Properties of underlying AKS cluster.
    AksManagedResourceGroupName string
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    DeploymentId string
    A unique id generated by the RP to identify the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the resource.
    Status string
    Business status of the resource.
    SystemData Pulumi.AzureNative.HDInsight.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AksClusterProfile ClusterPoolResourcePropertiesResponseAksClusterProfile
    Properties of underlying AKS cluster.
    AksManagedResourceGroupName string
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    DeploymentId string
    A unique id generated by the RP to identify the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    Provisioning state of the resource.
    Status string
    Business status of the resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    aksClusterProfile ClusterPoolResourcePropertiesResponseAksClusterProfile
    Properties of underlying AKS cluster.
    aksManagedResourceGroupName String
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    deploymentId String
    A unique id generated by the RP to identify the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the resource.
    status String
    Business status of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    aksClusterProfile ClusterPoolResourcePropertiesResponseAksClusterProfile
    Properties of underlying AKS cluster.
    aksManagedResourceGroupName string
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    deploymentId string
    A unique id generated by the RP to identify the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    Provisioning state of the resource.
    status string
    Business status of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    aks_cluster_profile ClusterPoolResourcePropertiesResponseAksClusterProfile
    Properties of underlying AKS cluster.
    aks_managed_resource_group_name str
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    deployment_id str
    A unique id generated by the RP to identify the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    Provisioning state of the resource.
    status str
    Business status of the resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    aksClusterProfile Property Map
    Properties of underlying AKS cluster.
    aksManagedResourceGroupName String
    A resource group created by AKS, to hold the infrastructure resources created by AKS on-behalf of customers. It is generated by cluster pool name and managed resource group name by pattern: MC_{managedResourceGroupName}_{clusterPoolName}_{region}
    deploymentId String
    A unique id generated by the RP to identify the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    Provisioning state of the resource.
    status String
    Business status of the resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AksClusterProfileResponseAksClusterAgentPoolIdentityProfile, AksClusterProfileResponseAksClusterAgentPoolIdentityProfileArgs

    MsiClientId string
    ClientId of the MSI.
    MsiObjectId string
    ObjectId of the MSI.
    MsiResourceId string
    ResourceId of the MSI.
    MsiClientId string
    ClientId of the MSI.
    MsiObjectId string
    ObjectId of the MSI.
    MsiResourceId string
    ResourceId of the MSI.
    msiClientId String
    ClientId of the MSI.
    msiObjectId String
    ObjectId of the MSI.
    msiResourceId String
    ResourceId of the MSI.
    msiClientId string
    ClientId of the MSI.
    msiObjectId string
    ObjectId of the MSI.
    msiResourceId string
    ResourceId of the MSI.
    msi_client_id str
    ClientId of the MSI.
    msi_object_id str
    ObjectId of the MSI.
    msi_resource_id str
    ResourceId of the MSI.
    msiClientId String
    ClientId of the MSI.
    msiObjectId String
    ObjectId of the MSI.
    msiResourceId String
    ResourceId of the MSI.

    ClusterPoolResourcePropertiesClusterPoolProfile, ClusterPoolResourcePropertiesClusterPoolProfileArgs

    ClusterPoolVersion string
    Cluster pool version is a 2-part version.
    ClusterPoolVersion string
    Cluster pool version is a 2-part version.
    clusterPoolVersion String
    Cluster pool version is a 2-part version.
    clusterPoolVersion string
    Cluster pool version is a 2-part version.
    cluster_pool_version str
    Cluster pool version is a 2-part version.
    clusterPoolVersion String
    Cluster pool version is a 2-part version.

    ClusterPoolResourcePropertiesComputeProfile, ClusterPoolResourcePropertiesComputeProfileArgs

    VmSize string
    The virtual machine SKU.
    VmSize string
    The virtual machine SKU.
    vmSize String
    The virtual machine SKU.
    vmSize string
    The virtual machine SKU.
    vm_size str
    The virtual machine SKU.
    vmSize String
    The virtual machine SKU.

    ClusterPoolResourcePropertiesLogAnalyticsProfile, ClusterPoolResourcePropertiesLogAnalyticsProfileArgs

    Enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    WorkspaceId string
    Log analytics workspace to associate with the OMS agent.
    Enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    WorkspaceId string
    Log analytics workspace to associate with the OMS agent.
    enabled Boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId String
    Log analytics workspace to associate with the OMS agent.
    enabled boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId string
    Log analytics workspace to associate with the OMS agent.
    enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    workspace_id str
    Log analytics workspace to associate with the OMS agent.
    enabled Boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId String
    Log analytics workspace to associate with the OMS agent.

    ClusterPoolResourcePropertiesNetworkProfile, ClusterPoolResourcePropertiesNetworkProfileArgs

    SubnetId string
    Cluster pool subnet resource id.
    SubnetId string
    Cluster pool subnet resource id.
    subnetId String
    Cluster pool subnet resource id.
    subnetId string
    Cluster pool subnet resource id.
    subnet_id str
    Cluster pool subnet resource id.
    subnetId String
    Cluster pool subnet resource id.

    ClusterPoolResourcePropertiesResponseAksClusterProfile, ClusterPoolResourcePropertiesResponseAksClusterProfileArgs

    AksVersion string
    AKS control plane and default node pool version of this ClusterPool
    AksClusterAgentPoolIdentityProfile Pulumi.AzureNative.HDInsight.Inputs.AksClusterProfileResponseAksClusterAgentPoolIdentityProfile
    Identity properties of the AKS cluster agentpool MSI
    AksClusterResourceId string
    ARM Resource ID of the AKS cluster
    AksVersion string
    AKS control plane and default node pool version of this ClusterPool
    AksClusterAgentPoolIdentityProfile AksClusterProfileResponseAksClusterAgentPoolIdentityProfile
    Identity properties of the AKS cluster agentpool MSI
    AksClusterResourceId string
    ARM Resource ID of the AKS cluster
    aksVersion String
    AKS control plane and default node pool version of this ClusterPool
    aksClusterAgentPoolIdentityProfile AksClusterProfileResponseAksClusterAgentPoolIdentityProfile
    Identity properties of the AKS cluster agentpool MSI
    aksClusterResourceId String
    ARM Resource ID of the AKS cluster
    aksVersion string
    AKS control plane and default node pool version of this ClusterPool
    aksClusterAgentPoolIdentityProfile AksClusterProfileResponseAksClusterAgentPoolIdentityProfile
    Identity properties of the AKS cluster agentpool MSI
    aksClusterResourceId string
    ARM Resource ID of the AKS cluster
    aks_version str
    AKS control plane and default node pool version of this ClusterPool
    aks_cluster_agent_pool_identity_profile AksClusterProfileResponseAksClusterAgentPoolIdentityProfile
    Identity properties of the AKS cluster agentpool MSI
    aks_cluster_resource_id str
    ARM Resource ID of the AKS cluster
    aksVersion String
    AKS control plane and default node pool version of this ClusterPool
    aksClusterAgentPoolIdentityProfile Property Map
    Identity properties of the AKS cluster agentpool MSI
    aksClusterResourceId String
    ARM Resource ID of the AKS cluster

    ClusterPoolResourcePropertiesResponseClusterPoolProfile, ClusterPoolResourcePropertiesResponseClusterPoolProfileArgs

    ClusterPoolVersion string
    Cluster pool version is a 2-part version.
    ClusterPoolVersion string
    Cluster pool version is a 2-part version.
    clusterPoolVersion String
    Cluster pool version is a 2-part version.
    clusterPoolVersion string
    Cluster pool version is a 2-part version.
    cluster_pool_version str
    Cluster pool version is a 2-part version.
    clusterPoolVersion String
    Cluster pool version is a 2-part version.

    ClusterPoolResourcePropertiesResponseComputeProfile, ClusterPoolResourcePropertiesResponseComputeProfileArgs

    Count int
    The number of virtual machines.
    VmSize string
    The virtual machine SKU.
    Count int
    The number of virtual machines.
    VmSize string
    The virtual machine SKU.
    count Integer
    The number of virtual machines.
    vmSize String
    The virtual machine SKU.
    count number
    The number of virtual machines.
    vmSize string
    The virtual machine SKU.
    count int
    The number of virtual machines.
    vm_size str
    The virtual machine SKU.
    count Number
    The number of virtual machines.
    vmSize String
    The virtual machine SKU.

    ClusterPoolResourcePropertiesResponseLogAnalyticsProfile, ClusterPoolResourcePropertiesResponseLogAnalyticsProfileArgs

    Enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    WorkspaceId string
    Log analytics workspace to associate with the OMS agent.
    Enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    WorkspaceId string
    Log analytics workspace to associate with the OMS agent.
    enabled Boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId String
    Log analytics workspace to associate with the OMS agent.
    enabled boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId string
    Log analytics workspace to associate with the OMS agent.
    enabled bool
    True if log analytics is enabled for cluster pool, otherwise false.
    workspace_id str
    Log analytics workspace to associate with the OMS agent.
    enabled Boolean
    True if log analytics is enabled for cluster pool, otherwise false.
    workspaceId String
    Log analytics workspace to associate with the OMS agent.

    ClusterPoolResourcePropertiesResponseNetworkProfile, ClusterPoolResourcePropertiesResponseNetworkProfileArgs

    SubnetId string
    Cluster pool subnet resource id.
    SubnetId string
    Cluster pool subnet resource id.
    subnetId String
    Cluster pool subnet resource id.
    subnetId string
    Cluster pool subnet resource id.
    subnet_id str
    Cluster pool subnet resource id.
    subnetId String
    Cluster pool subnet resource id.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:hdinsight:ClusterPool clusterpool1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusterpools/{clusterPoolName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi