module FlightFacade::GroupFacade::Base

Public Instance Methods

find_by_name(name) click to toggle source

Query for a Group object by its name alone @param name [String] the name of the group @return [Group] the group object containing the nodes @return [nil] if it could not resolve the name

# File lib/flight_facade/facades.rb, line 79
def find_by_name(name)
  raise NotImplementedError
end
index_all() click to toggle source

Query for all the statically available groups. This method may not include all the ephemeral groups available in `find_by_name`

@return [Array<Group>] the list of static groups

# File lib/flight_facade/facades.rb, line 87
def index_all
  raise NotImplementedError
end