Sha256: a9cef83430769107f53b7fb28bf2152e53389f56cc6f062e8ff0fd3898f51028

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

module Fog
  module AWS
    class Elasticache
      class Real

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

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

      class Mock
        def delete_cache_subnet_group(name)
          if self.data[:subnet_groups].delete(name)
            Excon::Response.new(
                {
                    :status => 200,
                    :body =>   { 'ResponseMetadata'=>{ 'RequestId'=> Fog::AWS::Mock.request_id } }
                }
            )
          else
            raise Fog::AWS::Elasticache::NotFound.new("CacheSubnetGroupNotFound => #{name} not found")
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
fog-1.21.0 lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb
fog-1.20.0 lib/fog/aws/requests/elasticache/delete_cache_subnet_group.rb