Sha256: d20091cca37fc44e3a7ebb54edd0e662e70b6fb808506ed417afcc5c36ba85d1
Contents?: true
Size: 533 Bytes
Versions: 43
Compression:
Stored size: 533 Bytes
Contents
require 'fog/core/model' module Fog module Compute class Clodo class Image < Fog::Model identity :id attribute :name attribute :vps_type attribute :status attribute :os_type attribute :os_bits attribute :os_hvm def initialize(new_attributes) super(new_attributes) merge_attributes(new_attributes['_attr']) if new_attributes['_attr'] end def ready? status == 'ACTIVE' end end end end end
Version data entries
43 entries across 41 versions & 6 rubygems