Class: OvirtSDK4::TemplatesService
- Inherits:
-
Service
- Object
- Service
- OvirtSDK4::TemplatesService
- Defined in:
- lib/ovirtsdk4/services.rb,
lib/ovirtsdk4/services.rb
Instance Method Summary (collapse)
-
- (Template) add(template, opts = {})
Adds a new
template
. -
- (Array<Template>) list(opts = {})
Returns the representation of the object managed by this service.
-
- (Service) service(path)
Locates the service corresponding to the given path.
-
- (TemplateService) template_service(id)
Locates the
template
service. -
- (String) to_s
Returns an string representation of this service.
Instance Method Details
- (Template) add(template, opts = {})
Adds a new template
.
22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 |
# File 'lib/ovirtsdk4/services.rb', line 22567 def add(template, opts = {}) if template.is_a?(Hash) template = OvirtSDK4::Template.new(template) end request = Request.new(:method => :POST, :path => @path) begin writer = XmlWriter.new(nil, true) TemplateWriter.write_one(template, writer, 'template') request.body = writer.string ensure writer.close end response = @connection.send(request) case response.code when 201, 202 begin reader = XmlReader.new(response.body) return TemplateReader.read_one(reader) ensure reader.close end else check_fault(response) end end |
- (Array<Template>) list(opts = {})
Returns the representation of the object managed by this service.
22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 |
# File 'lib/ovirtsdk4/services.rb', line 22610 def list(opts = {}) query = {} value = opts[:case_sensitive] unless value.nil? value = Writer.render_boolean(value) query['case_sensitive'] = value end value = opts[:filter] unless value.nil? value = Writer.render_boolean(value) query['filter'] = value end value = opts[:max] unless value.nil? value = Writer.render_integer(value) query['max'] = value end value = opts[:search] unless value.nil? query['search'] = value end 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 TemplateReader.read_many(reader) ensure reader.close end else check_fault(response) end end |
- (Service) service(path)
Locates the service corresponding to the given path.
22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 |
# File 'lib/ovirtsdk4/services.rb', line 22664 def service(path) if path.nil? || path == '' return self end index = path.index('/') if index.nil? return template_service(path) end return template_service(path[0..(index - 1)]).service(path[(index +1)..-1]) end |
- (TemplateService) template_service(id)
Locates the template
service.
22653 22654 22655 |
# File 'lib/ovirtsdk4/services.rb', line 22653 def template_service(id) return TemplateService.new(@connection, "#{@path}/#{id}") end |
- (String) to_s
Returns an string representation of this service.
22680 22681 22682 |
# File 'lib/ovirtsdk4/services.rb', line 22680 def to_s return "#<#{TemplatesService}:#{@path}>" end |