Sha256: 250444bd5457bab28a7484d3a4badf67828bd7c1ebc787033731896e5da179eb

Contents?: true

Size: 1.06 KB

Versions: 22

Compression:

Stored size: 1.06 KB

Contents

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

Version data entries

22 entries across 22 versions & 3 rubygems

Version Path
fog-openstack-1.1.5 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.1.4 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.1.3 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.1.2 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-fork-99 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.1.0 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.1.0.pre lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-apibank-1.0.102 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.11 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-apibank-1.0.101 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.10 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.9 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.8 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.7 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.6 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.5 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.4 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.3 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.2 lib/fog/openstack/orchestration/requests/patch_stack.rb
fog-openstack-1.0.1 lib/fog/openstack/orchestration/requests/patch_stack.rb