PubsubConfigArgs

data class PubsubConfigArgs(val serviceAccountEmail: Output<String>? = null, val state: Output<PubsubConfigState>? = null, val topic: Output<String>? = null) : ConvertibleToJava<PubsubConfigArgs>

PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.

Constructors

Link copied to clipboard
fun PubsubConfigArgs(serviceAccountEmail: Output<String>? = null, state: Output<PubsubConfigState>? = null, topic: Output<String>? = null)

Functions

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

Properties

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

Service account that will make the push request.

Link copied to clipboard
val state: Output<PubsubConfigState>? = null

Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests.

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

The name of the topic from which this subscription is receiving messages. Format is projects/{project}/topics/{topic}.