class Google::Cloud::Storage::Service

def delete_file_acl bucket_name, file_name, entity, generation: nil,

Permanently deletes a file ACL.
#
def delete_file_acl bucket_name, file_name, entity, generation: nil,
                    user_project: nil, options: {}
  if options[:retries].nil?
    options = options.merge({ retries: 0 })
  end
  execute do
    service.delete_object_access_control \
      bucket_name, file_name, entity,
      generation: generation, user_project: user_project(user_project),
      options: options
  end
end