Sha256: f8b0dff6e3e52cd5cc195150a05711b1b081f8786e0cc6d037571e08c47ec86e
Contents?: true
Size: 552 Bytes
Versions: 111
Compression:
Stored size: 552 Bytes
Contents
module Fog module Compute class Bluebox 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 end end end
Version data entries
111 entries across 111 versions & 19 rubygems