Sha256: 306760dc562b6492d04c55fb5ddb33071161644280910a130ba336a266982768
Contents?: true
Size: 1.31 KB
Versions: 63
Compression:
Stored size: 1.31 KB
Contents
module Fog module Compute class Bluebox class Real # Create a new block # # ==== Parameters # * product_id<~String> - ID of block product (size) # * template_id<~String> - ID of block OS/build template # * location_id<~String> - ID of deployment location # * options<~Hash>: # * password<~String> - Password for block # or # * ssh_public_key<~String> - SSH public key # * username<~String> - Defaults to deploy # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: def create_block(product_id, template_id, location_id, options = {}) unless options.has_key?('password') || options.has_key?('ssh_public_key') raise ArgumentError, 'Either password or public_key must be supplied' end query = { 'product' => product_id, 'template' => template_id, 'location' => location_id } request( :expects => 200, :method => 'POST', :path => '/api/blocks.json', :query => query, :body => options.map {|k,v| "#{CGI.escape(k)}=#{CGI.escape(v)}"}.join('&') ) end end end end end
Version data entries
63 entries across 63 versions & 6 rubygems