Sha256: 3c38e2cb9aec10256a41d967beaac500b08b0bf7c26b8018addac99634ec3f8e
Contents?: true
Size: 666 Bytes
Versions: 28
Compression:
Stored size: 666 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Adds traffic type to a physical network # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/addTrafficType.html] def add_traffic_type(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'addTrafficType') else options.merge!('command' => 'addTrafficType', 'traffictype' => args[0], 'physicalnetworkid' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems