mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
class AWS
|
|
module ELB
|
|
module Formats
|
|
|
|
BASIC = {
|
|
'ResponseMetadata' => {'RequestId' => String}
|
|
}
|
|
|
|
LOAD_BALANCER = {
|
|
"AvailabilityZones" => Array,
|
|
"CreatedTime" => Time,
|
|
"DNSName" => String,
|
|
"HealthCheck" => {"HealthyThreshold" => Integer, "Timeout" => Integer, "UnhealthyThreshold" => Integer, "Interval" => Integer, "Target" => String},
|
|
"Instances" => Array,
|
|
"ListenerDescriptions" => Array,
|
|
"LoadBalancerName" => String,
|
|
"Policies" => {"LBCookieStickinessPolicies" => Array, "AppCookieStickinessPolicies" => Array},
|
|
}
|
|
|
|
CREATE_LOAD_BALANCER = BASIC.merge({
|
|
'CreateLoadBalancerResult' => { 'DNSName' => String }
|
|
})
|
|
|
|
DESCRIBE_LOAD_BALANCERS = BASIC.merge({
|
|
'DescribeLoadBalancersResult' => {'LoadBalancerDescriptions' => [LOAD_BALANCER]}
|
|
})
|
|
|
|
CONFIGURE_HEALTH_CHECK = BASIC.merge({
|
|
'ConfigureHealthCheckResult' => {'HealthCheck' => {
|
|
'Target' => String,
|
|
'Interval' => Integer,
|
|
'Timeout' => Integer,
|
|
'UnhealthyThreshold' => Integer,
|
|
'HealthyThreshold' => Integer
|
|
}}
|
|
})
|
|
|
|
DELETE_LOAD_BALANCER = BASIC.merge({
|
|
'DeleteLoadBalancerResult' => NilClass
|
|
})
|
|
|
|
end
|
|
end
|
|
end
|