Sha256: c831f604c7492bc077079c2a2ffc50c1e112733c6798b8a882e609a4562244ed
Contents?: true
Size: 524 Bytes
Versions: 1
Compression:
Stored size: 524 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Creates a Load Balancer healthcheck policy # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/createLBHealthCheckPolicy.html] def create_lb_health_check_policy(lbruleid, options={}) options.merge!( 'command' => 'createLBHealthCheckPolicy', 'lbruleid' => lbruleid ) 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/create_lb_health_check_policy.rb |