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

azure-native.operationalinsights.Cluster

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    The top level Log Analytics cluster resource container.

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

    Other available API versions: 2019-08-01-preview, 2020-03-01-preview, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01, 2025-02-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native operationalinsights [ApiVersion]. See the version guide for details.

    Example Usage

    ClustersCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var cluster = new AzureNative.OperationalInsights.Cluster("cluster", new()
        {
            ClusterName = "oiautorest6685",
            Location = "australiasoutheast",
            ResourceGroupName = "oiautorest6685",
            Sku = new AzureNative.OperationalInsights.Inputs.ClusterSkuArgs
            {
                Capacity = 1000,
                Name = AzureNative.OperationalInsights.ClusterSkuNameEnum.CapacityReservation,
            },
            Tags = 
            {
                { "tag1", "val1" },
            },
        });
    
    });
    
    package main
    
    import (
    	operationalinsights "github.com/pulumi/pulumi-azure-native-sdk/operationalinsights/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := operationalinsights.NewCluster(ctx, "cluster", &operationalinsights.ClusterArgs{
    			ClusterName:       pulumi.String("oiautorest6685"),
    			Location:          pulumi.String("australiasoutheast"),
    			ResourceGroupName: pulumi.String("oiautorest6685"),
    			Sku: &operationalinsights.ClusterSkuArgs{
    				Capacity: pulumi.Float64(1000),
    				Name:     pulumi.String(operationalinsights.ClusterSkuNameEnumCapacityReservation),
    			},
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("val1"),
    			},
    		})
    		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.operationalinsights.Cluster;
    import com.pulumi.azurenative.operationalinsights.ClusterArgs;
    import com.pulumi.azurenative.operationalinsights.inputs.ClusterSkuArgs;
    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 cluster = new Cluster("cluster", ClusterArgs.builder()
                .clusterName("oiautorest6685")
                .location("australiasoutheast")
                .resourceGroupName("oiautorest6685")
                .sku(ClusterSkuArgs.builder()
                    .capacity(1000.0)
                    .name("CapacityReservation")
                    .build())
                .tags(Map.of("tag1", "val1"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const cluster = new azure_native.operationalinsights.Cluster("cluster", {
        clusterName: "oiautorest6685",
        location: "australiasoutheast",
        resourceGroupName: "oiautorest6685",
        sku: {
            capacity: 1000,
            name: azure_native.operationalinsights.ClusterSkuNameEnum.CapacityReservation,
        },
        tags: {
            tag1: "val1",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    cluster = azure_native.operationalinsights.Cluster("cluster",
        cluster_name="oiautorest6685",
        location="australiasoutheast",
        resource_group_name="oiautorest6685",
        sku={
            "capacity": 1000,
            "name": azure_native.operationalinsights.ClusterSkuNameEnum.CAPACITY_RESERVATION,
        },
        tags={
            "tag1": "val1",
        })
    
    resources:
      cluster:
        type: azure-native:operationalinsights:Cluster
        properties:
          clusterName: oiautorest6685
          location: australiasoutheast
          resourceGroupName: oiautorest6685
          sku:
            capacity: 1000
            name: CapacityReservation
          tags:
            tag1: val1
    

    Create Cluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Cluster(name: string, args: ClusterArgs, opts?: CustomResourceOptions);
    @overload
    def Cluster(resource_name: str,
                args: ClusterArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Cluster(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                billing_type: Optional[Union[str, BillingType]] = None,
                cluster_name: Optional[str] = None,
                identity: Optional[ManagedServiceIdentityArgs] = None,
                is_availability_zones_enabled: Optional[bool] = None,
                is_double_encryption_enabled: Optional[bool] = None,
                key_vault_properties: Optional[KeyVaultPropertiesArgs] = None,
                location: Optional[str] = None,
                sku: Optional[ClusterSkuArgs] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewCluster(ctx *Context, name string, args ClusterArgs, opts ...ResourceOption) (*Cluster, error)
    public Cluster(string name, ClusterArgs args, CustomResourceOptions? opts = null)
    public Cluster(String name, ClusterArgs args)
    public Cluster(String name, ClusterArgs args, CustomResourceOptions options)
    
    type: azure-native:operationalinsights:Cluster
    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 ClusterArgs
    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 ClusterArgs
    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 ClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterArgs
    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 exampleclusterResourceResourceFromOperationalinsights = new AzureNative.OperationalInsights.Cluster("exampleclusterResourceResourceFromOperationalinsights", new()
    {
        ResourceGroupName = "string",
        BillingType = "string",
        ClusterName = "string",
        Identity = new AzureNative.OperationalInsights.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        IsAvailabilityZonesEnabled = false,
        IsDoubleEncryptionEnabled = false,
        KeyVaultProperties = new AzureNative.OperationalInsights.Inputs.KeyVaultPropertiesArgs
        {
            KeyName = "string",
            KeyRsaSize = 0,
            KeyVaultUri = "string",
            KeyVersion = "string",
        },
        Location = "string",
        Sku = new AzureNative.OperationalInsights.Inputs.ClusterSkuArgs
        {
            Capacity = 0,
            Name = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := operationalinsights.NewCluster(ctx, "exampleclusterResourceResourceFromOperationalinsights", &operationalinsights.ClusterArgs{
    	ResourceGroupName: pulumi.String("string"),
    	BillingType:       pulumi.String("string"),
    	ClusterName:       pulumi.String("string"),
    	Identity: &operationalinsights.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	IsAvailabilityZonesEnabled: pulumi.Bool(false),
    	IsDoubleEncryptionEnabled:  pulumi.Bool(false),
    	KeyVaultProperties: &operationalinsights.KeyVaultPropertiesArgs{
    		KeyName:     pulumi.String("string"),
    		KeyRsaSize:  pulumi.Int(0),
    		KeyVaultUri: pulumi.String("string"),
    		KeyVersion:  pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Sku: &operationalinsights.ClusterSkuArgs{
    		Capacity: pulumi.Float64(0),
    		Name:     pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleclusterResourceResourceFromOperationalinsights = new com.pulumi.azurenative.operationalinsights.Cluster("exampleclusterResourceResourceFromOperationalinsights", com.pulumi.azurenative.operationalinsights.ClusterArgs.builder()
        .resourceGroupName("string")
        .billingType("string")
        .clusterName("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .isAvailabilityZonesEnabled(false)
        .isDoubleEncryptionEnabled(false)
        .keyVaultProperties(KeyVaultPropertiesArgs.builder()
            .keyName("string")
            .keyRsaSize(0)
            .keyVaultUri("string")
            .keyVersion("string")
            .build())
        .location("string")
        .sku(ClusterSkuArgs.builder()
            .capacity(0)
            .name("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    examplecluster_resource_resource_from_operationalinsights = azure_native.operationalinsights.Cluster("exampleclusterResourceResourceFromOperationalinsights",
        resource_group_name="string",
        billing_type="string",
        cluster_name="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        is_availability_zones_enabled=False,
        is_double_encryption_enabled=False,
        key_vault_properties={
            "key_name": "string",
            "key_rsa_size": 0,
            "key_vault_uri": "string",
            "key_version": "string",
        },
        location="string",
        sku={
            "capacity": 0,
            "name": "string",
        },
        tags={
            "string": "string",
        })
    
    const exampleclusterResourceResourceFromOperationalinsights = new azure_native.operationalinsights.Cluster("exampleclusterResourceResourceFromOperationalinsights", {
        resourceGroupName: "string",
        billingType: "string",
        clusterName: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        isAvailabilityZonesEnabled: false,
        isDoubleEncryptionEnabled: false,
        keyVaultProperties: {
            keyName: "string",
            keyRsaSize: 0,
            keyVaultUri: "string",
            keyVersion: "string",
        },
        location: "string",
        sku: {
            capacity: 0,
            name: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:operationalinsights:Cluster
    properties:
        billingType: string
        clusterName: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        isAvailabilityZonesEnabled: false
        isDoubleEncryptionEnabled: false
        keyVaultProperties:
            keyName: string
            keyRsaSize: 0
            keyVaultUri: string
            keyVersion: string
        location: string
        resourceGroupName: string
        sku:
            capacity: 0
            name: string
        tags:
            string: string
    

    Cluster 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 Cluster resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    BillingType string | Pulumi.AzureNative.OperationalInsights.BillingType
    The cluster's billing type.
    ClusterName string
    The name of the Log Analytics cluster.
    Identity Pulumi.AzureNative.OperationalInsights.Inputs.ManagedServiceIdentity
    Resource's identity.
    IsAvailabilityZonesEnabled bool
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    IsDoubleEncryptionEnabled bool
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    KeyVaultProperties Pulumi.AzureNative.OperationalInsights.Inputs.KeyVaultProperties
    The associated key properties.
    Location string
    The geo-location where the resource lives
    Sku Pulumi.AzureNative.OperationalInsights.Inputs.ClusterSku
    The sku properties.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    BillingType string | BillingType
    The cluster's billing type.
    ClusterName string
    The name of the Log Analytics cluster.
    Identity ManagedServiceIdentityArgs
    Resource's identity.
    IsAvailabilityZonesEnabled bool
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    IsDoubleEncryptionEnabled bool
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    KeyVaultProperties KeyVaultPropertiesArgs
    The associated key properties.
    Location string
    The geo-location where the resource lives
    Sku ClusterSkuArgs
    The sku properties.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    billingType String | BillingType
    The cluster's billing type.
    clusterName String
    The name of the Log Analytics cluster.
    identity ManagedServiceIdentity
    Resource's identity.
    isAvailabilityZonesEnabled Boolean
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    isDoubleEncryptionEnabled Boolean
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    keyVaultProperties KeyVaultProperties
    The associated key properties.
    location String
    The geo-location where the resource lives
    sku ClusterSku
    The sku properties.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    billingType string | BillingType
    The cluster's billing type.
    clusterName string
    The name of the Log Analytics cluster.
    identity ManagedServiceIdentity
    Resource's identity.
    isAvailabilityZonesEnabled boolean
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    isDoubleEncryptionEnabled boolean
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    keyVaultProperties KeyVaultProperties
    The associated key properties.
    location string
    The geo-location where the resource lives
    sku ClusterSku
    The sku properties.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    billing_type str | BillingType
    The cluster's billing type.
    cluster_name str
    The name of the Log Analytics cluster.
    identity ManagedServiceIdentityArgs
    Resource's identity.
    is_availability_zones_enabled bool
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    is_double_encryption_enabled bool
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    key_vault_properties KeyVaultPropertiesArgs
    The associated key properties.
    location str
    The geo-location where the resource lives
    sku ClusterSkuArgs
    The sku properties.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    billingType String | "Cluster" | "Workspaces"
    The cluster's billing type.
    clusterName String
    The name of the Log Analytics cluster.
    identity Property Map
    Resource's identity.
    isAvailabilityZonesEnabled Boolean
    Sets whether the cluster will support availability zones. This can be set as true only in regions where Azure Data Explorer support Availability Zones. This Property can not be modified after cluster creation. Default value is 'true' if region supports Availability Zones.
    isDoubleEncryptionEnabled Boolean
    Configures whether cluster will use double encryption. This Property can not be modified after cluster creation. Default value is 'true'
    keyVaultProperties Property Map
    The associated key properties.
    location String
    The geo-location where the resource lives
    sku Property Map
    The sku properties.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Cluster resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    ClusterId string
    The ID associated with the cluster.
    CreatedDate string
    The cluster creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedDate string
    The last time the cluster was updated.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state of the cluster.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AssociatedWorkspaces List<Pulumi.AzureNative.OperationalInsights.Outputs.AssociatedWorkspaceResponse>
    The list of Log Analytics workspaces associated with the cluster
    CapacityReservationProperties Pulumi.AzureNative.OperationalInsights.Outputs.CapacityReservationPropertiesResponse
    Additional properties for capacity reservation
    AzureApiVersion string
    The Azure API version of the resource.
    ClusterId string
    The ID associated with the cluster.
    CreatedDate string
    The cluster creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedDate string
    The last time the cluster was updated.
    Name string
    The name of the resource
    ProvisioningState string
    The provisioning state of the cluster.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AssociatedWorkspaces []AssociatedWorkspaceResponse
    The list of Log Analytics workspaces associated with the cluster
    CapacityReservationProperties CapacityReservationPropertiesResponse
    Additional properties for capacity reservation
    azureApiVersion String
    The Azure API version of the resource.
    clusterId String
    The ID associated with the cluster.
    createdDate String
    The cluster creation time
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedDate String
    The last time the cluster was updated.
    name String
    The name of the resource
    provisioningState String
    The provisioning state of the cluster.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    associatedWorkspaces List<AssociatedWorkspaceResponse>
    The list of Log Analytics workspaces associated with the cluster
    capacityReservationProperties CapacityReservationPropertiesResponse
    Additional properties for capacity reservation
    azureApiVersion string
    The Azure API version of the resource.
    clusterId string
    The ID associated with the cluster.
    createdDate string
    The cluster creation time
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedDate string
    The last time the cluster was updated.
    name string
    The name of the resource
    provisioningState string
    The provisioning state of the cluster.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    associatedWorkspaces AssociatedWorkspaceResponse[]
    The list of Log Analytics workspaces associated with the cluster
    capacityReservationProperties CapacityReservationPropertiesResponse
    Additional properties for capacity reservation
    azure_api_version str
    The Azure API version of the resource.
    cluster_id str
    The ID associated with the cluster.
    created_date str
    The cluster creation time
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified_date str
    The last time the cluster was updated.
    name str
    The name of the resource
    provisioning_state str
    The provisioning state of the cluster.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    associated_workspaces Sequence[AssociatedWorkspaceResponse]
    The list of Log Analytics workspaces associated with the cluster
    capacity_reservation_properties CapacityReservationPropertiesResponse
    Additional properties for capacity reservation
    azureApiVersion String
    The Azure API version of the resource.
    clusterId String
    The ID associated with the cluster.
    createdDate String
    The cluster creation time
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedDate String
    The last time the cluster was updated.
    name String
    The name of the resource
    provisioningState String
    The provisioning state of the cluster.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    associatedWorkspaces List<Property Map>
    The list of Log Analytics workspaces associated with the cluster
    capacityReservationProperties Property Map
    Additional properties for capacity reservation

    Supporting Types

    AssociatedWorkspaceResponse, AssociatedWorkspaceResponseArgs

    AssociateDate string
    The time of workspace association.
    ResourceId string
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    WorkspaceId string
    Associated workspace immutable id.
    WorkspaceName string
    Associated workspace resource name.
    AssociateDate string
    The time of workspace association.
    ResourceId string
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    WorkspaceId string
    Associated workspace immutable id.
    WorkspaceName string
    Associated workspace resource name.
    associateDate String
    The time of workspace association.
    resourceId String
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    workspaceId String
    Associated workspace immutable id.
    workspaceName String
    Associated workspace resource name.
    associateDate string
    The time of workspace association.
    resourceId string
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    workspaceId string
    Associated workspace immutable id.
    workspaceName string
    Associated workspace resource name.
    associate_date str
    The time of workspace association.
    resource_id str
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    workspace_id str
    Associated workspace immutable id.
    workspace_name str
    Associated workspace resource name.
    associateDate String
    The time of workspace association.
    resourceId String
    Associated workspace arm resource id, in the form of: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}.
    workspaceId String
    Associated workspace immutable id.
    workspaceName String
    Associated workspace resource name.

    BillingType, BillingTypeArgs

    Cluster
    Cluster
    Workspaces
    Workspaces
    BillingTypeCluster
    Cluster
    BillingTypeWorkspaces
    Workspaces
    Cluster
    Cluster
    Workspaces
    Workspaces
    Cluster
    Cluster
    Workspaces
    Workspaces
    CLUSTER
    Cluster
    WORKSPACES
    Workspaces
    "Cluster"
    Cluster
    "Workspaces"
    Workspaces

    CapacityReservationPropertiesResponse, CapacityReservationPropertiesResponseArgs

    LastSkuUpdate string
    The last time Sku was updated.
    MinCapacity double
    Minimum CapacityReservation value in Gigabytes.
    LastSkuUpdate string
    The last time Sku was updated.
    MinCapacity float64
    Minimum CapacityReservation value in Gigabytes.
    lastSkuUpdate String
    The last time Sku was updated.
    minCapacity Double
    Minimum CapacityReservation value in Gigabytes.
    lastSkuUpdate string
    The last time Sku was updated.
    minCapacity number
    Minimum CapacityReservation value in Gigabytes.
    last_sku_update str
    The last time Sku was updated.
    min_capacity float
    Minimum CapacityReservation value in Gigabytes.
    lastSkuUpdate String
    The last time Sku was updated.
    minCapacity Number
    Minimum CapacityReservation value in Gigabytes.

    ClusterSku, ClusterSkuArgs

    Capacity double
    The capacity reservation level in Gigabytes for this cluster.
    Name string | Pulumi.AzureNative.OperationalInsights.ClusterSkuNameEnum
    The SKU (tier) of a cluster.
    Capacity float64
    The capacity reservation level in Gigabytes for this cluster.
    Name string | ClusterSkuNameEnum
    The SKU (tier) of a cluster.
    capacity Double
    The capacity reservation level in Gigabytes for this cluster.
    name String | ClusterSkuNameEnum
    The SKU (tier) of a cluster.
    capacity number
    The capacity reservation level in Gigabytes for this cluster.
    name string | ClusterSkuNameEnum
    The SKU (tier) of a cluster.
    capacity float
    The capacity reservation level in Gigabytes for this cluster.
    name str | ClusterSkuNameEnum
    The SKU (tier) of a cluster.
    capacity Number
    The capacity reservation level in Gigabytes for this cluster.
    name String | "CapacityReservation"
    The SKU (tier) of a cluster.

    ClusterSkuNameEnum, ClusterSkuNameEnumArgs

    CapacityReservation
    CapacityReservation
    ClusterSkuNameEnumCapacityReservation
    CapacityReservation
    CapacityReservation
    CapacityReservation
    CapacityReservation
    CapacityReservation
    CAPACITY_RESERVATION
    CapacityReservation
    "CapacityReservation"
    CapacityReservation

    ClusterSkuResponse, ClusterSkuResponseArgs

    Capacity double
    The capacity reservation level in Gigabytes for this cluster.
    Name string
    The SKU (tier) of a cluster.
    Capacity float64
    The capacity reservation level in Gigabytes for this cluster.
    Name string
    The SKU (tier) of a cluster.
    capacity Double
    The capacity reservation level in Gigabytes for this cluster.
    name String
    The SKU (tier) of a cluster.
    capacity number
    The capacity reservation level in Gigabytes for this cluster.
    name string
    The SKU (tier) of a cluster.
    capacity float
    The capacity reservation level in Gigabytes for this cluster.
    name str
    The SKU (tier) of a cluster.
    capacity Number
    The capacity reservation level in Gigabytes for this cluster.
    name String
    The SKU (tier) of a cluster.

    KeyVaultProperties, KeyVaultPropertiesArgs

    KeyName string
    The name of the key associated with the Log Analytics cluster.
    KeyRsaSize int
    Selected key minimum required size.
    KeyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    KeyVersion string
    The version of the key associated with the Log Analytics cluster.
    KeyName string
    The name of the key associated with the Log Analytics cluster.
    KeyRsaSize int
    Selected key minimum required size.
    KeyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    KeyVersion string
    The version of the key associated with the Log Analytics cluster.
    keyName String
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize Integer
    Selected key minimum required size.
    keyVaultUri String
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion String
    The version of the key associated with the Log Analytics cluster.
    keyName string
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize number
    Selected key minimum required size.
    keyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion string
    The version of the key associated with the Log Analytics cluster.
    key_name str
    The name of the key associated with the Log Analytics cluster.
    key_rsa_size int
    Selected key minimum required size.
    key_vault_uri str
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    key_version str
    The version of the key associated with the Log Analytics cluster.
    keyName String
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize Number
    Selected key minimum required size.
    keyVaultUri String
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion String
    The version of the key associated with the Log Analytics cluster.

    KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs

    KeyName string
    The name of the key associated with the Log Analytics cluster.
    KeyRsaSize int
    Selected key minimum required size.
    KeyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    KeyVersion string
    The version of the key associated with the Log Analytics cluster.
    KeyName string
    The name of the key associated with the Log Analytics cluster.
    KeyRsaSize int
    Selected key minimum required size.
    KeyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    KeyVersion string
    The version of the key associated with the Log Analytics cluster.
    keyName String
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize Integer
    Selected key minimum required size.
    keyVaultUri String
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion String
    The version of the key associated with the Log Analytics cluster.
    keyName string
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize number
    Selected key minimum required size.
    keyVaultUri string
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion string
    The version of the key associated with the Log Analytics cluster.
    key_name str
    The name of the key associated with the Log Analytics cluster.
    key_rsa_size int
    Selected key minimum required size.
    key_vault_uri str
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    key_version str
    The version of the key associated with the Log Analytics cluster.
    keyName String
    The name of the key associated with the Log Analytics cluster.
    keyRsaSize Number
    Selected key minimum required size.
    keyVaultUri String
    The Key Vault uri which holds they key associated with the Log Analytics cluster.
    keyVersion String
    The version of the key associated with the Log Analytics cluster.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type string | Pulumi.AzureNative.OperationalInsights.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.OperationalInsights.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned,UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned,UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned,UserAssigned"
    SystemAssigned,UserAssigned

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:operationalinsights:Cluster oiautorest6685 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/clusters/{clusterName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi