Sha256: 191f874f776f6d16c716ed9c9e9f97dd22bf096e84898407c935a6b3eaa253d3

Contents?: true

Size: 1.24 KB

Versions: 11

Compression:

Stored size: 1.24 KB

Contents

module VirtualBox
  module COM
    module Interface
      module Version_4_0_X
        class NetworkAdapter < AbstractInterface
          IID = "65607a27-2b73-4d43-b4cc-0ba2c817fbde"

          property :adapter_type, :NetworkAdapterType
          property :slot, T_UINT32, :readonly => true
          property :enabled, T_BOOL
          property :mac_address, WSTRING
          property :attachment_type, :NetworkAttachmentType, :readonly => true
          property :host_interface, WSTRING
          property :internal_network, WSTRING
          property :nat_network, WSTRING
          property :vde_network, WSTRING
          property :cable_connected, T_BOOL
          property :line_speed, T_UINT32
          property :trace_enabled, T_BOOL
          property :trace_file, WSTRING
          property :nat_driver, :NATEngine, :readonly => true
          property :boot_priority, T_UINT32
          property :bandwidth_limit, T_UINT32

          function :attach_to_nat, nil, []
          function :attach_to_bridged_interface, nil, []
          function :attach_to_internal_network, nil, []
          function :attach_to_host_only_interface, nil, []
          function :attach_to_vde, nil, []
          function :detach, nil, []
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
virtualbox-0.9.2 lib/virtualbox/com/interface/4.0.x/NetworkAdapter.rb
virtualbox-0.9.1 lib/virtualbox/com/interface/4.0.x/NetworkAdapter.rb
virtualbox-0.9.0 lib/virtualbox/com/interface/4.0.x/NetworkAdapter.rb
virtualbox-0.8.6 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.5 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.4 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
velir_virtualbox-0.8.4 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.3 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.2 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.1 lib/virtualbox/com/interface/4.0.x/network_adapter.rb
virtualbox-0.8.0 lib/virtualbox/com/interface/4.0.x/network_adapter.rb