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