Sha256: ea2ce19540ec9d84d1c885be056f4efa19231117f5ece8b7dd802aff4253412e
Contents?: true
Size: 537 Bytes
Versions: 88
Compression:
Stored size: 537 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
88 entries across 88 versions & 15 rubygems