Sha256: 1f2c6efad4fce5cb3e865bf7b86da2bff99d1d9056ae2cef9ce7b5e8ed04cf0e

Contents?: true

Size: 622 Bytes

Versions: 102

Compression:

Stored size: 622 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

102 entries across 102 versions & 18 rubygems

Version Path
tag-fog-1.0.1 lib/fog/bluebox/requests/compute/create_template.rb
fog-1.0.0 lib/fog/bluebox/requests/compute/create_template.rb