com.pulumi.vault.kotlin.inputs.GetRaftAutopilotStatePlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-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.vault.kotlin.inputs
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.vault.inputs.GetRaftAutopilotStatePlainArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getRaftAutopilotState.
* @property namespace The namespace of the target resource.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
* *Available only for Vault Enterprise*.
*/
public data class GetRaftAutopilotStatePlainArgs(
public val namespace: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.vault.inputs.GetRaftAutopilotStatePlainArgs =
com.pulumi.vault.inputs.GetRaftAutopilotStatePlainArgs.builder()
.namespace(namespace?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetRaftAutopilotStatePlainArgs].
*/
@PulumiTagMarker
public class GetRaftAutopilotStatePlainArgsBuilder internal constructor() {
private var namespace: String? = null
/**
* @param value The namespace of the target resource.
* The value should not contain leading or trailing forward slashes.
* The `namespace` is always relative to the provider's configured [namespace](https://www.terraform.io/docs/providers/vault/index.html#namespace).
* *Available only for Vault Enterprise*.
*/
@JvmName("fqtrraivleanciad")
public suspend fun namespace(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.namespace = mapped
}
internal fun build(): GetRaftAutopilotStatePlainArgs = GetRaftAutopilotStatePlainArgs(
namespace = namespace,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy