Sha256: d422be991a9f7d826a4310051435984ecc3a99bf5d82cc20a05d7850abcb06df

Contents?: true

Size: 826 Bytes

Versions: 4

Compression:

Stored size: 826 Bytes

Contents

module Fog
  module SharedFileSystem
    class HuaweiCloud
      class Real
        def update_snapshot(id, options = {})
          request(
            :body    => Fog::JSON.encode('snapshot' => options),
            :expects => 200,
            :method  => 'PUT',
            :path    => "snapshots/#{id}"
          )
        end
      end

      class Mock
        def update_snapshot(id, options = {})
          # stringify keys
          options = Hash[options.map { |k, v| [k.to_s, v] }]

          data[:snapshot_updated]       = data[:snapshots_detail].first.merge(options)
          data[:snapshot_updated]['id'] = id

          response = Excon::Response.new
          response.status = 200
          response.body = {'snapshot' => data[:snapshot_updated]}
          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/shared_file_system/huaweicloud/requests/update_snapshot.rb
fog-huaweicloud-0.0.2 lib/fog/shared_file_system/huaweicloud/requests/update_snapshot.rb
fog-huaweicloud-0.1.3 lib/fog/shared_file_system/huaweicloud/requests/update_snapshot.rb
fog-huaweicloud-0.1.2 lib/fog/shared_file_system/huaweicloud/requests/update_snapshot.rb