getIPWhiteList
Syntax
getIPWhiteList()
Details
Get the current IP whitelist of the cluster.
Parameters
None
Returns
A STRING vector
Examples
addIPWhiteList(["1.1.1.1", "2.2.2.2", "3.3.3.3"])
removeIPWhiteList("2.2.2.2")
getIPWhiteList()
// output: ["1.1.1.1", "3.3.3.3"]
Related functions: addIPWhiteList, removeIPWhiteList
