Sha256: e69e99452db58b824ddda472cf15457e79ceef7086394cc96c476734b0833dac

Contents?: true

Size: 497 Bytes

Versions: 1

Compression:

Stored size: 497 Bytes

Contents

module Fog
  module Compute
    class Cloudstack

      class Real
        # Releases a Public IP range back to the system pool
        #
        # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/releasePublicIpRange.html]
        def release_public_ip_range(id, options={})
          options.merge!(
            'command' => 'releasePublicIpRange', 
            'id' => id  
          )
          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/release_public_ip_range.rb