Package org.ovirt.engine.sdk4.services
Interface GroupsService.AddRequest
-
- All Superinterfaces:
Request<GroupsService.AddRequest,GroupsService.AddResponse>
- Enclosing interface:
- GroupsService
public static interface GroupsService.AddRequest extends Request<GroupsService.AddRequest,GroupsService.AddResponse>
Add group from a directory service. Please note that domain name is name of the authorization provider. For example, to add the `Developers` group from the `internal-authz` authorization provider send a request like this: [source] ---- POST /ovirt-engine/api/groups ---- With a request body like this: [source,xml] ----Developers internal-authz
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GroupsService.AddRequest
group(GroupBuilder group)
The group to be added.GroupsService.AddRequest
group(Group group)
-
-
-
Method Detail
-
group
GroupsService.AddRequest group(Group group)
-
group
GroupsService.AddRequest group(GroupBuilder group)
The group to be added.
-
-