Class: OvirtSDK4::DiskSnapshotService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::DiskSnapshotService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (DiskSnapshot) 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
- (DiskSnapshot) get(opts = {})
Returns the representation of the object managed by this service.
5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 |
# File 'lib/ovirtsdk4/services.rb', line 5752 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 DiskSnapshotReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) remove(opts = {})
Deletes the object managed by this service.
5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 |
# File 'lib/ovirtsdk4/services.rb', line 5776 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.
5797 5798 5799 5800 5801 5802 |
# File 'lib/ovirtsdk4/services.rb', line 5797 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.
5809 5810 5811 |
# File 'lib/ovirtsdk4/services.rb', line 5809 def to_s return "#<#{DiskSnapshotService}:#{@path}>" end |