Sha256: 3c8ac659f6867c4f328e4941297c0ef0fa27316c9435c8e64da19657c6fa07b2

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 KB

Contents

module Fog
  module Volume
    class HuaweiCloud
      module Real
        def list_snapshots(options = true, options_deprecated = {})
          if options.kind_of?(Hash)
            path  = 'snapshots'
            query = options
          else
            # Backwards compatibility layer, when 'detailed' boolean was sent as first param
            if options
              Fog::Logger.deprecation('Calling HuaweiCloud[:volume].list_snapshots(true) is deprecated, use .list_snapshots_detailed instead')
            else
              Fog::Logger.deprecation('Calling HuaweiCloud[:volume].list_snapshots(false) is deprecated, use .list_snapshots({}) instead')
            end
            path  = options ? 'snapshots/detail' : 'snapshots'
            query = options_deprecated
          end

          request(
            :expects => 200,
            :method  => 'GET',
            :path    => path,
            :query   => query
          )
        end
      end

      module Mock
        def list_snapshots(_detailed = true, _options = {})
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'snapshots' => [get_snapshot_details.body["snapshot"]]
          }
          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/volume/huaweicloud/requests/list_snapshots.rb
fog-huaweicloud-0.0.2 lib/fog/volume/huaweicloud/requests/list_snapshots.rb
fog-huaweicloud-0.1.3 lib/fog/volume/huaweicloud/requests/list_snapshots.rb
fog-huaweicloud-0.1.2 lib/fog/volume/huaweicloud/requests/list_snapshots.rb