com.pulumi.gcp.dataproc.kotlin.inputs.WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs.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.dataproc.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataproc.inputs.WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property instanceGroupManagerName Output only. The name of the Instance Group Manager for this group.
* @property instanceTemplateName Output only. The name of the Instance Template used for the Managed Instance Group.
*/
public data class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs(
public val instanceGroupManagerName: Output? = null,
public val instanceTemplateName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.dataproc.inputs.WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs =
com.pulumi.gcp.dataproc.inputs.WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs.builder()
.instanceGroupManagerName(instanceGroupManagerName?.applyValue({ args0 -> args0 }))
.instanceTemplateName(instanceTemplateName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs].
*/
@PulumiTagMarker
public class WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgsBuilder
internal constructor() {
private var instanceGroupManagerName: Output? = null
private var instanceTemplateName: Output? = null
/**
* @param value Output only. The name of the Instance Group Manager for this group.
*/
@JvmName("jqugfqxkdnrwqdyd")
public suspend fun instanceGroupManagerName(`value`: Output) {
this.instanceGroupManagerName = value
}
/**
* @param value Output only. The name of the Instance Template used for the Managed Instance Group.
*/
@JvmName("hatxorhqulmsrjmy")
public suspend fun instanceTemplateName(`value`: Output) {
this.instanceTemplateName = value
}
/**
* @param value Output only. The name of the Instance Group Manager for this group.
*/
@JvmName("qnevaqvlblkyckbb")
public suspend fun instanceGroupManagerName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.instanceGroupManagerName = mapped
}
/**
* @param value Output only. The name of the Instance Template used for the Managed Instance Group.
*/
@JvmName("eloapufiyofvqujn")
public suspend fun instanceTemplateName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.instanceTemplateName = mapped
}
internal fun build(): WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs =
WorkflowTemplatePlacementManagedClusterConfigMasterConfigManagedGroupConfigArgs(
instanceGroupManagerName = instanceGroupManagerName,
instanceTemplateName = instanceTemplateName,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy