Class: OvirtSDK4::DomainService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary collapse
-
#get(opts = {}) ⇒ Domain
Gets the authentication domain information.
-
#groups_service ⇒ DomainGroupsService
Reference to a service to manage domain groups.
-
#service(path) ⇒ Service
Locates the service corresponding to the given path.
-
#users_service ⇒ DomainUsersService
Reference to a service to manage domain users.
Methods inherited from Service
Instance Method Details
#get(opts = {}) ⇒ Domain
Gets the authentication domain information.
Usage:
GET /ovirt-engine/api/domains/5678
Will return the domain information:
<domain href="/ovirt-engine/api/domains/5678" id="5678">
<name>internal-authz</name>
<link href="/ovirt-engine/api/domains/5678/users" rel="users"/>
<link href="/ovirt-engine/api/domains/5678/groups" rel="groups"/>
<link href="/ovirt-engine/api/domains/5678/users?search={query}" rel="users/search"/>
<link href="/ovirt-engine/api/domains/5678/groups?search={query}" rel="groups/search"/>
</domain>
7341 7342 7343 |
# File 'lib/ovirtsdk4/services.rb', line 7341 def get(opts = {}) internal_get(GET, opts) end |
#groups_service ⇒ DomainGroupsService
Reference to a service to manage domain groups.
7350 7351 7352 |
# File 'lib/ovirtsdk4/services.rb', line 7350 def groups_service @groups_service ||= DomainGroupsService.new(self, 'groups') end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 |
# File 'lib/ovirtsdk4/services.rb', line 7370 def service(path) if path.nil? || path == '' return self end if path == 'groups' return groups_service end if path.start_with?('groups/') return groups_service.service(path[7..-1]) end if path == 'users' return users_service end if path.start_with?('users/') return users_service.service(path[6..-1]) end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
#users_service ⇒ DomainUsersService
Reference to a service to manage domain users.
7359 7360 7361 |
# File 'lib/ovirtsdk4/services.rb', line 7359 def users_service @users_service ||= DomainUsersService.new(self, 'users') end |