com.pulumi.gcp.eventarc.kotlin.outputs.TriggerDestinationHttpEndpoint.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.eventarc.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property uri Required. The URI of the HTTP enpdoint. The value must be a RFC2396 URI string. Examples: `http://10.10.10.8:80/route`, `http://svc.us-central1.p.local:8080/`. Only HTTP and HTTPS protocols are supported. The host can be either a static IP addressable from the VPC specified by the network config, or an internal DNS hostname of the service resolvable via Cloud DNS.
*/
public data class TriggerDestinationHttpEndpoint(
public val uri: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.eventarc.outputs.TriggerDestinationHttpEndpoint): TriggerDestinationHttpEndpoint = TriggerDestinationHttpEndpoint(
uri = javaType.uri(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy