Share via


SecurityProfile Constructors

Definition

Overloads

SecurityProfile()

Initializes a new instance of the SecurityProfile class.

SecurityProfile(String, String, String, IList<String>, String, String, IList<String>, String, String)

Initializes a new instance of the SecurityProfile class.

SecurityProfile()

Initializes a new instance of the SecurityProfile class.

public SecurityProfile ();
Public Sub New ()

Applies to

SecurityProfile(String, String, String, IList<String>, String, String, IList<String>, String, String)

Initializes a new instance of the SecurityProfile class.

public SecurityProfile (string directoryType = default, string domain = default, string organizationalUnitDN = default, System.Collections.Generic.IList<string> ldapsUrls = default, string domainUsername = default, string domainUserPassword = default, System.Collections.Generic.IList<string> clusterUsersGroupDNs = default, string aaddsResourceId = default, string msiResourceId = default);
new Microsoft.Azure.Management.HDInsight.Models.SecurityProfile : string * string * string * System.Collections.Generic.IList<string> * string * string * System.Collections.Generic.IList<string> * string * string -> Microsoft.Azure.Management.HDInsight.Models.SecurityProfile
Public Sub New (Optional directoryType As String = Nothing, Optional domain As String = Nothing, Optional organizationalUnitDN As String = Nothing, Optional ldapsUrls As IList(Of String) = Nothing, Optional domainUsername As String = Nothing, Optional domainUserPassword As String = Nothing, Optional clusterUsersGroupDNs As IList(Of String) = Nothing, Optional aaddsResourceId As String = Nothing, Optional msiResourceId As String = Nothing)

Parameters

directoryType
String

The directory type. Possible values include: 'ActiveDirectory'

domain
String

The organization's active directory domain.

organizationalUnitDN
String

The organizational unit within the Active Directory to place the cluster and service accounts.

ldapsUrls
IList<String>

The LDAPS protocol URLs to communicate with the Active Directory.

domainUsername
String

The domain user account that will have admin privileges on the cluster.

domainUserPassword
String

The domain admin password.

clusterUsersGroupDNs
IList<String>

Optional. The Distinguished Names for cluster user groups

aaddsResourceId
String

The resource ID of the user's Azure Active Directory Domain Service.

msiResourceId
String

User assigned identity that has permissions to read and create cluster-related artifacts in the user's AADDS.

Applies to