azure-native.hdinsight.ClusterPool
Explore with Pulumi AI
Cluster pool.
Uses Azure REST API version 2023-06-01-preview.
Other available API versions: 2023-11-01-preview, 2024-05-01-preview.
Example Usage
ClusterPoolPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var clusterPool = new AzureNative.HDInsight.ClusterPool("clusterPool", new()
    {
        ClusterPoolName = "clusterpool1",
        ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
        {
            ClusterPoolVersion = "1.2",
        },
        ComputeProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfileArgs
        {
            VmSize = "Standard_D3_v2",
        },
        Location = "West US 2",
        ResourceGroupName = "hiloResourcegroup",
    });
});
package main
import (
	hdinsight "github.com/pulumi/pulumi-azure-native-sdk/hdinsight/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hdinsight.NewClusterPool(ctx, "clusterPool", &hdinsight.ClusterPoolArgs{
			ClusterPoolName: pulumi.String("clusterpool1"),
			ClusterPoolProfile: &hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs{
				ClusterPoolVersion: pulumi.String("1.2"),
			},
			ComputeProfile: &hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs{
				VmSize: pulumi.String("Standard_D3_v2"),
			},
			Location:          pulumi.String("West US 2"),
			ResourceGroupName: pulumi.String("hiloResourcegroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.hdinsight.ClusterPool;
import com.pulumi.azurenative.hdinsight.ClusterPoolArgs;
import com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs;
import com.pulumi.azurenative.hdinsight.inputs.ClusterPoolResourcePropertiesComputeProfileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var clusterPool = new ClusterPool("clusterPool", ClusterPoolArgs.builder()
            .clusterPoolName("clusterpool1")
            .clusterPoolProfile(ClusterPoolResourcePropertiesClusterPoolProfileArgs.builder()
                .clusterPoolVersion("1.2")
                .build())
            .computeProfile(ClusterPoolResourcePropertiesComputeProfileArgs.builder()
                .vmSize("Standard_D3_v2")
                .build())
            .location("West US 2")
            .resourceGroupName("hiloResourcegroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const clusterPool = new azure_native.hdinsight.ClusterPool("clusterPool", {
    clusterPoolName: "clusterpool1",
    clusterPoolProfile: {
        clusterPoolVersion: "1.2",
    },
    computeProfile: {
        vmSize: "Standard_D3_v2",
    },
    location: "West US 2",
    resourceGroupName: "hiloResourcegroup",
});
import pulumi
import pulumi_azure_native as azure_native
cluster_pool = azure_native.hdinsight.ClusterPool("clusterPool",
    cluster_pool_name="clusterpool1",
    cluster_pool_profile={
        "cluster_pool_version": "1.2",
    },
    compute_profile={
        "vm_size": "Standard_D3_v2",
    },
    location="West US 2",
    resource_group_name="hiloResourcegroup")
resources:
  clusterPool:
    type: azure-native:hdinsight:ClusterPool
    properties:
      clusterPoolName: clusterpool1
      clusterPoolProfile:
        clusterPoolVersion: '1.2'
      computeProfile:
        vmSize: Standard_D3_v2
      location: West US 2
      resourceGroupName: hiloResourcegroup
Create ClusterPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterPool(name: string, args: ClusterPoolArgs, opts?: CustomResourceOptions);@overload
def ClusterPool(resource_name: str,
                args: ClusterPoolArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def ClusterPool(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                compute_profile: Optional[ClusterPoolResourcePropertiesComputeProfileArgs] = None,
                resource_group_name: Optional[str] = None,
                cluster_pool_name: Optional[str] = None,
                cluster_pool_profile: Optional[ClusterPoolResourcePropertiesClusterPoolProfileArgs] = None,
                location: Optional[str] = None,
                log_analytics_profile: Optional[ClusterPoolResourcePropertiesLogAnalyticsProfileArgs] = None,
                managed_resource_group_name: Optional[str] = None,
                network_profile: Optional[ClusterPoolResourcePropertiesNetworkProfileArgs] = None,
                tags: Optional[Mapping[str, str]] = None)func NewClusterPool(ctx *Context, name string, args ClusterPoolArgs, opts ...ResourceOption) (*ClusterPool, error)public ClusterPool(string name, ClusterPoolArgs args, CustomResourceOptions? opts = null)
public ClusterPool(String name, ClusterPoolArgs args)
public ClusterPool(String name, ClusterPoolArgs args, CustomResourceOptions options)
type: azure-native:hdinsight:ClusterPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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",
    },
    ResourceGroupName = "string",
    ClusterPoolName = "string",
    ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
    {
        ClusterPoolVersion = "string",
    },
    Location = "string",
    LogAnalyticsProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs
    {
        Enabled = false,
        WorkspaceId = "string",
    },
    ManagedResourceGroupName = "string",
    NetworkProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesNetworkProfileArgs
    {
        SubnetId = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := hdinsight.NewClusterPool(ctx, "clusterPoolResource", &hdinsight.ClusterPoolArgs{
	ComputeProfile: &hdinsight.ClusterPoolResourcePropertiesComputeProfileArgs{
		VmSize: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	ClusterPoolName:   pulumi.String("string"),
	ClusterPoolProfile: &hdinsight.ClusterPoolResourcePropertiesClusterPoolProfileArgs{
		ClusterPoolVersion: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	LogAnalyticsProfile: &hdinsight.ClusterPoolResourcePropertiesLogAnalyticsProfileArgs{
		Enabled:     pulumi.Bool(false),
		WorkspaceId: pulumi.String("string"),
	},
	ManagedResourceGroupName: pulumi.String("string"),
	NetworkProfile: &hdinsight.ClusterPoolResourcePropertiesNetworkProfileArgs{
		SubnetId: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var clusterPoolResource = new ClusterPool("clusterPoolResource", ClusterPoolArgs.builder()
    .computeProfile(ClusterPoolResourcePropertiesComputeProfileArgs.builder()
        .vmSize("string")
        .build())
    .resourceGroupName("string")
    .clusterPoolName("string")
    .clusterPoolProfile(ClusterPoolResourcePropertiesClusterPoolProfileArgs.builder()
        .clusterPoolVersion("string")
        .build())
    .location("string")
    .logAnalyticsProfile(ClusterPoolResourcePropertiesLogAnalyticsProfileArgs.builder()
        .enabled(false)
        .workspaceId("string")
        .build())
    .managedResourceGroupName("string")
    .networkProfile(ClusterPoolResourcePropertiesNetworkProfileArgs.builder()
        .subnetId("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
cluster_pool_resource = azure_native.hdinsight.ClusterPool("clusterPoolResource",
    compute_profile={
        "vm_size": "string",
    },
    resource_group_name="string",
    cluster_pool_name="string",
    cluster_pool_profile={
        "cluster_pool_version": "string",
    },
    location="string",
    log_analytics_profile={
        "enabled": False,
        "workspace_id": "string",
    },
    managed_resource_group_name="string",
    network_profile={
        "subnet_id": "string",
    },
    tags={
        "string": "string",
    })
const clusterPoolResource = new azure_native.hdinsight.ClusterPool("clusterPoolResource", {
    computeProfile: {
        vmSize: "string",
    },
    resourceGroupName: "string",
    clusterPoolName: "string",
    clusterPoolProfile: {
        clusterPoolVersion: "string",
    },
    location: "string",
    logAnalyticsProfile: {
        enabled: false,
        workspaceId: "string",
    },
    managedResourceGroupName: "string",
    networkProfile: {
        subnetId: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:hdinsight:ClusterPool
properties:
    clusterPoolName: string
    clusterPoolProfile:
        clusterPoolVersion: string
    computeProfile:
        vmSize: string
    location: string
    logAnalyticsProfile:
        enabled: false
        workspaceId: string
    managedResourceGroupName: string
    networkProfile:
        subnetId: string
    resourceGroupName: string
    tags:
        string: string
ClusterPool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
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 Pulumi.Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Compute Profile 
- CLuster pool compute profile.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ClusterPool stringName 
- The name of the cluster pool.
- ClusterPool 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
- LogAnalytics 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.
- ManagedResource 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.
- NetworkProfile Pulumi.Azure Native. HDInsight. Inputs. Cluster Pool Resource Properties Network Profile 
- Cluster pool network profile.
- Dictionary<string, string>
- Resource tags.
- ComputeProfile ClusterPool Resource Properties Compute Profile Args 
- CLuster pool compute profile.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ClusterPool stringName 
- The name of the cluster pool.
- ClusterPool ClusterProfile Pool Resource Properties Cluster Pool Profile Args 
- CLuster pool profile.
- Location string
- The geo-location where the resource lives
- LogAnalytics ClusterProfile Pool Resource Properties Log Analytics Profile Args 
- Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- ManagedResource 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.
- NetworkProfile ClusterPool Resource Properties Network Profile Args 
- Cluster pool network profile.
- map[string]string
- Resource tags.
- computeProfile ClusterPool Resource Properties Compute Profile 
- CLuster pool compute profile.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- clusterPool StringName 
- The name of the cluster pool.
- clusterPool ClusterProfile Pool Resource Properties Cluster Pool Profile 
- CLuster pool profile.
- location String
- The geo-location where the resource lives
- logAnalytics ClusterProfile Pool Resource Properties Log Analytics Profile 
- Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managedResource 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.
- networkProfile ClusterPool Resource Properties Network Profile 
- Cluster pool network profile.
- Map<String,String>
- Resource tags.
- computeProfile ClusterPool Resource Properties Compute Profile 
- CLuster pool compute profile.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- clusterPool stringName 
- The name of the cluster pool.
- clusterPool ClusterProfile Pool Resource Properties Cluster Pool Profile 
- CLuster pool profile.
- location string
- The geo-location where the resource lives
- logAnalytics ClusterProfile Pool Resource Properties Log Analytics Profile 
- Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managedResource 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.
- networkProfile 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.
- computeProfile Property Map
- CLuster pool compute profile.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- clusterPool StringName 
- The name of the cluster pool.
- clusterPool Property MapProfile 
- CLuster pool profile.
- location String
- The geo-location where the resource lives
- logAnalytics Property MapProfile 
- Cluster pool log analytics profile to enable OMS agent for AKS cluster.
- managedResource 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.
- networkProfile 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:
- AksCluster Pulumi.Profile Azure Native. HDInsight. Outputs. Cluster Pool Resource Properties Response Aks Cluster Profile 
- Properties of underlying AKS cluster.
- AksManaged 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}
- 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.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"
- AksCluster ClusterProfile Pool Resource Properties Response Aks Cluster Profile 
- Properties of underlying AKS cluster.
- AksManaged 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}
- 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 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"
- aksCluster ClusterProfile Pool Resource Properties Response Aks Cluster Profile 
- Properties of underlying AKS cluster.
- aksManaged 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}
- 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 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"
- aksCluster ClusterProfile Pool Resource Properties Response Aks Cluster Profile 
- Properties of underlying AKS cluster.
- aksManaged 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}
- 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 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}
- 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"
- aksCluster Property MapProfile 
- Properties of underlying AKS cluster.
- aksManaged 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}
- 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                    
- MsiClient stringId 
- ClientId of the MSI.
- MsiObject stringId 
- ObjectId of the MSI.
- MsiResource stringId 
- ResourceId of the MSI.
- MsiClient stringId 
- ClientId of the MSI.
- MsiObject stringId 
- ObjectId of the MSI.
- MsiResource stringId 
- ResourceId of the MSI.
- msiClient StringId 
- ClientId of the MSI.
- msiObject StringId 
- ObjectId of the MSI.
- msiResource StringId 
- ResourceId of the MSI.
- msiClient stringId 
- ClientId of the MSI.
- msiObject stringId 
- ObjectId of the MSI.
- msiResource 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.
- msiClient StringId 
- ClientId of the MSI.
- msiObject StringId 
- ObjectId of the MSI.
- msiResource StringId 
- ResourceId of the MSI.
ClusterPoolResourcePropertiesClusterPoolProfile, ClusterPoolResourcePropertiesClusterPoolProfileArgs              
- ClusterPool stringVersion 
- Cluster pool version is a 2-part version.
- ClusterPool stringVersion 
- Cluster pool version is a 2-part version.
- clusterPool StringVersion 
- Cluster pool version is a 2-part version.
- clusterPool stringVersion 
- Cluster pool version is a 2-part version.
- cluster_pool_ strversion 
- Cluster pool version is a 2-part version.
- clusterPool StringVersion 
- Cluster pool version is a 2-part version.
ClusterPoolResourcePropertiesComputeProfile, ClusterPoolResourcePropertiesComputeProfileArgs            
- VmSize string
- The virtual machine SKU.
- VmSize string
- The virtual machine SKU.
- vmSize String
- The virtual machine SKU.
- vmSize string
- The virtual machine SKU.
- vm_size str
- The virtual machine SKU.
- vmSize String
- The virtual machine SKU.
ClusterPoolResourcePropertiesLogAnalyticsProfile, ClusterPoolResourcePropertiesLogAnalyticsProfileArgs              
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- WorkspaceId string
- Log analytics workspace to associate with the OMS agent.
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- WorkspaceId string
- Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId String
- Log analytics workspace to associate with the OMS agent.
- enabled boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId string
- Log analytics workspace to associate with the OMS agent.
- enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace_id str
- Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId String
- Log analytics workspace to associate with the OMS agent.
ClusterPoolResourcePropertiesNetworkProfile, ClusterPoolResourcePropertiesNetworkProfileArgs            
- SubnetId string
- Cluster pool subnet resource id.
- SubnetId string
- Cluster pool subnet resource id.
- subnetId String
- Cluster pool subnet resource id.
- subnetId string
- Cluster pool subnet resource id.
- subnet_id str
- Cluster pool subnet resource id.
- subnetId String
- Cluster pool subnet resource id.
ClusterPoolResourcePropertiesResponseAksClusterProfile, ClusterPoolResourcePropertiesResponseAksClusterProfileArgs                
- AksVersion string
- AKS control plane and default node pool version of this ClusterPool
- AksCluster 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
- AksCluster stringResource Id 
- ARM Resource ID of the AKS cluster
- AksVersion string
- AKS control plane and default node pool version of this ClusterPool
- AksCluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile 
- Identity properties of the AKS cluster agentpool MSI
- AksCluster stringResource Id 
- ARM Resource ID of the AKS cluster
- aksVersion String
- AKS control plane and default node pool version of this ClusterPool
- aksCluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile 
- Identity properties of the AKS cluster agentpool MSI
- aksCluster StringResource Id 
- ARM Resource ID of the AKS cluster
- aksVersion string
- AKS control plane and default node pool version of this ClusterPool
- aksCluster AksAgent Pool Identity Profile Cluster Profile Response Aks Cluster Agent Pool Identity Profile 
- Identity properties of the AKS cluster agentpool MSI
- aksCluster 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
- aksVersion String
- AKS control plane and default node pool version of this ClusterPool
- aksCluster Property MapAgent Pool Identity Profile 
- Identity properties of the AKS cluster agentpool MSI
- aksCluster StringResource Id 
- ARM Resource ID of the AKS cluster
ClusterPoolResourcePropertiesResponseClusterPoolProfile, ClusterPoolResourcePropertiesResponseClusterPoolProfileArgs                
- ClusterPool stringVersion 
- Cluster pool version is a 2-part version.
- ClusterPool stringVersion 
- Cluster pool version is a 2-part version.
- clusterPool StringVersion 
- Cluster pool version is a 2-part version.
- clusterPool stringVersion 
- Cluster pool version is a 2-part version.
- cluster_pool_ strversion 
- Cluster pool version is a 2-part version.
- clusterPool StringVersion 
- Cluster pool version is a 2-part version.
ClusterPoolResourcePropertiesResponseComputeProfile, ClusterPoolResourcePropertiesResponseComputeProfileArgs              
ClusterPoolResourcePropertiesResponseLogAnalyticsProfile, ClusterPoolResourcePropertiesResponseLogAnalyticsProfileArgs                
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- WorkspaceId string
- Log analytics workspace to associate with the OMS agent.
- Enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- WorkspaceId string
- Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId String
- Log analytics workspace to associate with the OMS agent.
- enabled boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId string
- Log analytics workspace to associate with the OMS agent.
- enabled bool
- True if log analytics is enabled for cluster pool, otherwise false.
- workspace_id str
- Log analytics workspace to associate with the OMS agent.
- enabled Boolean
- True if log analytics is enabled for cluster pool, otherwise false.
- workspaceId String
- Log analytics workspace to associate with the OMS agent.
ClusterPoolResourcePropertiesResponseNetworkProfile, ClusterPoolResourcePropertiesResponseNetworkProfileArgs              
- SubnetId string
- Cluster pool subnet resource id.
- SubnetId string
- Cluster pool subnet resource id.
- subnetId String
- Cluster pool subnet resource id.
- subnetId string
- Cluster pool subnet resource id.
- subnet_id str
- Cluster pool subnet resource id.
- subnetId String
- Cluster pool subnet resource id.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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