Expr Args
data class ExprArgs(val description: Output<String>? = null, val expression: Output<String>? = null, val location: Output<String>? = null, val title: Output<String>? = null) : ConvertibleToJava<ExprArgs>
Represents an expression text. Example: title: "User account presence" description: "Determines whether the request has a user account" expression: "size(request.user) 0"
Constructors
Properties
Link copied to clipboard
An optional description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
Link copied to clipboard
Textual representation of an expression in Common Expression Language syntax. The application context of the containing message determines which well-known feature set of CEL is supported.