Sha256: 055b09ce6bc64e81596b90979192a6ee252df3cbd7bafc05dd775e595d7c1eea
Contents?: true
Size: 548 Bytes
Versions: 17
Compression:
Stored size: 548 Bytes
Contents
require 'fog/ecloud/models/compute/guest_process' module Fog module Compute class Ecloud class GuestProcesses < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::GuestProcess def all data = service.get_guest_processes(href).body[:GuestProcess] load(data) end def get(uri) if data = service.get_guest_process(uri) new(data.body) end rescue Fog::Errors::NotFound nil end end end end end
Version data entries
17 entries across 17 versions & 5 rubygems