1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
module Fog
module OpenStack
class Orchestration
class Real
# patch a stack.
#
# @param [Fog::OpenStack::Orchestration::Stack] the stack to patch.
# @param [Hash] options
# * :template [String] Structure containing the template body.
# or (one of the two Template parameters is required)
# * :template_url [String] URL of file containing the template body.
# * :parameters [Hash] Hash of providers to supply to template.
#
def patch_stack(stack, options = {})
stack_name = stack.stack_name
stack_id = stack.id
request(
:expects => 202,
:path => "stacks/#{stack_name}/#{stack_id}",
:method => 'PATCH',
:body => Fog::JSON.encode(options)
)
end
end
class Mock
def patch_stack(_stack, _options = {})
response = Excon::Response.new
response.status = 202
response.body = {}
response
end
end
end
end
end
|