1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/tests/requests/elbv2/helper.rb

57 lines
1.7 KiB
Ruby
Raw Normal View History

2019-10-28 05:56:19 -04:00
class AWS
module ELBV2
module Formats
BASIC = {
'ResponseMetadata' => {'RequestId' => String}
}
LOAD_BALANCER = {
"AvailabilityZones" => [{
"SubnetId" => String, "ZoneName" => String,
"LoadBalancerAddresses" => [Fog::Nullable::Hash]
}],
2019-10-28 05:56:19 -04:00
"LoadBalancerArn" => String,
"DNSName" => String,
"CreatedTime" => Time,
"LoadBalancerName" => String,
"VpcId" => String,
"CanonicalHostedZoneId" => String,
"Scheme" => String,
"Type" => String,
"State" => {"Code" => String},
"SecurityGroups" => [Fog::Nullable::String]
}
DESCRIBE_LOAD_BALANCERS = BASIC.merge({
'DescribeLoadBalancersResult' => {'LoadBalancers' => [LOAD_BALANCER], 'NextMarker' => Fog::Nullable::String}
})
CREATE_LOAD_BALANCER = BASIC.merge({
'CreateLoadBalancerResult' => {'LoadBalancers' => [LOAD_BALANCER], 'NextMarker' => Fog::Nullable::String}
})
LISTENER_DEFAULT_ACTIONS = [{
"Type" => String,
"Order" => String,
"TargetGroupArn" => String,
"RedirectConfig" => Fog::Nullable::Hash,
"ForwardConfig" => Fog::Nullable::Hash
}]
2019-10-28 05:56:19 -04:00
LISTENER = {
"LoadBalancerArn" => String,
"Protocol" => String,
"Port" => String,
"ListenerArn" => String,
"SslPolicy" => String,
"DefaultActions" => LISTENER_DEFAULT_ACTIONS,
"Certificates" => [{"CertificateArn" => String}]
2019-10-28 05:56:19 -04:00
}
DESCRIBE_LISTENERS = BASIC.merge({
'DescribeListenersResult' => {'Listeners' => [LISTENER], 'NextMarker' => Fog::Nullable::String}
})
end
end
end