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

azure-native.hdinsight.ClusterPool

Explore with Pulumi AI

Cluster pool.

Uses Azure REST API version 2024-05-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-06-01-preview.

Other available API versions: 2023-06-01-preview, 2023-11-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native hdinsight [ApiVersion]. See the version guide for details.

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
        {
            AvailabilityZones = new[]
            {
                "1",
                "2",
                "3",
            },
            VmSize = "Standard_D3_v2",
        },
        Location = "West US 2",
        ResourceGroupName = "hiloResourcegroup",
    });

});
Copy
package main

import (
	hdinsight "github.com/pulumi/pulumi-azure-native-sdk/hdinsight/v3"
	"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{
				AvailabilityZones: pulumi.StringArray{
					pulumi.String("1"),
					pulumi.String("2"),
					pulumi.String("3"),
				},
				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()
                .availabilityZones(                
                    "1",
                    "2",
                    "3")
                .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: {
        availabilityZones: [
            "1",
            "2",
            "3",
        ],
        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={
        "availability_zones": [
            "1",
            "2",
            "3",
        ],
        "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:
        availabilityZones:
          - '1'
          - '2'
          - '3'
        vmSize: Standard_D3_v2
      location: West US 2
      resourceGroupName: hiloResourcegroup
Copy

ClusterPoolPutWithPrivateAks

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
        {
            AvailabilityZones = new[]
            {
                "1",
                "2",
                "3",
            },
            VmSize = "Standard_D3_v2",
        },
        Location = "West US 2",
        NetworkProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfileArgs
        {
            EnablePrivateApiServer = true,
            SubnetId = "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
        },
        ResourceGroupName = "hiloResourcegroup",
    });

});
Copy
package main

import (
	hdinsight "github.com/pulumi/pulumi-azure-native-sdk/hdinsight/v3"
	"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{
				AvailabilityZones: pulumi.StringArray{
					pulumi.String("1"),
					pulumi.String("2"),
					pulumi.String("3"),
				},
				VmSize: pulumi.String("Standard_D3_v2"),
			},
			Location: pulumi.String("West US 2"),
			NetworkProfile: &hdinsight.ClusterPoolResourcePropertiesNetworkProfileArgs{
				EnablePrivateApiServer: pulumi.Bool(true),
				SubnetId:               pulumi.String("/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"),
			},
			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 com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesNetworkProfileArgs;
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()
                .availabilityZones(                
                    "1",
                    "2",
                    "3")
                .vmSize("Standard_D3_v2")
                .build())
            .location("West US 2")
            .networkProfile(ClusterPoolResourcePropertiesNetworkProfileArgs.builder()
                .enablePrivateApiServer(true)
                .subnetId("/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1")
                .build())
            .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: {
        availabilityZones: [
            "1",
            "2",
            "3",
        ],
        vmSize: "Standard_D3_v2",
    },
    location: "West US 2",
    networkProfile: {
        enablePrivateApiServer: true,
        subnetId: "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
    },
    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={
        "availability_zones": [
            "1",
            "2",
            "3",
        ],
        "vm_size": "Standard_D3_v2",
    },
    location="West US 2",
    network_profile={
        "enable_private_api_server": True,
        "subnet_id": "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
    },
    resource_group_name="hiloResourcegroup")
Copy
resources:
  clusterPool:
    type: azure-native:hdinsight:ClusterPool
    properties:
      clusterPoolName: clusterpool1
      clusterPoolProfile:
        clusterPoolVersion: '1.2'
      computeProfile:
        availabilityZones:
          - '1'
          - '2'
          - '3'
        vmSize: Standard_D3_v2
      location: West US 2
      networkProfile:
        enablePrivateApiServer: true
        subnetId: /subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1
      resourceGroupName: hiloResourcegroup
Copy

ClusterPoolPutWithUDRAks

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
        {
            AvailabilityZones = new[]
            {
                "1",
                "2",
                "3",
            },
            VmSize = "Standard_D3_v2",
        },
        Location = "West US 2",
        NetworkProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfileArgs
        {
            OutboundType = AzureNative.HDInsight.OutboundType.UserDefinedRouting,
            SubnetId = "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
        },
        ResourceGroupName = "hiloResourcegroup",
    });

});
Copy
package main

