mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
949 B
Ruby
34 lines
949 B
Ruby
|
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
|