Sha256: 169aaf1a96a57e76f0f962e56e15f490d2f51d711dbed8921820211ae7d235b9
Contents?: true
Size: 1.33 KB
Versions: 40
Compression:
Stored size: 1.33 KB
Contents
module Fog module Compute class Cloudstack class DiskOffering < Fog::Model identity :id, :aliases => 'id' attribute :created attribute :disk_size, :aliases => 'disk_size' attribute :display_text, :aliases => 'display_text' attribute :domain attribute :domain_id, :aliases => 'domainid' attribute :is_customized, :aliases => 'iscustomized' attribute :name attribute :storage_type, :aliases => 'storagetype' attribute :tags def save requires :display_text, :name options = { 'displaytext' => display_text, 'name' => name, 'customized' => is_customized, 'disksize' => disk_size, 'domain_id' => domain_id, 'storagetype' => storage_type, 'tags' => tags } response = service.create_disk_offering(options) merge_attributes(response['creatediskofferingresponse']) end def destroy requires :id response = service.delete_disk_offering('id' => id ) success_status = response['deletediskofferingresponse']['success'] success_status == 'true' end end # DiskOffering end # Cloudstack end # Compute end # Fog
Version data entries
40 entries across 38 versions & 5 rubygems