Sha256: 1b8a8e2a81aeb317174728cce842ace6f821be6f6db10f94ce76eb9a21e1b61d
Contents?: true
Size: 865 Bytes
Versions: 6
Compression:
Stored size: 865 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
6 entries across 6 versions & 2 rubygems