Show / Hide Table of Contents

Class DatabasePrincipalArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DatabasePrincipalArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Kusto
Assembly: Pulumi.Azure.dll
Syntax
public sealed class DatabasePrincipalArgs : ResourceArgs

Constructors

View Source

DatabasePrincipalArgs()

Declaration
public DatabasePrincipalArgs()

Properties

View Source

ClientId

The Client ID that owns the specified object_id. Changing this forces a new resource to be created.

Declaration
public Input<string> ClientId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ClusterName

Specifies the name of the Kusto Cluster this database principal will be added to. Changing this forces a new resource to be created.

Declaration
public Input<string> ClusterName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DatabaseName

Specified the name of the Kusto Database this principal will be added to. Changing this forces a new resource to be created.

Declaration
public Input<string> DatabaseName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ObjectId

An Object ID of a User, Group, or App. Changing this forces a new resource to be created.

Declaration
public Input<string> ObjectId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ResourceGroupName

Specifies the Resource Group where the Kusto Database Principal should exist. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Role

Specifies the permissions the Principal will have. Valid values include Admin, Ingestor, Monitor, UnrestrictedViewers, User, Viewer. Changing this forces a new resource to be created.

Declaration
public Input<string> Role { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

Specifies the type of object the principal is. Valid values include App, Group, User. Changing this forces a new resource to be created.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.