com.pulumi.googlenative.apigee.v1.kotlin.inputs.GoogleCloudApigeeV1IntegrationConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.apigee.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.apigee.v1.inputs.GoogleCloudApigeeV1IntegrationConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Configuration for the Integration add-on.
* @property enabled Flag that specifies whether the Integration add-on is enabled.
*/
public data class GoogleCloudApigeeV1IntegrationConfigArgs(
public val enabled: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.apigee.v1.inputs.GoogleCloudApigeeV1IntegrationConfigArgs =
com.pulumi.googlenative.apigee.v1.inputs.GoogleCloudApigeeV1IntegrationConfigArgs.builder()
.enabled(enabled?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GoogleCloudApigeeV1IntegrationConfigArgs].
*/
@PulumiTagMarker
public class GoogleCloudApigeeV1IntegrationConfigArgsBuilder internal constructor() {
private var enabled: Output? = null
/**
* @param value Flag that specifies whether the Integration add-on is enabled.
*/
@JvmName("nfeudteeaibxbude")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value Flag that specifies whether the Integration add-on is enabled.
*/
@JvmName("mjrvlybcbwtlllmp")
public suspend fun enabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enabled = mapped
}
internal fun build(): GoogleCloudApigeeV1IntegrationConfigArgs =
GoogleCloudApigeeV1IntegrationConfigArgs(
enabled = enabled,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy