Class: OvirtSDK4::GroupsService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#add(group, opts = {}) ⇒ Group
Add group from a directory service.
-
#group_service(id) ⇒ GroupService
Reference to the service that manages a specific group.
-
#list(opts = {}) ⇒ Array<Group>
List all the groups in the system.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
Methods inherited from Service
Instance Method Details
#add(group, opts = {}) ⇒ Group
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:
POST /ovirt-engine/api/groups
With a request body like this:
<group>
<name>Developers</name>
<domain>
<name>internal-authz</name>
</domain>
</group>
10826 10827 10828 |
# File 'lib/ovirtsdk4/services.rb', line 10826 def add(group, opts = {}) internal_add(group, Group, ADD, opts) end |
#group_service(id) ⇒ GroupService
Reference to the service that manages a specific group.
10905 10906 10907 |
# File 'lib/ovirtsdk4/services.rb', line 10905 def group_service(id) GroupService.new(self, id) end |
#list(opts = {}) ⇒ Array<Group>
List all the groups in the system.
Usage:
GET /ovirt-engine/api/groups
Will return the list of groups:
<groups>
<group href="/ovirt-engine/api/groups/123" id="123">
<name>mygroup</name>
<link href="/ovirt-engine/api/groups/123/roles" rel="roles"/>
<link href="/ovirt-engine/api/groups/123/permissions" rel="permissions"/>
<link href="/ovirt-engine/api/groups/123/tags" rel="tags"/>
<domain_entry_id>476652557A382F67696B6D2B32762B37796E46476D513D3D</domain_entry_id>
<namespace>DC=example,DC=com</namespace>
<domain href="/ovirt-engine/api/domains/ABCDEF" id="ABCDEF">
<name>myextension-authz</name>
</domain>
</group>
...
</groups>
The order of the returned list of groups isn’t guaranteed.
10894 10895 10896 |
# File 'lib/ovirtsdk4/services.rb', line 10894 def list(opts = {}) internal_get(LIST, opts) end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 |
# File 'lib/ovirtsdk4/services.rb', line 10916 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return group_service(path) end return group_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |