mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
21 lines
418 B
Ruby
21 lines
418 B
Ruby
|
class AWS
|
||
|
module ACS
|
||
|
module Formats
|
||
|
|
||
|
BASIC = {
|
||
|
'ResponseMetadata' => {'RequestId' => String}
|
||
|
}
|
||
|
|
||
|
SECURITY_GROUP = {
|
||
|
'EC2SecurityGroups' => Array,
|
||
|
'CacheSecurityGroupName' => String,
|
||
|
'CacheSecurityGroupDescription' => String,
|
||
|
'OwnerId' => String
|
||
|
}
|
||
|
|
||
|
CREATE_SECURITY_GROUP = BASIC.merge('CacheSecurityGroup' => SECURITY_GROUP)
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|