Sha256: c070ae683213fe89c8e9372938a0555e998887c1d728f47a97aeefc2a19447c7
Contents?: true
Size: 533 Bytes
Versions: 104
Compression:
Stored size: 533 Bytes
Contents
module Fog module Compute class Bluebox class Real # Create a template from block # # ==== Parameters # * id<~Integer> - Id of image to destroy # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def destroy_template(id) request( :expects => 200, :method => 'DELETE', :path => "api/block_templates/#{id}.json" ) end end end end end
Version data entries
104 entries across 104 versions & 18 rubygems