Sha256: f304f0b21f53da3077556ecddf7727ea0b95645b1ee45f903e41e403ce7612db
Contents?: true
Size: 506 Bytes
Versions: 1
Compression:
Stored size: 506 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Deletes a load balancer HealthCheck policy. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deleteLBHealthCheckPolicy.html] def delete_lb_health_check_policy(id, options={}) options.merge!( 'command' => 'deleteLBHealthCheckPolicy', '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/delete_lb_health_check_policy.rb |