
com.pulumi.azure.kotlin.inputs.ProviderFeaturesPostgresqlFlexibleServerArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.kotlin.inputs
import com.pulumi.azure.inputs.ProviderFeaturesPostgresqlFlexibleServerArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property restartServerOnConfigurationValueChange
*/
public data class ProviderFeaturesPostgresqlFlexibleServerArgs(
public val restartServerOnConfigurationValueChange: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.inputs.ProviderFeaturesPostgresqlFlexibleServerArgs =
com.pulumi.azure.inputs.ProviderFeaturesPostgresqlFlexibleServerArgs.builder()
.restartServerOnConfigurationValueChange(
restartServerOnConfigurationValueChange?.applyValue({ args0 ->
args0
}),
).build()
}
/**
* Builder for [ProviderFeaturesPostgresqlFlexibleServerArgs].
*/
@PulumiTagMarker
public class ProviderFeaturesPostgresqlFlexibleServerArgsBuilder internal constructor() {
private var restartServerOnConfigurationValueChange: Output? = null
/**
* @param value
*/
@JvmName("rkafivoasbqogwgk")
public suspend fun restartServerOnConfigurationValueChange(`value`: Output) {
this.restartServerOnConfigurationValueChange = value
}
/**
* @param value
*/
@JvmName("whilcnfcdaqdvvhy")
public suspend fun restartServerOnConfigurationValueChange(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.restartServerOnConfigurationValueChange = mapped
}
internal fun build(): ProviderFeaturesPostgresqlFlexibleServerArgs =
ProviderFeaturesPostgresqlFlexibleServerArgs(
restartServerOnConfigurationValueChange = restartServerOnConfigurationValueChange,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy