CloudRunServiceArgs

data class CloudRunServiceArgs(val path: Output<String>? = null, val region: Output<String>, val service: Output<String>) : ConvertibleToJava<CloudRunServiceArgs>

Represents a Cloud Run service destination.

Constructors

Link copied to clipboard
fun CloudRunServiceArgs(path: Output<String>? = null, region: Output<String>, service: Output<String>)

Functions

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

Properties

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

Optional. The relative path on the Cloud Run service the events should be sent to. The value must conform to the definition of URI path segment (section 3.3 of RFC2396). Examples: "/route", "route", "route/subroute".

Link copied to clipboard
val region: Output<String>

The region the Cloud Run service is deployed in.

Link copied to clipboard
val service: Output<String>

The name of the Cloud run service being addressed. See https://cloud.google.com/run/docs/reference/rest/v1/namespaces.services. Only services located in the same project of the trigger object can be addressed.