Sha256: 736201a05a782e3b63451fe91af27c0f77fc1a4b3875b38ff7fc420523ab3c3f

Contents?: true

Size: 681 Bytes

Versions: 28

Compression:

Stored size: 681 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Adds a BigSwitch VNS device
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/addBigSwitchVnsDevice.html]
        def add_big_switch_vns_device(*args)
          options = {}
          if args[0].is_a? Hash
            options = args[0]
            options.merge!('command' => 'addBigSwitchVnsDevice') 
          else
            options.merge!('command' => 'addBigSwitchVnsDevice', 
            'hostname' => args[0], 
            'physicalnetworkid' => args[1])
          end
          request(options)
        end
      end

    end
  end
end

Version data entries

28 entries across 26 versions & 4 rubygems

Version Path
fog-1.30.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.29.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.28.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.27.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.26.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.25.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
nsidc-fog-1.24.1 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb
fog-1.24.0 lib/fog/cloudstack/requests/compute/add_big_switch_vns_device.rb