azure-native.hdinsight.ClusterPool
Explore with Pulumi AI
Cluster pool. Azure REST API version: 2023-06-01-preview.
Other available API versions: 2023-11-01-preview, 2024-05-01-preview.
Example Usage
ClusterPoolPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var clusterPool = new AzureNative.HDInsight.ClusterPool("clusterPool", new()
{
ClusterPoolName = "clusterpool1",
ClusterPoolProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesClusterPoolProfileArgs
{
ClusterPoolVersion = "1.2",
},
ComputeProfile = new AzureNative.HDInsight.Inputs.ClusterPoolResourcePropertiesComputeProfileArgs
{
VmSize = "Standard_D3_v2",
},
Location = "West US 2",
ResourceGroupName = "hiloResourcegroup",
});
});
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 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")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const clusterPool = new azure_native.hdinsight.ClusterPool("clusterPool", {
clusterPoolName: "clusterpool1",
clusterPoolProfile: {
clusterPoolVersion: "1.2",
},
computeProfile: {
vmSize: "Standard_D3_v2",
},
location: "West US 2",
resourceGroupName: "hiloResourcegroup",
});
resources:
clusterPool:
type: azure-native:hdinsight:ClusterPool
properties:
clusterPoolName: clusterpool1
clusterPoolProfile:
clusterPoolVersion: '1.2'
computeProfile:
vmSize: Standard_D3_v2
location: West US 2
resourceGroupName: hiloResourcegroup
Create ClusterPool Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterPool(name: string, args: ClusterPoolArgs, opts?: CustomResourceOptions);
@overload
def ClusterPool(resource_name: str,
args: ClusterPoolArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterPool(resource_name: str,
opts: Optional[ResourceOptions] = None,
compute_profile: Optional[ClusterPoolResourcePropertiesComputeProfileArgs] = None,
resource_group_name: Optional[str] = None,
cluster_pool_name: Optional[str] = None,
cluster_pool_profile: Optional[ClusterPoolResourcePropertiesClusterPoolProfileArgs] = None,
location: Optional[str] = None,
log_analytics_profile: Optional[ClusterPoolResourcePropertiesLogAnalyticsProfileArgs] = None,
managed_resource_group_name: Optional[str] = None,
network_profile: Optional[ClusterPoolResourcePropertiesNetworkProfileArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewClusterPool(ctx *Context, name string, args ClusterPoolArgs, opts ...ResourceOption) (*ClusterPool, error)
public ClusterPool(string name, ClusterPoolArgs args, CustomResourceOptions? opts = null)
public ClusterPool(String name, ClusterPoolArgs args)
public ClusterPool(String name, ClusterPoolArgs args, CustomResourceOptions options)
type: azure-native:hdinsight:ClusterPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterPoolArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
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={
"vmSize": "string",
},
resource_group_name="string",
cluster_pool_name="string",
cluster_pool_profile={
"clusterPoolVersion": "string",
},
location="string",
log_analytics_profile={
"enabled": False,
"workspaceId": "string",
},
managed_resource_group_name="string",
network_profile={
"subnetId": "string",
},
tags={
"string": "string",
})
const clusterPoolResource = new azure_native.hdinsight.ClusterPool("clusterPoolResource", {
computeProfile: {
vmSize: "string",
},
resourceGroupName: "string",
clusterPoolName: "string",
clusterPoolProfile: {
clusterPoolVersion: "string",
},
location: "string",
logAnalyticsProfile: {
enabled: false,
workspaceId: "string",
},
managedResourceGroupName: "string",
networkProfile: {
subnetId: "string",
},
tags: {
string: "string",
},
});
type: azure-native:hdinsight:ClusterPool
properties:
clusterPoolName: string
clusterPoolProfile:
clusterPoolVersion: string
computeProfile:
vmSize: string
location: string
logAnalyticsProfile:
enabled: false
workspaceId: string
managedResourceGroupName: string
networkProfile:
subnetId: string
resourceGroupName: string
tags:
string: string
ClusterPool Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ClusterPool resource accepts the following input properties:
- 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}
- 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}
- 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}
- 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}
- 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}
- 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}
- 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.
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- cluster_
pool_ strversion - Cluster pool version is a 2-part version.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
ClusterPoolResourcePropertiesComputeProfile, ClusterPoolResourcePropertiesComputeProfileArgs
- Vm
Size string - The virtual machine SKU.
- Vm
Size string - The virtual machine SKU.
- vm
Size String - The virtual machine SKU.
- vm
Size string - The virtual machine SKU.
- vm_
size str - The virtual machine SKU.
- vm
Size String - The virtual machine SKU.
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.
- Subnet
Id string - Cluster pool subnet resource id.
- subnet
Id String - Cluster pool subnet resource id.
- subnet
Id string - Cluster pool subnet resource id.
- subnet_
id str - Cluster pool subnet resource id.
- subnet
Id String - Cluster pool subnet resource id.
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.
- Cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- cluster
Pool StringVersion - Cluster pool version is a 2-part version.
- cluster
Pool stringVersion - Cluster pool version is a 2-part version.
- cluster_
pool_ strversion - Cluster pool version is a 2-part version.
- cluster
Pool 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.
- 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.
- Subnet
Id string - Cluster pool subnet resource id.
- subnet
Id String - Cluster pool subnet resource id.
- subnet
Id string - Cluster pool subnet resource id.
- subnet_
id str - Cluster pool subnet resource id.
- subnet
Id String - Cluster pool subnet resource id.
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