Sha256: a14eea8b6afe793bc19faebed4e6f60af7c984863134513af456c0e90462a52c

Contents?: true

Size: 1.24 KB

Versions: 44

Compression:

Stored size: 1.24 KB

Contents

require 'fog/core/model'

module Fog
  module Volume
    class OpenStack

      class Volume < Fog::Model

        identity :id

        attribute :display_name,        :aliases => 'displayName'
        attribute :display_description, :aliases => 'displayDescription'
        attribute :status
        attribute :size
        attribute :volume_type,         :aliases => ['volumeType', 'type']
        attribute :snapshot_id,         :aliases => 'snapshotId'
        attribute :imageRef,            :aliases => 'image_id'
        attribute :availability_zone,   :aliases => 'availabilityZone'
        attribute :created_at,          :aliases => 'createdAt'
        attribute :attachments
        attribute :source_volid


        def initialize(attributes)
          # Old 'connection' is renamed as service and should be used instead
          prepare_service_value(attributes)
          super
        end

        def save
          requires :display_name, :size
          data = service.create_volume(display_name, display_description, size, attributes)
          merge_attributes(data.body['volume'])
          true
        end

        def destroy
          requires :id
          service.delete_volume(id)
          true
        end

      end

    end
  end

end

Version data entries

44 entries across 44 versions & 3 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/models/volume/volume.rb
fog-1.20.0 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/models/volume/volume.rb
fog-1.19.0 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/openstack/models/volume/volume.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/openstack/models/volume/volume.rb