All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.googlenative.eventarc.v1.kotlin.outputs.CloudRunResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.eventarc.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Represents a Cloud Run destination.
 * @property path Optional. The relative path on the Cloud Run service the events should be sent to. The value must conform to the definition of a URI path segment (section 3.3 of RFC2396). Examples: "/route", "route", "route/subroute".
 * @property region The region the Cloud Run service is deployed in.
 * @property service 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 as the trigger object can be addressed.
 */
public data class CloudRunResponse(
    public val path: String,
    public val region: String,
    public val service: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.eventarc.v1.outputs.CloudRunResponse): CloudRunResponse = CloudRunResponse(
            path = javaType.path(),
            region = javaType.region(),
            service = javaType.service(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy