Sha256: 3caac151abd92ffab58e6286fdabd181049d4398be2a6b293283c52cc3a6adce
Contents?: true
Size: 759 Bytes
Versions: 21
Compression:
Stored size: 759 Bytes
Contents
module Fog module Storage class GoogleJSON class Real # Get access control list for an Google Storage bucket # @see https://cloud.google.com/storage/docs/json_api/v1/bucketAccessControls/list # # @param bucket_name [String] Name of bucket object is in # @return [Google::Apis::StorageV1::BucketAccessControls] def list_bucket_acl(bucket_name) raise ArgumentError.new("bucket_name is required") unless bucket_name @storage_json.list_bucket_access_controls(bucket_name) end end class Mock def list_bucket_acl(_bucket_name) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems