com.pulumi.gcp.oracledatabase.kotlin.inputs.AutonomousDatabasePropertiesApexDetailArgs.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.oracledatabase.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesApexDetailArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property apexVersion The Oracle APEX Application Development version.
* @property ordsVersion The Oracle REST Data Services (ORDS) version.
*/
public data class AutonomousDatabasePropertiesApexDetailArgs(
public val apexVersion: Output? = null,
public val ordsVersion: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesApexDetailArgs =
com.pulumi.gcp.oracledatabase.inputs.AutonomousDatabasePropertiesApexDetailArgs.builder()
.apexVersion(apexVersion?.applyValue({ args0 -> args0 }))
.ordsVersion(ordsVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AutonomousDatabasePropertiesApexDetailArgs].
*/
@PulumiTagMarker
public class AutonomousDatabasePropertiesApexDetailArgsBuilder internal constructor() {
private var apexVersion: Output? = null
private var ordsVersion: Output? = null
/**
* @param value The Oracle APEX Application Development version.
*/
@JvmName("mqenectdnedfvdue")
public suspend fun apexVersion(`value`: Output) {
this.apexVersion = value
}
/**
* @param value The Oracle REST Data Services (ORDS) version.
*/
@JvmName("vogkfjggsbkuxugj")
public suspend fun ordsVersion(`value`: Output) {
this.ordsVersion = value
}
/**
* @param value The Oracle APEX Application Development version.
*/
@JvmName("kyaqegebuiqxfkwl")
public suspend fun apexVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.apexVersion = mapped
}
/**
* @param value The Oracle REST Data Services (ORDS) version.
*/
@JvmName("nwwasmreekdpbtki")
public suspend fun ordsVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ordsVersion = mapped
}
internal fun build(): AutonomousDatabasePropertiesApexDetailArgs =
AutonomousDatabasePropertiesApexDetailArgs(
apexVersion = apexVersion,
ordsVersion = ordsVersion,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy