EventTriggerResponse

data class EventTriggerResponse(val channel: String, val eventFilters: List<EventFilterResponse>, val eventType: String, val pubsubTopic: String, val retryPolicy: String, val serviceAccountEmail: String, val trigger: String, val triggerRegion: String)

Describes EventTrigger, used to request events to be sent from another service.

Constructors

Link copied to clipboard
fun EventTriggerResponse(channel: String, eventFilters: List<EventFilterResponse>, eventType: String, pubsubTopic: String, retryPolicy: String, serviceAccountEmail: String, trigger: String, triggerRegion: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Optional. The name of the channel associated with the trigger in projects/{project}/locations/{location}/channels/{channel} format. You must provide a channel to receive events from Eventarc SaaS partners.

Link copied to clipboard

Criteria used to filter events.

Link copied to clipboard

The type of event to observe. For example: google.cloud.audit.log.v1.written or google.cloud.pubsub.topic.v1.messagePublished.

Link copied to clipboard

Optional. The name of a Pub/Sub topic in the same project that will be used as the transport topic for the event delivery. Format: projects/{project}/topics/{topic}. This is only valid for events of type google.cloud.pubsub.topic.v1.messagePublished. The topic provided here will not be deleted at function deletion.

Link copied to clipboard

Optional. If unset, then defaults to ignoring failures (i.e. not retrying them).

Link copied to clipboard

Optional. The email of the trigger's service account. The service account must have permission to invoke Cloud Run services, the permission is run.routes.invoke. If empty, defaults to the Compute Engine default service account: {project_number}-compute@developer.gserviceaccount.com.

Link copied to clipboard

The resource name of the Eventarc trigger. The format of this field is projects/{project}/locations/{region}/triggers/{trigger}.

Link copied to clipboard

The region that the trigger will be in. The trigger will only receive events originating in this region. It can be the same region as the function, a different region or multi-region, or the global region. If not provided, defaults to the same region as the function.