PubSubArgs

data class PubSubArgs(val enabled: Output<Boolean>? = null, val filter: Output<FilterArgs>? = null, val topic: Output<String>? = null) : ConvertibleToJava<PubSubArgs>

Pub/Sub specific notification config.

Constructors

Link copied to clipboard
fun PubSubArgs(enabled: Output<Boolean>? = null, filter: Output<FilterArgs>? = null, topic: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val enabled: Output<Boolean>? = null

Enable notifications for Pub/Sub.

Link copied to clipboard
val filter: Output<FilterArgs>? = null

Allows filtering to one or more specific event types. If no filter is specified, or if a filter is specified with no event types, all event types will be sent

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

The desired Pub/Sub topic to which notifications will be sent by GKE. Format is projects/{project}/topics/{topic}.