com.pulumi.gcp.gkebackup.kotlin.inputs.BackupPlanBackupConfigSelectedApplicationsArgs.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.gkebackup.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkebackup.inputs.BackupPlanBackupConfigSelectedApplicationsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property namespacedNames A list of namespaced Kubernetes resources.
* Structure is documented below.
*/
public data class BackupPlanBackupConfigSelectedApplicationsArgs(
public val namespacedNames: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkebackup.inputs.BackupPlanBackupConfigSelectedApplicationsArgs =
com.pulumi.gcp.gkebackup.inputs.BackupPlanBackupConfigSelectedApplicationsArgs.builder()
.namespacedNames(
namespacedNames.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [BackupPlanBackupConfigSelectedApplicationsArgs].
*/
@PulumiTagMarker
public class BackupPlanBackupConfigSelectedApplicationsArgsBuilder internal constructor() {
private var namespacedNames:
Output>? = null
/**
* @param value A list of namespaced Kubernetes resources.
* Structure is documented below.
*/
@JvmName("fxxvbymxjgpsrsbf")
public suspend fun namespacedNames(`value`: Output>) {
this.namespacedNames = value
}
@JvmName("kkwlmygsfseublck")
public suspend fun namespacedNames(vararg values: Output) {
this.namespacedNames = Output.all(values.asList())
}
/**
* @param values A list of namespaced Kubernetes resources.
* Structure is documented below.
*/
@JvmName("wtiygqlskwaydqrh")
public suspend fun namespacedNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy