
com.pulumi.gcp.cloudscheduler.kotlin.outputs.JobAppEngineHttpTargetAppEngineRouting.kt Maven / Gradle / Ivy
@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 - 2025 Weber Informatics LLC | Privacy Policy