import (
	hdinsight "github.com/pulumi/pulumi-azure-native-sdk/hdinsight/v3"
	"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{
				AvailabilityZones: pulumi.StringArray{
					pulumi.String("1"),
					pulumi.String("2"),
					pulumi.String("3"),
				},
				VmSize: pulumi.String("Standard_D3_v2"),
			},
			Location: pulumi.String("West US 2"),
			NetworkProfile: &hdinsight.ClusterPoolResourcePropertiesNetworkProfileArgs{
				OutboundType: pulumi.String(hdinsight.OutboundTypeUserDefinedRouting),
				SubnetId:     pulumi.String("/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"),
			},
			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 com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesNetworkProfileArgs;
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()
                .availabilityZones(                
                    "1",
                    "2",
                    "3")
                .vmSize("Standard_D3_v2")
                .build())
            .location("West US 2")
            .networkProfile(ClusterPoolResourcePropertiesNetworkProfileArgs.builder()
                .outboundType("userDefinedRouting")
                .subnetId("/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1")
                .build())
            .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: {
        availabilityZones: [
            "1",
            "2",
            "3",
        ],
        vmSize: "Standard_D3_v2",
    },
    location: "West US 2",
    networkProfile: {
        outboundType: azure_native.hdinsight.OutboundType.UserDefinedRouting,
        subnetId: "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
    },
    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={
        "availability_zones": [
            "1",
            "2",
            "3",
        ],
        "vm_size": "Standard_D3_v2",
    },
    location="West US 2",
    network_profile={
        "outbound_type": azure_native.hdinsight.OutboundType.USER_DEFINED_ROUTING,
        "subnet_id": "/subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1",
    },
    resource_group_name="hiloResourcegroup")
