# File lib/fog/compute/models/aws/security_group.rb, line 133
        def revoke_group_and_owner(group, owner)
          requires :name

          connection.revoke_security_group_ingress(
            name,
            'SourceSecurityGroupName'     => group,
            'SourceSecurityGroupOwnerId'  => owner
          )
        end