Sha256: 312c8e3e9f657b686987146c77a679c2ed905288c1e521d2416e32ee07abb519
Contents?: true
Size: 1.38 KB
Versions: 39
Compression:
Stored size: 1.38 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.key?('password') || options.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 } query['ipv6_only'] = options.delete('ipv6_only') if options['ipv6_only'] 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
39 entries across 37 versions & 5 rubygems