mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
31 lines
968 B
Ruby
31 lines
968 B
Ruby
module Fog
|
|
module Rackspace
|
|
class LoadBalancers
|
|
class Real
|
|
def set_ssl_termination(load_balancer_id, securePort, privatekey, certificate, options = {})
|
|
data = {
|
|
:securePort => securePort,
|
|
:privatekey => privatekey,
|
|
:certificate => certificate
|
|
}
|
|
|
|
if options.has_key? :intermediate_certificate
|
|
data['intermediateCertificate'] = options[:intermediate_certificate]
|
|
end
|
|
if options.has_key? :enabled
|
|
data['enabled'] = options[:enabled]
|
|
end
|
|
if options.has_key? :secure_traffic_only
|
|
data['secureTrafficOnly'] = options[:secure_traffic_only]
|
|
end
|
|
request(
|
|
:body => Fog::JSON.encode(data),
|
|
:expects => [200, 202],
|
|
:path => "loadbalancers/#{load_balancer_id}/ssltermination",
|
|
:method => 'PUT'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|