Sha256: dab931119df19152058c641c95cc1a0b840d069cc1ba0a6f2c5e0d0156b4f98d
Contents?: true
Size: 550 Bytes
Versions: 39
Compression:
Stored size: 550 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
39 entries across 37 versions & 5 rubygems