com.pulumi.gcp.cloudscheduler.kotlin.outputs.JobAppEngineHttpTargetAppEngineRouting.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.cloudscheduler.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property instance App instance.
* By default, the job is sent to an instance which is available when the job is attempted.
* @property service App service.
* By default, the job is sent to the service which is the default service when the job is attempted.
* @property version App version.
* By default, the job is sent to the version which is the default version when the job is attempted.
*/
public data class JobAppEngineHttpTargetAppEngineRouting(
public val instance: String? = null,
public val service: String? = null,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudscheduler.outputs.JobAppEngineHttpTargetAppEngineRouting): JobAppEngineHttpTargetAppEngineRouting = JobAppEngineHttpTargetAppEngineRouting(
instance = javaType.instance().map({ args0 -> args0 }).orElse(null),
service = javaType.service().map({ args0 -> args0 }).orElse(null),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy