ComputedPropertyArgs

data class ComputedPropertyArgs(val name: Output<String>? = null, val query: Output<String>? = null) : ConvertibleToJava<ComputedPropertyArgs>

The definition of a computed property

Constructors

Link copied to clipboard
constructor(name: Output<String>? = null, query: Output<String>? = null)

Properties

Link copied to clipboard
val name: Output<String>? = null

The name of a computed property, for example - "cp_lowerName"

Link copied to clipboard
val query: Output<String>? = null

The query that evaluates the value for computed property, for example - "SELECT VALUE LOWER(c.name) FROM c"

Functions

Link copied to clipboard
open override fun toJava(): ComputedPropertyArgs