Sha256: e737d782cb1f18dc8e6be8ab02f6fb8386635ecadcb429d7f614d7b5c427f25c

Contents?: true

Size: 1.1 KB

Versions: 101

Compression:

Stored size: 1.1 KB

Contents

module Fog
  module AWS
    class Elasticache
      class Real

        require 'fog/aws/parsers/elasticache/single_security_group'

        # Revoke ingress to a CacheSecurityGroup using EC2 Security Groups
        #
        # === Parameters
        # * name <~String> - The name of the cache security group
        # * ec2_name <~String> - The name of the EC2 security group to revoke
        # * ec2_owner_id <~String> - The AWS Account Number of the EC2 security group
        # === Returns
        # * response <~Excon::Response>:
        #   * body <~Hash>
        def revoke_cache_security_group_ingress(name, ec2_name, ec2_owner_id)
          request({
            'Action' => 'RevokeCacheSecurityGroupIngress',
            'CacheSecurityGroupName' => name,
            'EC2SecurityGroupName' => ec2_name,
            'EC2SecurityGroupOwnerId' => ec2_owner_id,
            :parser => Fog::Parsers::AWS::Elasticache::SingleSecurityGroup.new
          })
        end

      end

      class Mock
        def revoke_cache_security_group_ingress
          Fog::Mock.not_implemented
        end
      end
    end
  end
end

Version data entries

101 entries across 101 versions & 17 rubygems

Version Path
fog-1.10.1 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-parser-fix-1.6.1 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-test-again-1.6.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-test-me-1.10.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-parser-fix-1.6.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.10.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.9.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-maestrodev-1.8.0.20130114204828 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-maestrodev-1.8.0.20130111070250 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-maestrodev-1.8.0.20130109172219 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
ey-vendored-backup-3.0.27 vendor/gems/fog/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-sgonyea-1.8.1 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.8.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-maestrodev-1.7.0.20121114190951 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.7.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.6.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.5.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
fog-1.4.0 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb
michiels-fog-1.3.1 lib/fog/aws/requests/elasticache/revoke_cache_security_group_ingress.rb