1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bluebox/requests/create_block.rb

40 lines
992 B
Ruby
Raw Normal View History

module Fog
class Bluebox
class Real
2010-06-02 11:20:38 -04:00
# Create a new block
#
# ==== Parameters
# * product_id<~Integer> - Id of product to create block with
# * template_id<~Integer> - Id of template to create block with
# * options<~Hash>:
# * password<~String> - Password for block
# or
# * ssh_key<~String> - ssh public key
# * username<~String> - optional, defaults to deploy
#
# ==== Returns
# * response<~Excon::Response>:
2010-06-02 11:20:38 -04:00
# * body<~Hash>:
# TODO
def create_block(product_id, template_id, options = {})
2010-06-02 11:13:22 -04:00
request(
:expects => 200,
:method => 'POST',
2010-06-04 00:32:59 -04:00
:path => '/api/blocks.json',
:query => {'product' => product_id, 'template' => template_id}.merge!(options)
)
end
end
class Mock
def create_block(product_id, template_id, name, password)
2010-06-02 11:09:54 -04:00
Fog::Mock.not_implemented
end
end
end
end