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",
});
});
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
})
}
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());
}
}
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",
});
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")
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
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",
});
});
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
})
}
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());
}
}
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",
});
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")
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
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",
});
});
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
})
}
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());
}
}
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",
});
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")
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
Create ClusterPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterPool(name: string, args: ClusterPoolArgs, opts?: CustomResourceOptions);
@overload
def ClusterPool(resource_name: str,
args: ClusterPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
compute_profile: Optional[ClusterPoolResourcePropertiesComputeProfileArgs] = None,
resource_group_name: Optional[str] = None,
cluster_pool_name: Optional[str] = None,
cluster_pool_profile: Optional[ClusterPoolResourcePropertiesClusterPoolProfileArgs] = None,
location: Optional[str] = None,
log_analytics_profile: Optional[ClusterPoolResourcePropertiesLogAnalyticsProfileArgs] = None,
managed_resource_group_name: Optional[str] = None,
network_profile: Optional[ClusterPoolResourcePropertiesNetworkProfileArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewClusterPool(ctx *Context, name string, args ClusterPoolArgs, opts ...ResourceOption) (*ClusterPool, error)
public ClusterPool(string name, ClusterPoolArgs args, CustomResourceOptions? opts = null)
public ClusterPool(String name, ClusterPoolArgs args)
public ClusterPool(String name, ClusterPoolArgs args, CustomResourceOptions options)
type: azure-native:hdinsight:ClusterPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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" },
},
});
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"),
},
})
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());
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",
})
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",
},
});
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
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:
- Compute
Profile Pulumi.Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Compute Profile - CLuster pool compute profile.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Pool stringName - The name of the cluster pool.
- Cluster
Pool Pulumi.Profile Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Cluster Pool Profile - CLuster pool profile.
- Location string
- The geo-location where the resource lives
- Log
Analytics Pulumi.Profile Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Log Analytics Profile - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- Managed
Resource stringGroup Name - 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 Pulumi.Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Network Profile - Cluster pool network profile.
- Dictionary<string, string>
- Resource tags.
- Compute
Profile ClusterPool Resource Properties Compute Profile Args - CLuster pool compute profile.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cluster
Pool stringName - The name of the cluster pool.
- Cluster
Pool ClusterProfile Pool Resource Properties Cluster Pool Profile Args - CLuster pool profile.
- Location string
- The geo-location where the resource lives
- Log
Analytics ClusterProfile Pool Resource Properties Log Analytics Profile Args - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- Managed
Resource stringGroup Name - 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 ClusterPool Resource Properties Network Profile Args - Cluster pool network profile.
- map[string]string
- Resource tags.
- compute
Profile ClusterPool Resource Properties Compute Profile - CLuster pool compute profile.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Pool StringName - The name of the cluster pool.
- cluster
Pool ClusterProfile Pool Resource Properties Cluster Pool Profile - CLuster pool profile.
- location String
- The geo-location where the resource lives
- log
Analytics ClusterProfile Pool Resource Properties Log Analytics Profile - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managed
Resource StringGroup Name - 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 ClusterPool Resource Properties Network Profile - Cluster pool network profile.
- Map<String,String>
- Resource tags.
- compute
Profile ClusterPool Resource Properties Compute Profile - CLuster pool compute profile.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cluster
Pool stringName - The name of the cluster pool.
- cluster
Pool ClusterProfile Pool Resource Properties Cluster Pool Profile - CLuster pool profile.
- location string
- The geo-location where the resource lives
- log
Analytics ClusterProfile Pool Resource Properties Log Analytics Profile - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managed
Resource stringGroup Name - 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 ClusterPool Resource Properties Network Profile - Cluster pool network profile.
- {[key: string]: string}
- Resource tags.
- compute_
profile ClusterPool Resource Properties Compute Profile Args - CLuster pool compute profile.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cluster_
pool_ strname - The name of the cluster pool.
- cluster_
pool_ Clusterprofile Pool Resource Properties Cluster Pool Profile Args - CLuster pool profile.
- location str
- The geo-location where the resource lives
- log_
analytics_ Clusterprofile Pool Resource Properties Log Analytics Profile Args - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managed_
resource_ strgroup_ name - 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 ClusterPool Resource Properties Network Profile Args - Cluster pool network profile.
- Mapping[str, str]
- Resource tags.
- compute
Profile Property Map - CLuster pool compute profile.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cluster
Pool StringName - The name of the cluster pool.
- cluster
Pool Property MapProfile - CLuster pool profile.
- location String
- The geo-location where the resource lives
- log
Analytics Property MapProfile - Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managed
Resource StringGroup Name - 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 Property Map - Cluster pool network profile.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterPool resource produces the following output properties:
- Aks
Cluster Pulumi.Profile Azure Native. HDInsight. Outputs. Cluster Pool Resource Properties Response Aks Cluster Profile - Properties of underlying AKS cluster.
- Aks
Managed stringResource Group Name - 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 stringVersion - The Azure API version of the resource.
- Deployment
Id 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
- Provisioning
State string - Provisioning state of the resource.
- Status string
- Business status of the resource.
- System
Data Pulumi.Azure Native. HDInsight. Outputs. System Data Response - 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 ClusterProfile Pool Resource Properties Response Aks Cluster Profile - Properties of underlying AKS cluster.
- Aks
Managed stringResource Group Name - 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 stringVersion - The Azure API version of the resource.
- Deployment
Id 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
- Provisioning
State string - Provisioning state of the resource.
- Status string
- Business status of the resource.
- System
Data SystemData Response - 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 ClusterProfile Pool Resource Properties Response Aks Cluster Profile - Properties of underlying AKS cluster.
- aks
Managed StringResource Group Name - 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 StringVersion - The Azure API version of the resource.
- deployment
Id 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
- provisioning
State String - Provisioning state of the resource.
- status String
- Business status of the resource.
- system
Data SystemData Response - 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 ClusterProfile Pool Resource Properties Response Aks Cluster Profile - Properties of underlying AKS cluster.
- aks
Managed stringResource Group Name - 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 stringVersion - The Azure API version of the resource.
- deployment
Id 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
- provisioning
State string - Provisioning state of the resource.
- status string
- Business status of the resource.
- system
Data SystemData Response - 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_ Clusterprofile Pool Resource Properties Response Aks Cluster Profile - Properties of underlying AKS cluster.
- aks_
managed_ strresource_ group_ name - 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_ strversion - 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 SystemData Response - 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"
- aks
Cluster Property MapProfile - Properties of underlying AKS cluster.
- aks
Managed StringResource Group Name - 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 StringVersion - The Azure API version of the resource.
- deployment
Id 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
- provisioning
State String - Provisioning state of the resource.
- status String
- Business status of the resource.
- system
Data 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
- Msi
Client stringId - ClientId of the MSI.
- Msi
Object stringId - ObjectId of the MSI.
- Msi
Resource stringId - ResourceId of the MSI.
- Msi
Client stringId - ClientId of the MSI.
- Msi
Object stringId - ObjectId of the MSI.
- Msi
Resource stringId - ResourceId of the MSI.
- msi
Client StringId - ClientId of the MSI.
- msi
Object StringId - ObjectId of the MSI.
- msi
Resource StringId - ResourceId of the MSI.
- msi
Client stringId - ClientId of the MSI.
- msi
Object stringId - ObjectId of the MSI.
- msi
Resource stringId - ResourceId of the MSI.
- msi_
client_ strid - ClientId of the MSI.
- msi_
object_ strid - ObjectId of the MSI.
- msi_
resource_ strid - ResourceId of the MSI.
- msi
Client StringId - ClientId of the MSI.
- msi
Object StringId - ObjectId of the MSI.
- msi
Resource StringId - ResourceId of the MSI.
ClusterPoolResourcePropertiesClusterPoolProfile, ClusterPoolResourcePropertiesClusterPoolProfileArgs
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- Public
Ip Pulumi.Tag Azure Native. HDInsight. Inputs. Ip Tag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- Public
Ip IpTag Tag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- public
Ip IpTag Tag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- public
Ip IpTag Tag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster_
pool_ strversion - Cluster pool version is a 2-part version.
- public_
ip_ Iptag Tag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- public
Ip Property MapTag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
ClusterPoolResourcePropertiesComputeProfile, ClusterPoolResourcePropertiesComputeProfileArgs
- Vm
Size string - The virtual machine SKU.
- Availability
Zones List<string> - The list of Availability zones to use for AKS VMSS nodes.
- Vm
Size string - The virtual machine SKU.
- Availability
Zones []string - The list of Availability zones to use for AKS VMSS nodes.
- vm
Size String - The virtual machine SKU.
- availability
Zones List<String> - The list of Availability zones to use for AKS VMSS nodes.
- vm
Size string - The virtual machine SKU.
- availability
Zones string[] - The list of Availability zones to use for AKS VMSS nodes.
- vm_
size str - The virtual machine SKU.
- availability_
zones Sequence[str] - The list of Availability zones to use for AKS VMSS nodes.
- vm
Size String - The virtual machine SKU.
- availability
Zones List<String> - The list of Availability zones to use for AKS VMSS nodes.
ClusterPoolResourcePropertiesLogAnalyticsProfile, ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- Workspace
Id string - Log analytics workspace to associate with the OMS agent.
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- Workspace
Id string - Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id String - Log analytics workspace to associate with the OMS agent.
- enabled boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id string - Log analytics workspace to associate with the OMS agent.
- enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace_
id str - Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id String - Log analytics workspace to associate with the OMS agent.
ClusterPoolResourcePropertiesNetworkProfile, ClusterPoolResourcePropertiesNetworkProfileArgs
- Subnet
Id string - Cluster pool subnet resource id.
- 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.
- Enable
Private boolApi Server - 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 string | Pulumi.Azure Native. HDInsight. Outbound Type - This can only be set at cluster pool creation time and cannot be changed later.
- Subnet
Id string - Cluster pool subnet resource id.
- []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.
- Enable
Private boolApi Server - 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 string | OutboundType - This can only be set at cluster pool creation time and cannot be changed later.
- subnet
Id String - Cluster pool subnet resource id.
- 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.
- enable
Private BooleanApi Server - 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 String | OutboundType - This can only be set at cluster pool creation time and cannot be changed later.
- subnet
Id string - Cluster pool subnet resource id.
- 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.
- enable
Private booleanApi Server - 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 string | OutboundType - This can only be set at cluster pool creation time and cannot be changed later.
- subnet_
id str - Cluster pool subnet resource id.
- 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_ boolapi_ server - 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.
- subnet
Id String - Cluster pool subnet resource id.
- 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.
- enable
Private BooleanApi Server - 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 String | "loadBalancer" | "user Defined Routing" - This can only be set at cluster pool creation time and cannot be changed later.
ClusterPoolResourcePropertiesResponseAksClusterProfile, ClusterPoolResourcePropertiesResponseAksClusterProfileArgs
- Aks
Version string - AKS control plane and default node pool version of this ClusterPool
- Aks
Cluster Pulumi.Agent Pool Identity Profile Azure Native. HDInsight. Inputs. Aks Cluster Profile Response Aks Cluster Agent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- Aks
Cluster stringResource Id - ARM Resource ID of the AKS cluster
- Aks
Version string - AKS control plane and default node pool version of this ClusterPool
- Aks
Cluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- Aks
Cluster stringResource Id - ARM Resource ID of the AKS cluster
- aks
Version String - AKS control plane and default node pool version of this ClusterPool
- aks
Cluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- aks
Cluster StringResource Id - ARM Resource ID of the AKS cluster
- aks
Version string - AKS control plane and default node pool version of this ClusterPool
- aks
Cluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- aks
Cluster stringResource Id - ARM Resource ID of the AKS cluster
- aks_
version str - AKS control plane and default node pool version of this ClusterPool
- aks_
cluster_ Aksagent_ pool_ identity_ profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- aks_
cluster_ strresource_ id - ARM Resource ID of the AKS cluster
- aks
Version String - AKS control plane and default node pool version of this ClusterPool
- aks
Cluster Property MapAgent Pool Identity Profile - Identity properties of the AKS cluster agentpool MSI
- aks
Cluster StringResource Id - ARM Resource ID of the AKS cluster
ClusterPoolResourcePropertiesResponseClusterPoolProfile, ClusterPoolResourcePropertiesResponseClusterPoolProfileArgs
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- Public
Ip Pulumi.Tag Azure Native. HDInsight. Inputs. Ip Tag Response - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- Public
Ip IpTag Tag Response - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- public
Ip IpTag Tag Response - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- public
Ip IpTag Tag Response - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster_
pool_ strversion - Cluster pool version is a 2-part version.
- public_
ip_ Iptag Tag Response - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- public
Ip Property MapTag - Gets or sets the IP tag for the public IPs created along with the HDInsightOnAks ClusterPools and Clusters.
ClusterPoolResourcePropertiesResponseComputeProfile, ClusterPoolResourcePropertiesResponseComputeProfileArgs
- Count int
- The number of virtual machines.
- Vm
Size string - The virtual machine SKU.
- Availability
Zones List<string> - The list of Availability zones to use for AKS VMSS nodes.
- Count int
- The number of virtual machines.
- Vm
Size string - The virtual machine SKU.
- Availability
Zones []string - The list of Availability zones to use for AKS VMSS nodes.
- count Integer
- The number of virtual machines.
- vm
Size String - The virtual machine SKU.
- availability
Zones List<String> - The list of Availability zones to use for AKS VMSS nodes.
- count number
- The number of virtual machines.
- vm
Size string - The virtual machine SKU.
- availability
Zones string[] - The list of Availability zones to use for AKS VMSS nodes.
- count int
- The number of virtual machines.
- vm_
size str - The virtual machine SKU.
- availability_
zones Sequence[str] - The list of Availability zones to use for AKS VMSS nodes.
- count Number
- The number of virtual machines.
- vm
Size String - The virtual machine SKU.
- availability
Zones List<String> - The list of Availability zones to use for AKS VMSS nodes.
ClusterPoolResourcePropertiesResponseLogAnalyticsProfile, ClusterPoolResourcePropertiesResponseLogAnalyticsProfileArgs
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- Workspace
Id string - Log analytics workspace to associate with the OMS agent.
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- Workspace
Id string - Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id String - Log analytics workspace to associate with the OMS agent.
- enabled boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id string - Log analytics workspace to associate with the OMS agent.
- enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace_
id str - Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace
Id String - Log analytics workspace to associate with the OMS agent.
ClusterPoolResourcePropertiesResponseNetworkProfile, ClusterPoolResourcePropertiesResponseNetworkProfileArgs
- Subnet
Id string - Cluster pool subnet resource id.
- 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.
- Enable
Private boolApi Server - 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 string - This can only be set at cluster pool creation time and cannot be changed later.
- Subnet
Id string - Cluster pool subnet resource id.
- []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.
- Enable
Private boolApi Server - 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 string - This can only be set at cluster pool creation time and cannot be changed later.
- subnet
Id String - Cluster pool subnet resource id.
- 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.
- enable
Private BooleanApi Server - 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 String - This can only be set at cluster pool creation time and cannot be changed later.
- subnet
Id string - Cluster pool subnet resource id.
- 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.
- enable
Private booleanApi Server - 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 string - This can only be set at cluster pool creation time and cannot be changed later.
- subnet_
id str - Cluster pool subnet resource id.
- 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_ boolapi_ server - 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.
- subnet
Id String - Cluster pool subnet resource id.
- 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.
- enable
Private BooleanApi Server - 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 String - This can only be set at cluster pool creation time and cannot be changed later.
IpTag, IpTagArgs
- ip_
tag_ strtype - Gets or sets the ipTag type: Example FirstPartyUsage.
- tag str
- Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
IpTagResponse, IpTagResponseArgs
- ip_
tag_ strtype - Gets or sets the ipTag type: Example FirstPartyUsage.
- tag str
- Gets or sets value of the IpTag associated with the public IP. Example HDInsight, SQL, Storage etc
OutboundType, OutboundTypeArgs
- 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.
- Outbound
Type Load Balancer - loadBalancerThe load balancer is used for egress through an AKS assigned public IP. This supports Kubernetes services of type 'loadBalancer'.
- Outbound
Type User Defined Routing - 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.
- 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.
- 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.
- "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.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hdinsight:ClusterPool clusterpool1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusterpools/{clusterPoolName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0