Sha256: 38b6eafd796b2566dd0abbaf5ee4faa38152c41ebaee7ea7b781d6dee9cab829

Contents?: true

Size: 762 Bytes

Versions: 1

Compression:

Stored size: 762 Bytes

Contents

module Fog
  module AWS
    class Elasticache
      class Real

        require 'rackspace-fog/aws/parsers/elasticache/base'

        # deletes a cache security group
        #
        # === Parameters
        # * name <~String> - The name for the Cache Security Group
        # === Returns
        # * response <~Excon::Response>:
        #   * body <~Hash>
        def delete_cache_security_group(name)
          request({
            'Action' => 'DeleteCacheSecurityGroup',
            'CacheSecurityGroupName' => name,
            :parser => Fog::Parsers::AWS::Elasticache::Base.new
          })
        end
      end

      class Mock
        def delete_cache_security_group(name)
          Fog::Mock.not_implemented
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rackspace-fog-1.4.2 lib/rackspace-fog/aws/requests/elasticache/delete_cache_security_group.rb