Sha256: 76fef23216169929060b65b884da5d2d277d9ade5ed8c3ea9e296baa26c1b3a8
Contents?: true
Size: 887 Bytes
Versions: 4
Compression:
Stored size: 887 Bytes
Contents
module Brightbox class Account < Api def ram_free [ram_limit.to_i - ram_used.to_i, 0].max end def cloud_ip_limit attributes[:cloud_ips_limit] end def lb_limit attributes[:load_balancers_limit] end def to_row attributes.merge(:ram_free => ram_free, :cloud_ip_limit => cloud_ip_limit, :lb_limit => lb_limit) end def self.all if $config.using_application? conn.accounts.all else [conn.account] end end def self.get(id) if $config.using_application? a = conn.accounts.get(id) else a = conn.account end if a and a.id == id a else nil end end def self.default_field_order [:id, :name, :cloud_ips_limit, :lb_limit, :ram_limit, :ram_used, :ram_free] end def to_s @id end end end
Version data entries
4 entries across 4 versions & 1 rubygems