Sha256: 7bbda073810c811227654810bc14c6ebd6bc4e919cb58ef5bb1b091fa30d226b
Contents?: true
Size: 680 Bytes
Versions: 21
Compression:
Stored size: 680 Bytes
Contents
module Fog module Storage class GoogleJSON class Real # Delete an object from Google Storage # https://cloud.google.com/storage/docs/json_api/v1/objects/delete # # @param bucket_name [String] Name of bucket containing object to delete # @param object_name [String] Name of object to delete def delete_object(bucket_name, object_name) @storage_json.delete_object(bucket_name, object_name) end end class Mock def delete_object(_bucket_name, _object_name) # :no-coverage: Fog::Mock.not_implemented # :no-coverage: end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems