Sha256: 27a048d0f06138c29610b7011c67383713d4dac91ba6f07e7008f755c3c67d05

Contents?: true

Size: 1.55 KB

Versions: 69

Compression:

Stored size: 1.55 KB

Contents

require 'fog/core/model'
require 'fog/openstack/models/compute/metadata'

module Fog
  module Compute
    class OpenStack

      class Volume < Fog::Model

        identity :id

        attribute :name,                :aliases => 'displayName'
        attribute :description,         :aliases => 'displayDescription'
        attribute :status
        attribute :size
        attribute :type,                :aliases => 'volumeType'
        attribute :snapshot_id,         :aliases => 'snapshotId'
        attribute :availability_zone,   :aliases => 'availabilityZone'
        attribute :created_at,          :aliases => 'createdAt'
        attribute :attachments


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

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

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

        def attach(server_id, name)
          requires :id
          data = service.attach_volume(id, server_id, name)
          merge_attributes(:attachments => attachments << data.body['volumeAttachment'])
          true
        end

        def detach(server_id, attachment_id)
          requires :id
          service.detach_volume(server_id, attachment_id)
          true
        end
      end

    end
  end

end

Version data entries

69 entries across 69 versions & 7 rubygems

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