Sha256: b45246544cbd526618298ff7b947f7de40ece0b34473575af5d5f487b15549ad

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

module Fog
  module Orchestration
    class HuaweiCloud
      class Real
        # patch a stack.
        #
        # @param [Fog::Orchestration::HuaweiCloud::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

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/orchestration/huaweicloud/requests/patch_stack.rb
fog-huaweicloud-0.0.2 lib/fog/orchestration/huaweicloud/requests/patch_stack.rb
fog-huaweicloud-0.1.3 lib/fog/orchestration/huaweicloud/requests/patch_stack.rb
fog-huaweicloud-0.1.2 lib/fog/orchestration/huaweicloud/requests/patch_stack.rb