mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
944 B
Ruby
33 lines
944 B
Ruby
module Fog
|
|
module AWS
|
|
class Elasticache
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/elasticache/single_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,
|
|
'Description' => description,
|
|
:parser => Fog::Parsers::AWS::Elasticache::SingleSecurityGroup.new
|
|
})
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def create_cache_security_group(name, desciption=name)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|