Sha256: 0efdc8b7eb2142b86ad2d581532a6ed073bd433914e67a64a20a457f5c71d041

Contents?: true

Size: 853 Bytes

Versions: 14

Compression:

Stored size: 853 Bytes

Contents

module Fog
  module Storage
    class GoogleJSON
      class Real
        # Retrieves a list of buckets for a given project
        # https://cloud.google.com/storage/docs/json_api/v1/buckets/list
        #
        # @return [Google::Apis::StorageV1::Buckets]
        # TODO: check if very large lists require working with nextPageToken
        def list_buckets(max_results: nil, page_token: nil,
                         prefix: nil, projection: nil)
          @storage_json.list_buckets(
            @project,
            max_results: max_results,
            page_token: page_token,
            prefix: prefix,
            projection: projection
          )
        end
      end
      class Mock
        def list_buckets
          # :no-coverage:
          Fog::Mock.not_implemented
          # :no-coverage:
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-google-1.24.1 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.24.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.23.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.22.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.21.1 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.21.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.20.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.19.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.18.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.17.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.16.1 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.16.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.15.0 lib/fog/storage/google_json/requests/list_buckets.rb
fog-google-1.14.0 lib/fog/storage/google_json/requests/list_buckets.rb