Aracılığıyla paylaş


GroupCreateParameters Constructors

Definition

Overloads

GroupCreateParameters()

Initializes a new instance of the GroupCreateParameters class.

GroupCreateParameters(String, String, Nullable<GroupType>, String)

Initializes a new instance of the GroupCreateParameters class.

GroupCreateParameters()

Initializes a new instance of the GroupCreateParameters class.

public GroupCreateParameters ();
Public Sub New ()

Applies to

GroupCreateParameters(String, String, Nullable<GroupType>, String)

Initializes a new instance of the GroupCreateParameters class.

public GroupCreateParameters (string displayName, string description = default, Microsoft.Azure.Management.ApiManagement.Models.GroupType? type = default, string externalId = default);
new Microsoft.Azure.Management.ApiManagement.Models.GroupCreateParameters : string * string * Nullable<Microsoft.Azure.Management.ApiManagement.Models.GroupType> * string -> Microsoft.Azure.Management.ApiManagement.Models.GroupCreateParameters
Public Sub New (displayName As String, Optional description As String = Nothing, Optional type As Nullable(Of GroupType) = Nothing, Optional externalId As String = Nothing)

Parameters

displayName
String

Group name.

description
String

Group description.

type
Nullable<GroupType>

Group type. Possible values include: 'custom', 'system', 'external'

externalId
String

Identifier of the external groups, this property contains the id of the group from the external identity provider, e.g. for Azure Active Directory aad://&lt;tenant&gt;.onmicrosoft.com/groups/&lt;group object id&gt;; otherwise the value is null.

Applies to