Sha256: 2702e8e09820986663f03465f6c71f8b70392bb95dbaa0f56a8dadf4b3031a69

Contents?: true

Size: 1.16 KB

Versions: 37

Compression:

Stored size: 1.16 KB

Contents

require 'fog/core/collection'
require 'fog/vsphere/models/compute/volume'

module Fog
  module Compute
    class Vsphere

      class Volumes < Fog::Collection

        attribute :server

        model Fog::Compute::Vsphere::Volume

        def all(filters = {})
          requires :server

          case server
            when Fog::Compute::Vsphere::Server
              load service.list_vm_volumes(server.id)
            when Fog::Compute::Vsphere::Template
              load service.list_template_volumes(server.id)
            else
              raise 'volumes should have vm or template'
            end

          self.each { |volume| volume.server_id = server.id }
          self
        end

        def get(id)
          new service.get_volume(id)
        end

        def new(attributes = {})
          if server
            # Default to the root volume datastore if one is not configured.
            datastore = ! attributes.has_key?(:datastore) && self.any? ? self.first.datastore : nil

            super({ :server_id => server.id, :datastore => datastore }.merge!(attributes))
          else
            super
          end
        end

     end
    end
  end
end

Version data entries

37 entries across 37 versions & 2 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131205181604 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131127194823 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131126183714 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131126122111 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131125111730 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131125083406 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131123105121 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131122203507 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131121075022 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131118164830 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131115184302 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131114200144 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131112185232 lib/fog/vsphere/models/compute/volumes.rb
fog-maestrodev-1.18.0.20131111203459 lib/fog/vsphere/models/compute/volumes.rb
fog-1.18.0 lib/fog/vsphere/models/compute/volumes.rb