Class: OvirtSDK4::PermissionService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::PermissionService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (Permission) get(opts = {})
Returns the representation of the object managed by this service.
-
- (Object) remove(opts = {})
Deletes the object managed by this service.
-
- (Service) service(path)
Locates the service corresponding to the given path.
-
- (String) to_s
Returns an string representation of this service.
Instance Method Details
- (Permission) get(opts = {})
Returns the representation of the object managed by this service.
15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 |
# File 'lib/ovirtsdk4/services.rb', line 15286 def get(opts = {}) query = {} request = Request.new(:method => :GET, :path => @path, :query => query) response = @connection.send(request) case response.code when 200 begin reader = XmlReader.new(response.body) return PermissionReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) remove(opts = {})
Deletes the object managed by this service.
15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 |
# File 'lib/ovirtsdk4/services.rb', line 15310 def remove(opts = {}) query = {} value = opts[:async] unless value.nil? value = Writer.render_boolean(value) query['async'] = value end request = Request.new(:method => :DELETE, :path => @path, :query => query) response = @connection.send(request) unless response.code == 200 check_fault(response) end end |
- (Service) service(path)
Locates the service corresponding to the given path.
15331 15332 15333 15334 15335 15336 |
# File 'lib/ovirtsdk4/services.rb', line 15331 def service(path) if path.nil? || path == '' return self end raise Error.new("The path \"#{path}\" doesn't correspond to any service") end |
- (String) to_s
Returns an string representation of this service.
15343 15344 15345 |
# File 'lib/ovirtsdk4/services.rb', line 15343 def to_s return "#<#{PermissionService}:#{@path}>" end |