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>
8107 8108 8109 |
# File 'lib/ovirtsdk4/services.rb', line 8107 def get(opts = {}) internal_get(GET, opts) end |
#groups_service ⇒ DomainGroupsService
Reference to a service to manage domain groups.
8116 8117 8118 |
# File 'lib/ovirtsdk4/services.rb', line 8116 def groups_service @groups_service ||= DomainGroupsService.new(self, 'groups') end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 |
# File 'lib/ovirtsdk4/services.rb', line 8136 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.
8125 8126 8127 |
# File 'lib/ovirtsdk4/services.rb', line 8125 def users_service @users_service ||= DomainUsersService.new(self, 'users') end |