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

34 lines
949 B
Ruby
Raw Normal View History

module Fog
module AWS
class ACS
class Real
require 'fog/aws/parsers/acs/create_cache_security_group'
# creates a cache security group
#
# === Parameters
# * name <~String> - The name for the Cache Security Group
# * description <~String> - The description for the Cache Security Group
# === Returns
# * response <~Excon::Response>:
# * body <~Hash>
def create_cache_security_group(name, description = name)
request({
'Action' => 'CreateCacheSecurityGroup',
'CacheSecurityGroupName' => name,
'CacheSecurityGroupDescription' => description,
:parser => Fog::Parsers::AWS::ACS::CreateCacheSecurityGroup.new
})
end
end
class Mock
def create_cache_security_group(name, desciption=name)
Fog::Mock.not_implemented
end
end
end
end
end