Sha256: 04383e17ffd8fa8888adda33060a451fe2f1cf9325c3186f1574611ae99e50ed
Contents?: true
Size: 668 Bytes
Versions: 44
Compression:
Stored size: 668 Bytes
Contents
module Fog module Bluebox class Compute class Real # Get details of a template # # ==== Parameters # * template_id<~Integer> - Id of template to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def get_template(template_id) request( :expects => 200, :method => 'GET', :path => "api/block_templates/#{template_id}.json" ) end end class Mock def get_template(template_id) Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems