Sha256: 53a08c588a66211c78c7d8dbde6f6c5e19f84618c0b3bac46bab39de9dc270b1
Contents?: true
Size: 668 Bytes
Versions: 28
Compression:
Stored size: 668 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.4/root_admin/createLBHealthCheckPolicy.html] def create_lb_health_check_policy(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'createLBHealthCheckPolicy') else options.merge!('command' => 'createLBHealthCheckPolicy', 'lbruleid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems