1. Packages
  2. Azure Native
  3. API Docs
  4. kusto
  5. ClusterPrincipalAssignment
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

azure-native.kusto.ClusterPrincipalAssignment

Explore with Pulumi AI

azure-native logo
Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi

    Class representing a cluster principal assignment. API Version: 2021-01-01.

    Example Usage

    KustoClusterPrincipalAssignmentsCreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var clusterPrincipalAssignment = new AzureNative.Kusto.ClusterPrincipalAssignment("clusterPrincipalAssignment", new()
        {
            ClusterName = "kustoclusterrptest4",
            PrincipalAssignmentName = "kustoprincipal1",
            PrincipalId = "87654321-1234-1234-1234-123456789123",
            PrincipalType = "App",
            ResourceGroupName = "kustorptest",
            Role = "AllDatabasesAdmin",
            TenantId = "12345678-1234-1234-1234-123456789123",
        });
    
    });
    
    package main
    
    import (
    	kusto "github.com/pulumi/pulumi-azure-native-sdk/kusto"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := kusto.NewClusterPrincipalAssignment(ctx, "clusterPrincipalAssignment", &kusto.ClusterPrincipalAssignmentArgs{
    			ClusterName:             pulumi.String("kustoclusterrptest4"),
    			PrincipalAssignmentName: pulumi.String("kustoprincipal1"),
    			PrincipalId:             pulumi.String("87654321-1234-1234-1234-123456789123"),
    			PrincipalType:           pulumi.String("App"),
    			ResourceGroupName:       pulumi.String("kustorptest"),
    			Role:                    pulumi.String("AllDatabasesAdmin"),
    			TenantId:                pulumi.String("12345678-1234-1234-1234-123456789123"),
    		})
    		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.kusto.ClusterPrincipalAssignment;
    import com.pulumi.azurenative.kusto.ClusterPrincipalAssignmentArgs;
    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 clusterPrincipalAssignment = new ClusterPrincipalAssignment("clusterPrincipalAssignment", ClusterPrincipalAssignmentArgs.builder()        
                .clusterName("kustoclusterrptest4")
                .principalAssignmentName("kustoprincipal1")
                .principalId("87654321-1234-1234-1234-123456789123")
                .principalType("App")
                .resourceGroupName("kustorptest")
                .role("AllDatabasesAdmin")
                .tenantId("12345678-1234-1234-1234-123456789123")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    cluster_principal_assignment = azure_native.kusto.ClusterPrincipalAssignment("clusterPrincipalAssignment",
        cluster_name="kustoclusterrptest4",
        principal_assignment_name="kustoprincipal1",
        principal_id="87654321-1234-1234-1234-123456789123",
        principal_type="App",
        resource_group_name="kustorptest",
        role="AllDatabasesAdmin",
        tenant_id="12345678-1234-1234-1234-123456789123")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const clusterPrincipalAssignment = new azure_native.kusto.ClusterPrincipalAssignment("clusterPrincipalAssignment", {
        clusterName: "kustoclusterrptest4",
        principalAssignmentName: "kustoprincipal1",
        principalId: "87654321-1234-1234-1234-123456789123",
        principalType: "App",
        resourceGroupName: "kustorptest",
        role: "AllDatabasesAdmin",
        tenantId: "12345678-1234-1234-1234-123456789123",
    });
    
    resources:
      clusterPrincipalAssignment:
        type: azure-native:kusto:ClusterPrincipalAssignment
        properties:
          clusterName: kustoclusterrptest4
          principalAssignmentName: kustoprincipal1
          principalId: 87654321-1234-1234-1234-123456789123
          principalType: App
          resourceGroupName: kustorptest
          role: AllDatabasesAdmin
          tenantId: 12345678-1234-1234-1234-123456789123
    

    Create ClusterPrincipalAssignment Resource

    new ClusterPrincipalAssignment(name: string, args: ClusterPrincipalAssignmentArgs, opts?: CustomResourceOptions);
    @overload
    def ClusterPrincipalAssignment(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   cluster_name: Optional[str] = None,
                                   principal_assignment_name: Optional[str] = None,
                                   principal_id: Optional[str] = None,
                                   principal_type: Optional[Union[str, PrincipalType]] = None,
                                   resource_group_name: Optional[str] = None,
                                   role: Optional[Union[str, ClusterPrincipalRole]] = None,
                                   tenant_id: Optional[str] = None)
    @overload
    def ClusterPrincipalAssignment(resource_name: str,
                                   args: ClusterPrincipalAssignmentArgs,
                                   opts: Optional[ResourceOptions] = None)
    func NewClusterPrincipalAssignment(ctx *Context, name string, args ClusterPrincipalAssignmentArgs, opts ...ResourceOption) (*ClusterPrincipalAssignment, error)
    public ClusterPrincipalAssignment(string name, ClusterPrincipalAssignmentArgs args, CustomResourceOptions? opts = null)
    public ClusterPrincipalAssignment(String name, ClusterPrincipalAssignmentArgs args)
    public ClusterPrincipalAssignment(String name, ClusterPrincipalAssignmentArgs args, CustomResourceOptions options)
    
    type: azure-native:kusto:ClusterPrincipalAssignment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ClusterPrincipalAssignmentArgs
    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 ClusterPrincipalAssignmentArgs
    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 ClusterPrincipalAssignmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ClusterPrincipalAssignmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ClusterPrincipalAssignmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ClusterName string

    The name of the Kusto cluster.

    PrincipalId string

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    PrincipalType string | Pulumi.AzureNative.Kusto.PrincipalType

    Principal type.

    ResourceGroupName string

    The name of the resource group containing the Kusto cluster.

    Role string | Pulumi.AzureNative.Kusto.ClusterPrincipalRole

    Cluster principal role.

    PrincipalAssignmentName string

    The name of the Kusto principalAssignment.

    TenantId string

    The tenant id of the principal

    ClusterName string

    The name of the Kusto cluster.

    PrincipalId string

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    PrincipalType string | PrincipalType

    Principal type.

    ResourceGroupName string

    The name of the resource group containing the Kusto cluster.

    Role string | ClusterPrincipalRole

    Cluster principal role.

    PrincipalAssignmentName string

    The name of the Kusto principalAssignment.

    TenantId string

    The tenant id of the principal

    clusterName String

    The name of the Kusto cluster.

    principalId String

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    principalType String | PrincipalType

    Principal type.

    resourceGroupName String

    The name of the resource group containing the Kusto cluster.

    role String | ClusterPrincipalRole

    Cluster principal role.

    principalAssignmentName String

    The name of the Kusto principalAssignment.

    tenantId String

    The tenant id of the principal

    clusterName string

    The name of the Kusto cluster.

    principalId string

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    principalType string | PrincipalType

    Principal type.

    resourceGroupName string

    The name of the resource group containing the Kusto cluster.

    role string | ClusterPrincipalRole

    Cluster principal role.

    principalAssignmentName string

    The name of the Kusto principalAssignment.

    tenantId string

    The tenant id of the principal

    cluster_name str

    The name of the Kusto cluster.

    principal_id str

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    principal_type str | PrincipalType

    Principal type.

    resource_group_name str

    The name of the resource group containing the Kusto cluster.

    role str | ClusterPrincipalRole

    Cluster principal role.

    principal_assignment_name str

    The name of the Kusto principalAssignment.

    tenant_id str

    The tenant id of the principal

    clusterName String

    The name of the Kusto cluster.

    principalId String

    The principal ID assigned to the cluster principal. It can be a user email, application ID, or security group name.

    principalType String | "App" | "Group" | "User"

    Principal type.

    resourceGroupName String

    The name of the resource group containing the Kusto cluster.

    role String | "AllDatabasesAdmin" | "AllDatabasesViewer"

    Cluster principal role.

    principalAssignmentName String

    The name of the Kusto principalAssignment.

    tenantId String

    The tenant id of the principal

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    PrincipalName string

    The principal name

    ProvisioningState string

    The provisioned state of the resource.

    TenantName string

    The tenant name of the principal

    Type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    The name of the resource

    PrincipalName string

    The principal name

    ProvisioningState string

    The provisioned state of the resource.

    TenantName string

    The tenant name of the principal

    Type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    principalName String

    The principal name

    provisioningState String

    The provisioned state of the resource.

    tenantName String

    The tenant name of the principal

    type String

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    The name of the resource

    principalName string

    The principal name

    provisioningState string

    The provisioned state of the resource.

    tenantName string

    The tenant name of the principal

    type string

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    The name of the resource

    principal_name str

    The principal name

    provisioning_state str

    The provisioned state of the resource.

    tenant_name str

    The tenant name of the principal

    type str

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    The name of the resource

    principalName String

    The principal name

    provisioningState String

    The provisioned state of the resource.

    tenantName String

    The tenant name of the principal

    type String

    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ClusterPrincipalRole

    AllDatabasesAdmin
    AllDatabasesAdmin
    AllDatabasesViewer
    AllDatabasesViewer
    ClusterPrincipalRoleAllDatabasesAdmin
    AllDatabasesAdmin
    ClusterPrincipalRoleAllDatabasesViewer
    AllDatabasesViewer
    AllDatabasesAdmin
    AllDatabasesAdmin
    AllDatabasesViewer
    AllDatabasesViewer
    AllDatabasesAdmin
    AllDatabasesAdmin
    AllDatabasesViewer
    AllDatabasesViewer
    ALL_DATABASES_ADMIN
    AllDatabasesAdmin
    ALL_DATABASES_VIEWER
    AllDatabasesViewer
    "AllDatabasesAdmin"
    AllDatabasesAdmin
    "AllDatabasesViewer"
    AllDatabasesViewer

    PrincipalType

    App
    App
    Group
    Group
    User
    User
    PrincipalTypeApp
    App
    PrincipalTypeGroup
    Group
    PrincipalTypeUser
    User
    App
    App
    Group
    Group
    User
    User
    App
    App
    Group
    Group
    User
    User
    APP
    App
    GROUP
    Group
    USER
    User
    "App"
    App
    "Group"
    Group
    "User"
    User

    Import

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

    $ pulumi import azure-native:kusto:ClusterPrincipalAssignment kustoclusterrptest4/kustoprincipal1 /subscriptions/12345678-1234-1234-1234-123456789098/resourceGroups/kustorptest/providers/Microsoft.Kusto/Clusters/kustoclusterrptest4/PrincipalAssignments/kustoprincipal1 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    Azure Native v1.103.0 published on Friday, Jun 2, 2023 by Pulumi