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>
8127 8128 8129 |
# File 'lib/ovirtsdk4/services.rb', line 8127 def get(opts = {}) internal_get(GET, opts) end |
#groups_service ⇒ DomainGroupsService
Reference to a service to manage domain groups.
8136 8137 8138 |
# File 'lib/ovirtsdk4/services.rb', line 8136 def groups_service @groups_service ||= DomainGroupsService.new(self, 'groups') end |
#service(path) ⇒ Service
Locates the service corresponding to the given path.
8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 |
# File 'lib/ovirtsdk4/services.rb', line 8156 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.
8145 8146 8147 |
# File 'lib/ovirtsdk4/services.rb', line 8145 def users_service @users_service ||= DomainUsersService.new(self, 'users') end |