GroupContractProperties Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GroupContractProperties() |
Initializes a new instance of the GroupContractProperties class. |
GroupContractProperties(String, String, Nullable<Boolean>, Nullable<GroupType>, String) |
Initializes a new instance of the GroupContractProperties class. |
GroupContractProperties()
Initializes a new instance of the GroupContractProperties class.
public GroupContractProperties ();
Public Sub New ()
Applies to
GroupContractProperties(String, String, Nullable<Boolean>, Nullable<GroupType>, String)
Initializes a new instance of the GroupContractProperties class.
public GroupContractProperties (string displayName, string description = default, bool? builtIn = default, Microsoft.Azure.Management.ApiManagement.Models.GroupType? type = default, string externalId = default);
new Microsoft.Azure.Management.ApiManagement.Models.GroupContractProperties : string * string * Nullable<bool> * Nullable<Microsoft.Azure.Management.ApiManagement.Models.GroupType> * string -> Microsoft.Azure.Management.ApiManagement.Models.GroupContractProperties
Public Sub New (displayName As String, Optional description As String = Nothing, Optional builtIn As Nullable(Of Boolean) = Nothing, Optional type As Nullable(Of GroupType) = Nothing, Optional externalId As String = Nothing)
Parameters
- displayName
- String
Group name.
- description
- String
Group description. Can contain HTML formatting tags.
true if the group is one of the three system groups (Administrators, Developers, or Guests); otherwise false.
- externalId
- String
For external groups, this property
contains the id of the group from the external identity provider,
e.g. for Azure Active Directory
aad://<tenant>.onmicrosoft.com/groups/<group object id>
; otherwise the value is null.
Applies to
Azure SDK for .NET