public static interface ActiveDirectoryGroup.UpdateStages.WithMember
| Modifier and Type | Method and Description |
|---|---|
ActiveDirectoryGroup.Update |
withMember(ActiveDirectoryGroup group)
Adds a group as a member in the group.
|
ActiveDirectoryGroup.Update |
withMember(ActiveDirectoryUser user)
Adds a user as a member in the group.
|
ActiveDirectoryGroup.Update |
withMember(ServicePrincipal servicePrincipal)
Adds a service principal as a member in the group.
|
ActiveDirectoryGroup.Update |
withMember(String objectId)
Adds a member based on its object id.
|
ActiveDirectoryGroup.Update |
withoutMember(ActiveDirectoryGroup group)
Removes a group as a member in the group.
|
ActiveDirectoryGroup.Update |
withoutMember(ActiveDirectoryUser user)
Removes a user as a member in the group.
|
ActiveDirectoryGroup.Update |
withoutMember(ServicePrincipal servicePrincipal)
Removes a service principal as a member in the group.
|
ActiveDirectoryGroup.Update |
withoutMember(String objectId)
Removes a member based on its object id.
|
@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withMember(String objectId)
objectId - the Active Directory object's id@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withMember(ActiveDirectoryUser user)
user - the Active Directory user to add@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withMember(ActiveDirectoryGroup group)
group - the Active Directory group to add@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withMember(ServicePrincipal servicePrincipal)
servicePrincipal - the service principal to add@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withoutMember(String objectId)
objectId - the Active Directory object's id@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withoutMember(ActiveDirectoryUser user)
user - the Active Directory user to remove@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withoutMember(ActiveDirectoryGroup group)
group - the Active Directory group to remove@Beta(value=V1_2_0) ActiveDirectoryGroup.Update withoutMember(ServicePrincipal servicePrincipal)
servicePrincipal - the service principal to remove/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/