Sha256: d0e8b1204a0bdd1ae8dad5725763ee0bc8a26f7a539497af0b259e3ca6addac5
Contents?: true
Size: 600 Bytes
Versions: 17
Compression:
Stored size: 600 Bytes
Contents
require 'fog/core/model' module Fog module Compute class XenServer class VbdMetrics < Fog::Model # API Reference here: # http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/api/?c=VBD_metrics identity :reference attribute :uuid attribute :last_updated attribute :other_config attribute :io_read_kbs attribute :io_write_kbs def initialize(attributes = {}) super self.last_updated = attributes[:last_updated].to_time end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems