![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.iotoperations.kotlin.inputs.DataFlowEndpointLocalStorageArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.iotoperations.kotlin.inputs
import com.pulumi.azurenative.iotoperations.inputs.DataFlowEndpointLocalStorageArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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
/**
* Local persistent volume endpoint properties
* @property persistentVolumeClaimRef Persistent volume claim name.
*/
public data class DataFlowEndpointLocalStorageArgs(
public val persistentVolumeClaimRef: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.iotoperations.inputs.DataFlowEndpointLocalStorageArgs =
com.pulumi.azurenative.iotoperations.inputs.DataFlowEndpointLocalStorageArgs.builder()
.persistentVolumeClaimRef(persistentVolumeClaimRef.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataFlowEndpointLocalStorageArgs].
*/
@PulumiTagMarker
public class DataFlowEndpointLocalStorageArgsBuilder internal constructor() {
private var persistentVolumeClaimRef: Output? = null
/**
* @param value Persistent volume claim name.
*/
@JvmName("qrxvncxpvdnrherm")
public suspend fun persistentVolumeClaimRef(`value`: Output) {
this.persistentVolumeClaimRef = value
}
/**
* @param value Persistent volume claim name.
*/
@JvmName("qksmjvsiqxungnrf")
public suspend fun persistentVolumeClaimRef(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.persistentVolumeClaimRef = mapped
}
internal fun build(): DataFlowEndpointLocalStorageArgs = DataFlowEndpointLocalStorageArgs(
persistentVolumeClaimRef = persistentVolumeClaimRef ?: throw
PulumiNullFieldException("persistentVolumeClaimRef"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy