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

com.pulumi.gcp.cloudtasks.kotlin.outputs.QueueAppEngineRoutingOverride.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.

There is a newer version: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.cloudtasks.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property host (Output)
 * The host that the task is sent to.
 * @property instance App instance.
 * By default, the task is sent to an instance which is available when the task is attempted.
 * @property service App service.
 * By default, the task is sent to the service which is the default service when the task is attempted.
 * @property version App version.
 * By default, the task is sent to the version which is the default version when the task is attempted.
 */
public data class QueueAppEngineRoutingOverride(
    public val host: String? = null,
    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.cloudtasks.outputs.QueueAppEngineRoutingOverride): QueueAppEngineRoutingOverride = QueueAppEngineRoutingOverride(
            host = javaType.host().map({ args0 -> args0 }).orElse(null),
            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