Aracılığıyla paylaş


ManagedClusterAADProfile Constructors

Definition

Overloads

ManagedClusterAADProfile()

Initializes a new instance of the ManagedClusterAADProfile class.

ManagedClusterAADProfile(Nullable<Boolean>, Nullable<Boolean>, IList<String>, String, String, String, String)

Initializes a new instance of the ManagedClusterAADProfile class.

ManagedClusterAADProfile()

Initializes a new instance of the ManagedClusterAADProfile class.

public ManagedClusterAADProfile ();
Public Sub New ()

Applies to

ManagedClusterAADProfile(Nullable<Boolean>, Nullable<Boolean>, IList<String>, String, String, String, String)

Initializes a new instance of the ManagedClusterAADProfile class.

public ManagedClusterAADProfile (bool? managed = default, bool? enableAzureRBAC = default, System.Collections.Generic.IList<string> adminGroupObjectIDs = default, string clientAppID = default, string serverAppID = default, string serverAppSecret = default, string tenantID = default);
new Microsoft.Azure.Management.ContainerService.Fluent.Models.ManagedClusterAADProfile : Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<string> * string * string * string * string -> Microsoft.Azure.Management.ContainerService.Fluent.Models.ManagedClusterAADProfile
Public Sub New (Optional managed As Nullable(Of Boolean) = Nothing, Optional enableAzureRBAC As Nullable(Of Boolean) = Nothing, Optional adminGroupObjectIDs As IList(Of String) = Nothing, Optional clientAppID As String = Nothing, Optional serverAppID As String = Nothing, Optional serverAppSecret As String = Nothing, Optional tenantID As String = Nothing)

Parameters

managed
Nullable<Boolean>

Whether to enable managed AAD.

enableAzureRBAC
Nullable<Boolean>

Whether to enable Azure RBAC for Kubernetes authorization.

adminGroupObjectIDs
IList<String>

AAD group object IDs that will have admin role of the cluster.

clientAppID
String

The client AAD application ID.

serverAppID
String

The server AAD application ID.

serverAppSecret
String

The server AAD application secret.

tenantID
String

The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.

Applies to