avi.vs.table_remove

DataScript

Function avi.vs.table_remove( [table_name,] key )
Description The table API is used to store and retrieve custom data.
The avi.vs.table_remove API removes a specified key/value pair from the data store for the specified key.
Events VS_DATASCRIPT_EVT_L4_REQUEST
VS_DATASCRIPT_EVT_L4_RESPONSE
Parameters If the optional table_name is not specified, the key is looked up in the default table for the virtual service. When it is specified, a custom table will be searched. The key is used to search for the table entry to be deleted.
Returns No value returned
Example

if radius_username == “myuser” then
   avi.vs.table_remove(radius_username)
end