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

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