class Fog::Compute::Oracle::StatisticQueries

Public Instance Methods

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