fog/fog-xenserver

View on GitHub
lib/fog/xenserver/compute/requests/introduce_vdi.rb

Summary

Maintainability
A
2 hrs
Test Coverage
module Fog
  module XenServer
    class Compute
      class Real
        def introduce_vdi(uuid, name_label, name_description, sr, type, sharable, read_only, other_config, location, xenstore_data, sm_config, managed, virtual_size, physical_utilisation, metadata_of_pool, is_a_snapshot, snapshot_time, snapshot_of)
          @connection.request({ :parser => Fog::XenServer::Parsers::Base.new, :method => "VDI.introduce" }, uuid, name_label, name_description, sr, type, sharable, read_only, other_config, location, xenstore_data, sm_config, managed, virtual_size, physical_utilisation, metadata_of_pool, is_a_snapshot, snapshot_time, snapshot_of)
        end
      end
    end
  end
end