class Fog::Orchestration::OpenStack::Stacks

Public Instance Methods

all() click to toggle source
# File lib/fog/openstack/models/orchestration/stacks.rb, line 10
def all
  load(service.list_stacks.body['stacks'])
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/models/orchestration/stacks.rb, line 14
def find_by_id(id)
  self.find {|stack| stack.id == id}
end
Also aliased as: get
get(id)
Alias for: find_by_id