mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
81 lines
2.4 KiB
Ruby
81 lines
2.4 KiB
Ruby
class AWS
|
|
module ELB
|
|
module Formats
|
|
|
|
BASIC = {
|
|
'ResponseMetadata' => {'RequestId' => String}
|
|
}
|
|
|
|
LOAD_BALANCER = {
|
|
"AvailabilityZones" => Array,
|
|
"CanonicalHostedZoneName" => String,
|
|
"CanonicalHostedZoneNameID" => String,
|
|
"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},
|
|
"SourceSecurityGroup" => {"GroupName" => String, "OwnerAlias" => String},
|
|
"Scheme" => String
|
|
}
|
|
|
|
CREATE_LOAD_BALANCER = BASIC.merge({
|
|
'CreateLoadBalancerResult' => { 'DNSName' => String }
|
|
})
|
|
|
|
DESCRIBE_LOAD_BALANCERS = BASIC.merge({
|
|
'DescribeLoadBalancersResult' => {'LoadBalancerDescriptions' => [LOAD_BALANCER]}
|
|
})
|
|
|
|
POLICY_ATTRIBUTE_DESCRIPTION = {
|
|
"AttributeName" => String,
|
|
"AttributeValue" => String
|
|
}
|
|
|
|
POLICY = {
|
|
"PolicyAttributeDescriptions" => [POLICY_ATTRIBUTE_DESCRIPTION],
|
|
"PolicyName" => String,
|
|
"PolicyTypeName" => String
|
|
}
|
|
|
|
DESCRIBE_LOAD_BALANCER_POLICIES = BASIC.merge({
|
|
'DescribeLoadBalancerPoliciesResult' => { 'PolicyDescriptions' => [POLICY] }
|
|
})
|
|
|
|
POLICY_ATTRIBUTE_TYPE_DESCRIPTION = {
|
|
"AttributeName" => String,
|
|
"AttributeType" => String,
|
|
"Cardinality" => String,
|
|
"DefaultValue" => String,
|
|
"Description" => String
|
|
}
|
|
|
|
POLICY_TYPE = {
|
|
"Description" => String,
|
|
"PolicyAttributeTypeDescriptions" => [POLICY_ATTRIBUTE_TYPE_DESCRIPTION],
|
|
"PolicyTypeName" => String
|
|
}
|
|
|
|
DESCRIBE_LOAD_BALANCER_POLICY_TYPES = BASIC.merge({
|
|
'DescribeLoadBalancerPolicyTypesResult' => { 'PolicyTypeDescriptions' => [POLICY_TYPE] }
|
|
})
|
|
|
|
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
|