Class: OvirtSDK4::GraphicsConsoleService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::GraphicsConsoleService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Direct Known Subclasses
Instance Method Summary (collapse)
-
- (GraphicsConsole) 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
- (GraphicsConsole) get(opts = {})
Returns the representation of the object managed by this service.
9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 |
# File 'lib/ovirtsdk4/services.rb', line 9032 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 GraphicsConsoleReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) remove(opts = {})
Deletes the object managed by this service.
9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 |
# File 'lib/ovirtsdk4/services.rb', line 9056 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.
9077 9078 9079 9080 9081 9082 |
# File 'lib/ovirtsdk4/services.rb', line 9077 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.
9089 9090 9091 |
# File 'lib/ovirtsdk4/services.rb', line 9089 def to_s return "#<#{GraphicsConsoleService}:#{@path}>" end |