Class: OvirtSDK4::OpenstackImageService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::OpenstackImageService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (OpenStackImage) get(opts = {})
Returns the representation of the object managed by this service.
-
- (Object) import(opts = {})
Executes the
import
method. -
- (Service) service(path)
Locates the service corresponding to the given path.
-
- (String) to_s
Returns an string representation of this service.
Instance Method Details
- (OpenStackImage) get(opts = {})
Returns the representation of the object managed by this service.
13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 |
# File 'lib/ovirtsdk4/services.rb', line 13230 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 OpenStackImageReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Object) import(opts = {})
Executes the import
method.
13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 |
# File 'lib/ovirtsdk4/services.rb', line 13250 def import(opts = {}) action = Action.new(opts) writer = XmlWriter.new(nil, true) ActionWriter.write_one(action, writer) body = writer.string writer.close request = Request.new({ :method => :POST, :path => "#{@path}/import", :body => body, }) response = @connection.send(request) case response.code when 200 action = check_action(response) else check_fault(response) end end |
- (Service) service(path)
Locates the service corresponding to the given path.
13277 13278 13279 13280 13281 13282 |
# File 'lib/ovirtsdk4/services.rb', line 13277 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.
13289 13290 13291 |
# File 'lib/ovirtsdk4/services.rb', line 13289 def to_s return "#<#{OpenstackImageService}:#{@path}>" end |