Sha256: b756fbb3ed5856bc437bb7d5eaff4664f2ac7848d95686236a06e4f193a0f3fa
Contents?: true
Size: 563 Bytes
Versions: 13
Compression:
Stored size: 563 Bytes
Contents
require 'fog/ecloud/models/compute/admin_organization' module Fog module Compute class Ecloud class AdminOrganizations < Fog::Ecloud::Collection identity :href model Fog::Compute::Ecloud::AdminOrganization def all data = connection.get_admin_organizations(href).body load(data) end def get(uri) if data = connection.get_admin_organization(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