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