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

com.pulumi.gcp.composer.kotlin.outputs.GetEnvironmentConfigDatabaseConfig.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.composer.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property machineType Optional. Cloud SQL machine type used by Airflow database. It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8 or db-n1-standard-16. If not specified, db-n1-standard-2 will be used.
 * @property zone Optional. Cloud SQL database preferred zone.
 */
public data class GetEnvironmentConfigDatabaseConfig(
    public val machineType: String,
    public val zone: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.composer.outputs.GetEnvironmentConfigDatabaseConfig): GetEnvironmentConfigDatabaseConfig = GetEnvironmentConfigDatabaseConfig(
            machineType = javaType.machineType(),
            zone = javaType.zone(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy