class Fog::Compute::Oracle::FileSystems

Public Instance Methods

all() click to toggle source
# File lib/fog/oracle/models/compute/file_systems.rb, line 10
def all()
  data = service.list_file_systems()
  load_response(data)
end
get(id) click to toggle source
# File lib/fog/oracle/models/compute/file_systems.rb, line 15
def get(id)
  data = service.get_file_system(id_value(id))
  new_from_response(data)
end