Sha256: d39ae160686993e6412dfb7bdee27ecb25f501832a1cfdee42c526b076a9fb9a
Contents?: true
Size: 1.63 KB
Versions: 2
Compression:
Stored size: 1.63 KB
Contents
module Fog module VcloudDirector class Compute class Disk < Model # there is no lazy_load in disks identity :id attribute :address attribute :description attribute :name attribute :resource_sub_type attribute :resource_type attribute :address_on_parent attribute :parent attribute :capacity attribute :bus_sub_type attribute :bus_type remove_method :capacity= # TODO Virtual machine disk sizes may only be increased, not decreased. def capacity=(new_capacity) has_changed = ( capacity != new_capacity.to_i ) not_first_set = !capacity.nil? attributes[:capacity] = new_capacity.to_i if not_first_set && has_changed data = Fog::VcloudDirector::Generators::Compute::Disks.new(all_disks) num_disk = name.scan(/\d+/).first.to_i data.modify_hard_disk_size(num_disk, new_capacity) response = service.put_disks(attributes[:vm].id, data.disks) service.process_task(response.body) end end def all_disks attributes[:all_disks] # this is passed at instantiation time end def destroy num_disk = name.scan(/\d+/).first.to_i data = Fog::VcloudDirector::Generators::Compute::Disks.new(all_disks) data.delete_hard_disk(num_disk) response = service.put_disks(attributes[:vm].id, data.disks) service.process_task(response.body) end def reload # disks cannot be loaded with url self end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-vcloud-director-0.3.1 | lib/fog/vcloud_director/models/compute/disk.rb |
fog-vcloud-director-0.3.0 | lib/fog/vcloud_director/models/compute/disk.rb |