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

com.pulumi.gcp.oracledatabase.kotlin.inputs.AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs.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.20.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.oracledatabase.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property high The database service provides the highest level of resources to each SQL
 * statement.
 * @property low The database service provides the least level of resources to each SQL
 * statement.
 * @property medium The database service provides a lower level of resources to each SQL
 * statement.
 */
public data class AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs(
    public val high: Output? = null,
    public val low: Output? = null,
    public val medium: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs =
        com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs.builder()
            .high(high?.applyValue({ args0 -> args0 }))
            .low(low?.applyValue({ args0 -> args0 }))
            .medium(medium?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs].
 */
@PulumiTagMarker
public class AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgsBuilder internal constructor() {
    private var high: Output? = null

    private var low: Output? = null

    private var medium: Output? = null

    /**
     * @param value The database service provides the highest level of resources to each SQL
     * statement.
     */
    @JvmName("mrpbyomowantcble")
    public suspend fun high(`value`: Output) {
        this.high = value
    }

    /**
     * @param value The database service provides the least level of resources to each SQL
     * statement.
     */
    @JvmName("paslixgnmfmhlfic")
    public suspend fun low(`value`: Output) {
        this.low = value
    }

    /**
     * @param value The database service provides a lower level of resources to each SQL
     * statement.
     */
    @JvmName("xriygieyqicriakj")
    public suspend fun medium(`value`: Output) {
        this.medium = value
    }

    /**
     * @param value The database service provides the highest level of resources to each SQL
     * statement.
     */
    @JvmName("aurxvsapyywtakww")
    public suspend fun high(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.high = mapped
    }

    /**
     * @param value The database service provides the least level of resources to each SQL
     * statement.
     */
    @JvmName("eyetqgosohsswvhl")
    public suspend fun low(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.low = mapped
    }

    /**
     * @param value The database service provides a lower level of resources to each SQL
     * statement.
     */
    @JvmName("jhtvauhdgwaydafh")
    public suspend fun medium(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.medium = mapped
    }

    internal fun build(): AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs =
        AutonomousDatabasePropertiesConnectionStringAllConnectionStringArgs(
            high = high,
            low = low,
            medium = medium,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy