Interface ActiveDirectoryGroup
-
- All Superinterfaces:
ActiveDirectoryObject
,HasId
,HasInnerModel<MicrosoftGraphGroupInner>
,HasManager<AuthorizationManager>
,HasName
,Indexable
,Updatable<ActiveDirectoryGroup.Update>
public interface ActiveDirectoryGroup extends ActiveDirectoryObject, HasInnerModel<MicrosoftGraphGroupInner>, Updatable<ActiveDirectoryGroup.Update>
An immutable client-side representation of an Azure AD group.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
ActiveDirectoryGroup.Definition
Container interface for all the definitions that need to be implemented.static interface
ActiveDirectoryGroup.DefinitionStages
Grouping of all the AD group definition stages.static interface
ActiveDirectoryGroup.Update
The template for a group update operation, containing all the settings that can be modified.static interface
ActiveDirectoryGroup.UpdateStages
Grouping of all the AD group update stages.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ActiveDirectoryObject>
listMembers()
Lists the members in the group.com.azure.core.http.rest.PagedFlux<ActiveDirectoryObject>
listMembersAsync()
Lists the members in the group.String
mail()
boolean
securityEnabled()
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
-
-
-
Method Detail
-
securityEnabled
boolean securityEnabled()
- Returns:
- security enabled field.
-
mail
String mail()
- Returns:
- mail field.
-
listMembers
List<ActiveDirectoryObject> listMembers()
Lists the members in the group.- Returns:
- a list of the members
-
listMembersAsync
com.azure.core.http.rest.PagedFlux<ActiveDirectoryObject> listMembersAsync()
Lists the members in the group.- Returns:
- a list of the members
-
-