com.pulumi.gcp.composer.kotlin.outputs.EnvironmentConfigWebServerConfig.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.composer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property machineType Optional. Machine type on which Airflow web server is running. It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or composer-n1-webserver-8. If not specified, composer-n1-webserver-2 will be used. Value custom is returned only in response, if Airflow web server parameters were manually changed to a non-standard values.
*/
public data class EnvironmentConfigWebServerConfig(
public val machineType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.EnvironmentConfigWebServerConfig): EnvironmentConfigWebServerConfig = EnvironmentConfigWebServerConfig(
machineType = javaType.machineType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy