1. Packages
  2. Azure Native v2
  3. API Docs
  4. hdinsight
  5. ClusterPool
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.hdinsight.ClusterPool

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

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

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

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",
    });

});
Copy
package main

import (
	hdinsight "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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

cluster_pool = azure_native.hdinsight.ClusterPool("clusterPool",
    cluster_pool_name="clusterpool1",
    cluster_pool_profile={
        "cluster_pool_version": "1.2",
    },
    compute_profile={
        "vm_size": "Standard_D3_v2",
    },
    location="West US 2",
    resource_group_name="hiloResourcegroup")
Copy
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
Copy

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

Constructor example

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

var clusterPoolResource = new AzureNative.Hdinsight.ClusterPool("clusterPoolResource", new()
{
    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" },
    },
});
Copy
example, err := hdinsight.NewClusterPool(ctx, "clusterPoolResource", &hdinsight.ClusterPoolArgs{
	ComputeProfile: map[string]interface{}{
		"vmSize": "string",
	},
	ResourceGroupName: "string",
	ClusterPoolName:   "string",
	ClusterPoolProfile: map[string]interface{}{
		"clusterPoolVersion": "string",
	},
	Location: "string",
	LogAnalyticsProfile: map[string]interface{}{
		"enabled":     false,
		"workspaceId": "string",
	},
	ManagedResourceGroupName: "string",
	NetworkProfile: map[string]interface{}{
		"subnetId": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var clusterPoolResource = new ClusterPool("clusterPoolResource", ClusterPoolArgs.builder()
    .computeProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .clusterPoolName("string")
    .clusterPoolProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .logAnalyticsProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .managedResourceGroupName("string")
    .networkProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
cluster_pool_resource = azure_native.hdinsight.ClusterPool("clusterPoolResource",
    compute_profile={
        vmSize: string,
    },
    resource_group_name=string,
    cluster_pool_name=string,
    cluster_pool_profile={
        clusterPoolVersion: string,
    },
    location=string,
    log_analytics_profile={
        enabled: False,
        workspaceId: string,
    },
    managed_resource_group_name=string,
    network_profile={
        subnetId: string,
    },
    tags={
        string: string,
    })
Copy
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",
    },
});
Copy
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
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ClusterPool resource accepts the following input properties:

ComputeProfile This property is required. Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfile
CLuster pool compute profile.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ClusterPoolName Changes to this property will trigger replacement. string
The name of the cluster pool.
ClusterPoolProfile Pulumi.AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfile
CLuster pool profile.
Location Changes to this property will trigger replacement. 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 This property is required. ClusterPoolResourcePropertiesComputeProfileArgs
CLuster pool compute profile.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ClusterPoolName Changes to this property will trigger replacement. string
The name of the cluster pool.
ClusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfileArgs
CLuster pool profile.
Location Changes to this property will trigger replacement. 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 This property is required. ClusterPoolResourcePropertiesComputeProfile
CLuster pool compute profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
clusterPoolName Changes to this property will trigger replacement. String
The name of the cluster pool.
clusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfile
CLuster pool profile.
location Changes to this property will trigger replacement. 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 This property is required. ClusterPoolResourcePropertiesComputeProfile
CLuster pool compute profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
clusterPoolName Changes to this property will trigger replacement. string
The name of the cluster pool.
clusterPoolProfile ClusterPoolResourcePropertiesClusterPoolProfile
CLuster pool profile.
location Changes to this property will trigger replacement. 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 This property is required. ClusterPoolResourcePropertiesComputeProfileArgs
CLuster pool compute profile.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
cluster_pool_name Changes to this property will trigger replacement. str
The name of the cluster pool.
cluster_pool_profile ClusterPoolResourcePropertiesClusterPoolProfileArgs
CLuster pool profile.
location Changes to this property will trigger replacement. 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 This property is required. Property Map
CLuster pool compute profile.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
clusterPoolName Changes to this property will trigger replacement. String
The name of the cluster pool.
clusterPoolProfile Property Map
CLuster pool profile.
location Changes to this property will trigger replacement. 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 This property is required. string
ClientId of the MSI.
MsiObjectId This property is required. string
ObjectId of the MSI.
MsiResourceId This property is required. string
ResourceId of the MSI.
MsiClientId This property is required. string
ClientId of the MSI.
MsiObjectId This property is required. string
ObjectId of the MSI.
MsiResourceId This property is required. string
ResourceId of the MSI.
msiClientId This property is required. String
ClientId of the MSI.
msiObjectId This property is required. String
ObjectId of the MSI.
msiResourceId This property is required. String
ResourceId of the MSI.
msiClientId This property is required. string
ClientId of the MSI.
msiObjectId This property is required. string
ObjectId of the MSI.
msiResourceId This property is required. string
ResourceId of the MSI.
msi_client_id This property is required. str
ClientId of the MSI.
msi_object_id This property is required. str
ObjectId of the MSI.
msi_resource_id This property is required. str
ResourceId of the MSI.
msiClientId This property is required. String
ClientId of the MSI.
msiObjectId This property is required. String
ObjectId of the MSI.
msiResourceId This property is required. String
ResourceId of the MSI.

ClusterPoolResourcePropertiesClusterPoolProfile
, ClusterPoolResourcePropertiesClusterPoolProfileArgs

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

ClusterPoolResourcePropertiesComputeProfile
, ClusterPoolResourcePropertiesComputeProfileArgs

VmSize This property is required. string
The virtual machine SKU.
VmSize This property is required. string
The virtual machine SKU.
vmSize This property is required. String
The virtual machine SKU.
vmSize This property is required. string
The virtual machine SKU.
vm_size This property is required. str
The virtual machine SKU.
vmSize This property is required. String
The virtual machine SKU.

ClusterPoolResourcePropertiesLogAnalyticsProfile
, ClusterPoolResourcePropertiesLogAnalyticsProfileArgs

Enabled This property is required. bool
True if log analytics is enabled for cluster pool, otherwise false.
WorkspaceId string
Log analytics workspace to associate with the OMS agent.
Enabled This property is required. bool
True if log analytics is enabled for cluster pool, otherwise false.
WorkspaceId string
Log analytics workspace to associate with the OMS agent.
enabled This property is required. Boolean
True if log analytics is enabled for cluster pool, otherwise false.
workspaceId String
Log analytics workspace to associate with the OMS agent.
enabled This property is required. boolean
True if log analytics is enabled for cluster pool, otherwise false.
workspaceId string
Log analytics workspace to associate with the OMS agent.
enabled This property is required. 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 This property is required. 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 This property is required. string
Cluster pool subnet resource id.
SubnetId This property is required. string
Cluster pool subnet resource id.
subnetId This property is required. String
Cluster pool subnet resource id.
subnetId This property is required. string
Cluster pool subnet resource id.
subnet_id This property is required. str
Cluster pool subnet resource id.
subnetId This property is required. String
Cluster pool subnet resource id.

ClusterPoolResourcePropertiesResponseAksClusterProfile
, ClusterPoolResourcePropertiesResponseAksClusterProfileArgs

AksVersion This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Cluster pool version is a 2-part version.
ClusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.
clusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
cluster_pool_version This property is required. str
Cluster pool version is a 2-part version.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.

ClusterPoolResourcePropertiesResponseComputeProfile
, ClusterPoolResourcePropertiesResponseComputeProfileArgs

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

ClusterPoolResourcePropertiesResponseLogAnalyticsProfile
, ClusterPoolResourcePropertiesResponseLogAnalyticsProfileArgs

Enabled This property is required. bool
True if log analytics is enabled for cluster pool, otherwise false.
WorkspaceId string
Log analytics workspace to associate with the OMS agent.
Enabled This property is required. bool
True if log analytics is enabled for cluster pool, otherwise false.
WorkspaceId string
Log analytics workspace to associate with the OMS agent.
enabled This property is required. Boolean
True if log analytics is enabled for cluster pool, otherwise false.
workspaceId String
Log analytics workspace to associate with the OMS agent.
enabled This property is required. boolean
True if log analytics is enabled for cluster pool, otherwise false.
workspaceId string
Log analytics workspace to associate with the OMS agent.
enabled This property is required. 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 This property is required. 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 This property is required. string
Cluster pool subnet resource id.
SubnetId This property is required. string
Cluster pool subnet resource id.
subnetId This property is required. String
Cluster pool subnet resource id.
subnetId This property is required. string
Cluster pool subnet resource id.
subnet_id This property is required. str
Cluster pool subnet resource id.
subnetId This property is required. 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} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi