Sha256: 6d352b77cb65af3f9698965a0d7c0db7405c45cd20983ab121f2681843de1bbc
Contents?: true
Size: 561 Bytes
Versions: 13
Compression:
Stored size: 561 Bytes
Contents
require 'fog/ecloud/models/compute/support_ticket' module Fog module Compute class Ecloud class SupportTickets < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::SupportTicket def all data = connection.get_support_tickets(href).body[:TicketReference] load(data) end def get(uri) if data = connection.get_support_ticket(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
13 entries across 13 versions & 7 rubygems