ArmKubernetesModelFactory.AadProfile Method

Definition

AAD Profile specifies attributes for Azure Active Directory integration.

public static Azure.ResourceManager.Kubernetes.Models.AadProfile AadProfile(bool? enableAzureRBAC = default, System.Collections.Generic.IEnumerable<string> adminGroupObjectIDs = default, string tenantID = default);
static member AadProfile : Nullable<bool> * seq<string> * string -> Azure.ResourceManager.Kubernetes.Models.AadProfile
Public Shared Function AadProfile (Optional enableAzureRBAC As Nullable(Of Boolean) = Nothing, Optional adminGroupObjectIDs As IEnumerable(Of String) = Nothing, Optional tenantID As String = Nothing) As AadProfile

Parameters

enableAzureRBAC
Nullable<Boolean>

Whether to enable Azure RBAC for Kubernetes authorization.

adminGroupObjectIDs
IEnumerable<String>

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

tenantID
String

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

Returns

A new AadProfile instance for mocking.

Applies to