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

21 lines
418 B
Ruby
Raw Normal View History

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