Class: OvirtSDK4::TagService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::TagService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (Tag) 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.
-
- (Object) update(tag)
Updates the object managed by this service.
Instance Method Details
- (Tag) get(opts = {})
Returns the representation of the object managed by this service.
21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 |
# File 'lib/ovirtsdk4/services.rb', line 21244 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 TagReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) remove(opts = {})
Deletes the object managed by this service.
21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 |
# File 'lib/ovirtsdk4/services.rb', line 21268 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.
21319 21320 21321 21322 21323 21324 |
# File 'lib/ovirtsdk4/services.rb', line 21319 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.
21331 21332 21333 |
# File 'lib/ovirtsdk4/services.rb', line 21331 def to_s return "#<#{TagService}:#{@path}>" end |
- (Object) update(tag)
Updates the object managed by this service.
21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 |
# File 'lib/ovirtsdk4/services.rb', line 21285 def update(tag) if tag.is_a?(Hash) tag = OvirtSDK4::Tag.new(tag) end request = Request.new(:method => :PUT, :path => @path) begin writer = XmlWriter.new(nil, true) TagWriter.write_one(tag, writer, 'tag') request.body = writer.string ensure writer.close end response = @connection.send(request) case response.code when 200 begin reader = XmlReader.new(response.body) return TagReader.read_one(reader) ensure reader.close end return result else check_fault(response) end end |