1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/cloudstack/requests/compute/create_load_balancer_rule.rb

20 lines
454 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Creates a load balancer rule
#
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.11/global_admin/createLoadBalancerRule.html]
def create_load_balancer_rule(options={})
options.merge!(
'command' => 'createLoadBalancerRule'
)
request(options)
end
end
end
end
end