Sha256: a1759ebd0f19db73e107f8373b1a0df14efcb79c97b55863d151e627ecb96aba
Contents?: true
Size: 620 Bytes
Versions: 39
Compression:
Stored size: 620 Bytes
Contents
module Fog module Compute class Bluebox class Real # Create a template from block # # ==== Parameters # * block_id<~Integer> - Id of block to create template from # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def create_template(block_id, options={}) request( :expects => 202, :method => 'POST', :path => "api/block_templates.json", :query => {'id' => block_id}.merge!(options) ) end end end end end
Version data entries
39 entries across 37 versions & 5 rubygems