Package-level declarations

Types

Link copied to clipboard
data class BindingArgs(val condition: Output<ExprArgs>? = null, val members: Output<List<String>>? = null, val role: Output<String>? = null) : ConvertibleToJava<BindingArgs>

Associates members, or principals, with a role.

Link copied to clipboard
Link copied to clipboard
data class CardinalityArgs(val number: Output<Int>? = null, val path: Output<String>? = null) : ConvertibleToJava<CardinalityArgs>

A Cardinality condition for the Waiter resource. A cardinality condition is met when the number of variables under a specified path prefix reaches a predefined number. For example, if you set a Cardinality condition where the path is set to /foo and the number of paths is set to 2, the following variables would meet the condition in a RuntimeConfig resource: + /foo/variable1 = "value1" + /foo/variable2 = "value2" + /bar/variable3 = "value3" It would not satisfy the same condition with the number set to 3, however, because there is only 2 paths that start with /foo. Cardinality conditions are recursive; all subtrees under the specific path prefix are counted.

Link copied to clipboard
Link copied to clipboard
data class EndConditionArgs(val cardinality: Output<CardinalityArgs>? = null) : ConvertibleToJava<EndConditionArgs>

The condition that a Waiter resource is waiting for.

Link copied to clipboard
Link copied to clipboard
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 a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.

Link copied to clipboard

Builder for ExprArgs.

Link copied to clipboard
data class GetConfigIamPolicyPlainArgs(val configId: String, val optionsRequestedPolicyVersion: Int? = null, val project: String? = null) : ConvertibleToJava<GetConfigIamPolicyPlainArgs>
Link copied to clipboard
data class GetConfigPlainArgs(val configId: String, val project: String? = null) : ConvertibleToJava<GetConfigPlainArgs>
Link copied to clipboard
Link copied to clipboard
data class GetVariablePlainArgs(val configId: String, val project: String? = null, val variableId: String) : ConvertibleToJava<GetVariablePlainArgs>
Link copied to clipboard
data class GetWaiterPlainArgs(val configId: String, val project: String? = null, val waiterId: String) : ConvertibleToJava<GetWaiterPlainArgs>
Link copied to clipboard