class Google::Cloud::Storage::Service

def list_file_acls bucket_name, file_name, user_project: nil, options: {}

Retrieves a list of ACLs for the given file.
#
def list_file_acls bucket_name, file_name, user_project: nil, options: {}
  execute do
    service.list_object_access_controls \
      bucket_name, file_name, user_project: user_project(user_project),
      options: options
  end
end