Copy
resources:
  clusterPool:
    type: azure-native:hdinsight:ClusterPool
    properties:
      clusterPoolName: clusterpool1
      clusterPoolProfile:
        clusterPoolVersion: '1.2'
      computeProfile:
        availabilityZones:
          - '1'
          - '2'
          - '3'
        vmSize: Standard_D3_v2
      location: West US 2
      networkProfile:
        outboundType: userDefinedRouting
        subnetId: /subscriptions/subid/resourceGroups/hiloResourcegroup/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1
      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 = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfileArgs
    {
        VmSize = "string",
        AvailabilityZones = new[]
        {
            "string",
        },
    },
    ResourceGroupName = "string",
    ClusterPoolName = "string",
    ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
    {
        ClusterPoolVersion = "string",
        PublicIpTag = new AzureNative.HDInsight.Inputs.IpTagArgs
        {
            IpTagType = "string",
            Tag = "string",
        },
    },
    Location = "string",
    LogAnalyticsProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
    {
        Enabled = false,
        WorkspaceId = "string",
    },
    ManagedResourceGroupName = "string",
    NetworkProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfileArgs
    {
        SubnetId = "string",
        ApiServerAuthorizedIpRanges = new[]
        {
            "string",
        },
        EnablePrivateApiServer = false,
        OutboundType = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := hdinsight.NewClusterPool(ctx, "clusterPoolResource", &hdinsight.ClusterPoolArgs{
	ComputeProfile: &hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs{
		VmSize: pulumi.String("string"),
		AvailabilityZones: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	ResourceGroupName: pulumi.String("string"),
	ClusterPoolName:   pulumi.String("string"),
	ClusterPoolProfile: &hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs{
		ClusterPoolVersion: pulumi.String("string"),
		PublicIpTag: &hdinsight.IpTagArgs{
			IpTagType: pulumi.String("string"),
			Tag:       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"),
		ApiServerAuthorizedIpRanges: pulumi.StringArray{
			pulumi.String("string"),
		},
		EnablePrivateApiServer: pulumi.Bool(false),
		OutboundType:           pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var clusterPoolResource = new ClusterPool("clusterPoolResource", ClusterPoolArgs.builder()
    .computeProfile(ClusterPoolResourcePropertiesComputeProfileArgs.builder()
        .vmSize("string")
        .availabilityZones("string")
        .build())
    .resourceGroupName("string")
    .clusterPoolName("string")
    .clusterPoolProfile(ClusterPoolResourcePropertiesClusterPoolProfileArgs.builder()
        .clusterPoolVersion("string")
        .publicIpTag(IpTagArgs.builder()
            .ipTagType("string")
            .tag("string")
            .build())
        .build())
    .location("string")
    .logAnalyticsProfile(ClusterPoolResourcePropertiesLogAnalyticsProfileArgs.builder()
        .enabled(false)
        .workspaceId("string")
        .build())
    .managedResourceGroupName("string")
    .networkProfile(ClusterPoolResourcePropertiesNetworkProfileArgs.builder()
        .subnetId("string")
        .apiServerAuthorizedIpRanges("string")
        .enablePrivateApiServer(false)
        .outboundType("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
cluster_pool_resource = azure_native.hdinsight.ClusterPool("clusterPoolResource",
    compute_profile={
        "vm_size": "string",
        "availability_zones": ["string"],
    },
    resource_group_name="string",
    cluster_pool_name="string",
    cluster_pool_profile={
        "cluster_pool_version": "string",
        "public_ip_tag": {
            "ip_tag_type": "string",
            "tag": "string",
        },
    },
    location="string",
    log_analytics_profile={
        "enabled": False,
        "workspace_id": "string",
    },
    managed_resource_group_name="string",
    network_profile={
        "subnet_id": "string",
        "api_server_authorized_ip_ranges": ["string"],
        "enable_private_api_server": False,
        "outbound_type": "string",
    },
    tags={
        "string": "string",
    })
Copy
const clusterPoolResource = new azure_native.hdinsight.ClusterPool("clusterPoolResource", {
    computeProfile: {
        vmSize: "string",
        availabilityZones: ["string"],
    },
    resourceGroupName: "string",
    clusterPoolName: "string",
    clusterPoolProfile: {
        clusterPoolVersion: "string",
        publicIpTag: {
            ipTagType: "string",
            tag: "string",
        },
    },
    location: "string",
    logAnalyticsProfile: {
        enabled: false,
        workspaceId: "string",
    },
    managedResourceGroupName: "string",
    networkProfile: {
        subnetId: "string",
        apiServerAuthorizedIpRanges: ["string"],
        enablePrivateApiServer: false,
        outboundType: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:hdinsight:ClusterPool
properties:
    clusterPoolName: string
    clusterPoolProfile:
        clusterPoolVersion: string
        publicIpTag:
            ipTagType: string
            tag: string
    computeProfile:
        availabilityZones:
            - string
        vmSize: string
    location: string
    logAnalyticsProfile:
        enabled: false
        workspaceId: string
    managedResourceGroupName: string
    networkProfile:
        apiServerAuthorizedIpRanges:
            - string
        enablePrivateApiServer: false
        outboundType: string
        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}
AzureApiVersion string
The Azure API version of the resource.
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}
AzureApiVersion string
The Azure API version of the resource.
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}
azureApiVersion String
The Azure API version of the resource.
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}
azureApiVersion string
The Azure API version of the resource.
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}
azure_api_version str
The Azure API version of the resource.
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}
azureApiVersion String
The Azure API version of the resource.
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.
PublicIpTag Pulumi.AzureNative.HDInsight.Inputs.IpTag
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
ClusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
PublicIpTag IpTag
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.
publicIpTag IpTag
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
publicIpTag IpTag
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
cluster_pool_version This property is required. str
Cluster pool version is a 2-part version.
public_ip_tag IpTag
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.
publicIpTag Property Map
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.

ClusterPoolResourcePropertiesComputeProfile
, ClusterPoolResourcePropertiesComputeProfileArgs

VmSize This property is required. string
The virtual machine SKU.
AvailabilityZones List<string>
The list of Availability zones to use for AKS VMSS nodes.
VmSize This property is required. string
The virtual machine SKU.
AvailabilityZones []string
The list of Availability zones to use for AKS VMSS nodes.
vmSize This property is required. String
The virtual machine SKU.
availabilityZones List<String>
The list of Availability zones to use for AKS VMSS nodes.
vmSize This property is required. string
The virtual machine SKU.
availabilityZones string[]
The list of Availability zones to use for AKS VMSS nodes.
vm_size This property is required. str
The virtual machine SKU.
availability_zones Sequence[str]
The list of Availability zones to use for AKS VMSS nodes.
vmSize This property is required. String
The virtual machine SKU.
availabilityZones List<String>
The list of Availability zones to use for AKS VMSS nodes.

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.
ApiServerAuthorizedIpRanges List<string>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
EnablePrivateApiServer bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
OutboundType string | Pulumi.AzureNative.HDInsight.OutboundType
This can only be set at cluster pool creation time and cannot be changed later.
SubnetId This property is required. string
Cluster pool subnet resource id.
ApiServerAuthorizedIpRanges []string
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
EnablePrivateApiServer bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
OutboundType string | OutboundType
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. String
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges List<String>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer Boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType String | OutboundType
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. string
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges string[]
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType string | OutboundType
This can only be set at cluster pool creation time and cannot be changed later.
subnet_id This property is required. str
Cluster pool subnet resource id.
api_server_authorized_ip_ranges Sequence[str]
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enable_private_api_server bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outbound_type str | OutboundType
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. String
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges List<String>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer Boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType String | "loadBalancer" | "userDefinedRouting"
This can only be set at cluster pool creation time and cannot be changed later.

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.
PublicIpTag Pulumi.AzureNative.HDInsight.Inputs.IpTagResponse
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
ClusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
PublicIpTag IpTagResponse
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.
publicIpTag IpTagResponse
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. string
Cluster pool version is a 2-part version.
publicIpTag IpTagResponse
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
cluster_pool_version This property is required. str
Cluster pool version is a 2-part version.
public_ip_tag IpTagResponse
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
clusterPoolVersion This property is required. String
Cluster pool version is a 2-part version.
publicIpTag Property Map
Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.

ClusterPoolResourcePropertiesResponseComputeProfile
, ClusterPoolResourcePropertiesResponseComputeProfileArgs

Count This property is required. int
The number of virtual machines.
VmSize This property is required. string
The virtual machine SKU.
AvailabilityZones List<string>
The list of Availability zones to use for AKS VMSS nodes.
Count This property is required. int
The number of virtual machines.
VmSize This property is required. string
The virtual machine SKU.
AvailabilityZones []string
The list of Availability zones to use for AKS VMSS nodes.
count This property is required. Integer
The number of virtual machines.
vmSize This property is required. String
The virtual machine SKU.
availabilityZones List<String>
The list of Availability zones to use for AKS VMSS nodes.
count This property is required. number
The number of virtual machines.
vmSize This property is required. string
The virtual machine SKU.
availabilityZones string[]
The list of Availability zones to use for AKS VMSS nodes.
count This property is required. int
The number of virtual machines.
vm_size This property is required. str
The virtual machine SKU.
availability_zones Sequence[str]
The list of Availability zones to use for AKS VMSS nodes.
count This property is required. Number
The number of virtual machines.
vmSize This property is required. String
The virtual machine SKU.
availabilityZones List<String>
The list of Availability zones to use for AKS VMSS nodes.

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.
ApiServerAuthorizedIpRanges List<string>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
EnablePrivateApiServer bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
OutboundType string
This can only be set at cluster pool creation time and cannot be changed later.
SubnetId This property is required. string
Cluster pool subnet resource id.
ApiServerAuthorizedIpRanges []string
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
EnablePrivateApiServer bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
OutboundType string
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. String
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges List<String>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer Boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType String
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. string
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges string[]
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType string
This can only be set at cluster pool creation time and cannot be changed later.
subnet_id This property is required. str
Cluster pool subnet resource id.
api_server_authorized_ip_ranges Sequence[str]
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enable_private_api_server bool
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outbound_type str
This can only be set at cluster pool creation time and cannot be changed later.
subnetId This property is required. String
Cluster pool subnet resource id.
apiServerAuthorizedIpRanges List<String>
IP ranges are specified in CIDR format, e.g. 137.117.106.88/29. This feature is not compatible with private AKS clusters. So you cannot set enablePrivateApiServer to true and apiServerAuthorizedIpRanges at the same time. Currently, this property is not supported and please don't use it.
enablePrivateApiServer Boolean
ClusterPool is based on AKS cluster. AKS cluster exposes the API server to public internet by default. If you set this property to true, a private AKS cluster will be created, and it will use private apiserver, which is not exposed to public internet.
outboundType String
This can only be set at cluster pool creation time and cannot be changed later.

IpTag
, IpTagArgs

IpTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
Tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
IpTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
Tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. String
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. String
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ip_tag_type This property is required. str
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. str
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. String
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. String
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc

IpTagResponse
, IpTagResponseArgs

IpTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
Tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
IpTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
Tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. String
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. String
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. string
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. string
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ip_tag_type This property is required. str
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. str
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
ipTagType This property is required. String
Gets or sets the ipTag type: Example FirstPartyUsage.
tag This property is required. String
Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc

OutboundType
, OutboundTypeArgs

LoadBalancer
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
UserDefinedRouting
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.
OutboundTypeLoadBalancer
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
OutboundTypeUserDefinedRouting
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.
LoadBalancer
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
UserDefinedRouting
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.
LoadBalancer
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
UserDefinedRouting
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.
LOAD_BALANCER
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
USER_DEFINED_ROUTING
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.
"loadBalancer"
loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
"userDefinedRouting"
userDefinedRoutingEgress paths must be defined by the user. This is an advanced scenario and requires proper network configuration.

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 pulumi/pulumi-azure-native
License
Apache-2.0