class Fog::AWS::EFS::FileSystems

Public Instance Methods

all() click to toggle source
# File lib/fog/aws/models/efs/file_systems.rb, line 9
def all
  data = service.describe_file_systems.body["FileSystems"]
  load(data)
end
get(identity) click to toggle source
# File lib/fog/aws/models/efs/file_systems.rb, line 14
def get(identity)
  data = service.describe_file_systems(:id => identity).body["FileSystems"].first
  new(data)
rescue Fog::AWS::EFS::NotFound
  nil
end