mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
497 B
Ruby
22 lines
497 B
Ruby
class AWS
|
|
module Elasticache
|
|
module Formats
|
|
|
|
BASIC = {
|
|
'ResponseMetadata' => {'RequestId' => String}
|
|
}
|
|
|
|
SECURITY_GROUP = {
|
|
'EC2SecurityGroups' => Array,
|
|
'CacheSecurityGroupName' => String,
|
|
'Description' => String,
|
|
'OwnerId' => String
|
|
}
|
|
|
|
SINGLE_SECURITY_GROUP = BASIC.merge('CacheSecurityGroup' => SECURITY_GROUP)
|
|
DESCRIBE_SECURITY_GROUPS = BASIC.merge('CacheSecurityGroups' => [SECURITY_GROUP])
|
|
|
|
|
|
end
|
|
end
|
|
end
|