class Fog::Compute::Fifo::Datasets

Public Instance Methods

all() click to toggle source
# File lib/fog/fifo/models/compute/datasets.rb, line 12
def all
  service.list_datasets().body.map{|id| get(id)}
end
get(id) click to toggle source
# File lib/fog/fifo/models/compute/datasets.rb, line 16
def get(id)
  data = service.get_dataset(id).body
  new(data)
end