ltm rule command BOTDEFENSE intentΒΆ

iRule(1)						BIG-IP TMSH Manual						  iRule(1)

BOTDEFENSE::intent
       Returns the intent found for the bot that sent the current request. The intent is based on the micro-service anomaly found
       for that client and may have been detected in a previous request of the client, not necessarily the present request

SYNOPSIS
       BOTDEFENSE::intent

DESCRIPTION
       Returns the intent found for the bot that sent the current request. The intent is based on the micro-service anomaly found
       for that client and may have been detected in a previous request of the client, not necessarily the present request

       Syntax

       BOTDEFENSE::intent

RETURN VALUE
       Returns the intent found for the bot that sent the current request based on a micro-service anomaly found for that bot, or
       empty string if no intent was found. The possible intents are those available per the various micro-services types.

VALID DURING
       BOTDEFENSE_ACTION

EXAMPLES
	when BOTDEFENSE_ACTION {
	    if {[BOTDEFENSE::intent] contains "OAT"} {
		BOTDEFENSE::action block
	    }
	}

HINTS
SEE ALSO
CHANGE LOG
       @BIGIP-14.1
	       --First introduced the command.

BIG-IP							    2022-04-12							  iRule(1)