# File lib/fog/ecloud/models/compute/support_tickets.rb, line 11 def all data = service.get_support_tickets(href).body[:TicketReference] load(data) end
# File lib/fog/ecloud/models/compute/support_tickets.rb, line 16 def get(uri) if data = service.get_support_ticket(uri) new(data.body) end rescue Fog::Errors::NotFound nil end