Sha256: 1b8d19d2adc109e2d0e159d369e34ef6d49721735ce8892ad0a7a444f812baa0
Contents?: true
Size: 707 Bytes
Versions: 1
Compression:
Stored size: 707 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Adds a Cisco Asa 1000v appliance # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/addCiscoAsa1000vResource.html] def add_cisco_asa1000v_resource(physicalnetworkid, clusterid, hostname, insideportprofile, options={}) options.merge!( 'command' => 'addCiscoAsa1000vResource', 'physicalnetworkid' => physicalnetworkid, 'clusterid' => clusterid, 'hostname' => hostname, 'insideportprofile' => insideportprofile ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/add_cisco_asa1000v_resource.rb |