Interface ActiveDirectoryGroup.UpdateStages.WithMember

    • Method Detail

      • withMember

        ActiveDirectoryGroup.Update withMember​(String objectId)
        Adds a member based on its object id. The member can be a user, a group, a service principal, or an application.
        Parameters:
        objectId - the Active Directory object's id
        Returns:
        the next AD Group update stage
      • withMember

        ActiveDirectoryGroup.Update withMember​(ServicePrincipal servicePrincipal)
        Adds a service principal as a member in the group.
        Parameters:
        servicePrincipal - the service principal to add
        Returns:
        the next AD group update stage
      • withoutMember

        ActiveDirectoryGroup.Update withoutMember​(String objectId)
        Removes a member based on its object id.
        Parameters:
        objectId - the Active Directory object's id
        Returns:
        the next AD Group update stage
      • withoutMember

        ActiveDirectoryGroup.Update withoutMember​(ServicePrincipal servicePrincipal)
        Removes a service principal as a member in the group.
        Parameters:
        servicePrincipal - the service principal to remove
        Returns:
        the next AD group update stage