
com.pulumi.googlenative.managedidentities.v1.kotlin.inputs.GetBackupPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.managedidentities.v1.kotlin.inputs
import com.pulumi.googlenative.managedidentities.v1.inputs.GetBackupPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property backupId
* @property domainId
* @property project
*/
public data class GetBackupPlainArgs(
public val backupId: String,
public val domainId: String,
public val project: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.managedidentities.v1.inputs.GetBackupPlainArgs =
com.pulumi.googlenative.managedidentities.v1.inputs.GetBackupPlainArgs.builder()
.backupId(backupId.let({ args0 -> args0 }))
.domainId(domainId.let({ args0 -> args0 }))
.project(project?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetBackupPlainArgs].
*/
@PulumiTagMarker
public class GetBackupPlainArgsBuilder internal constructor() {
private var backupId: String? = null
private var domainId: String? = null
private var project: String? = null
/**
* @param value
*/
@JvmName("wnoopviuifbkkulj")
public suspend fun backupId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.backupId = mapped
}
/**
* @param value
*/
@JvmName("neiprrixpylntbob")
public suspend fun domainId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.domainId = mapped
}
/**
* @param value
*/
@JvmName("pijrrihqpkaggmpk")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.project = mapped
}
internal fun build(): GetBackupPlainArgs = GetBackupPlainArgs(
backupId = backupId ?: throw PulumiNullFieldException("backupId"),
domainId = domainId ?: throw PulumiNullFieldException("domainId"),
project = project,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy