Sha256: fbe4203884065b16fbe8d09fc1a97bec54e2ea69898b9cf88524856d4bfa8cf3

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Lists storage pools available for migration of a volume.
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/findStoragePoolsForMigration.html]
        def find_storage_pools_for_migration(id, options={})
          options.merge!(
            'command' => 'findStoragePoolsForMigration', 
            'id' => id  
          )
          request(options)
        end
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-1.23.0 lib/fog/cloudstack/requests/compute/find_storage_pools_for_migration.rb