![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudAppCustomPersistentDiskArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appplatform.kotlin.inputs
import com.pulumi.azure.appplatform.inputs.SpringCloudAppCustomPersistentDiskArgs.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property mountOptions These are the mount options for a persistent disk.
* @property mountPath The mount path of the persistent disk.
* @property readOnlyEnabled Indicates whether the persistent disk is a readOnly one.
* @property shareName The share name of the Azure File share.
* @property storageName The name of the Spring Cloud Storage.
*/
public data class SpringCloudAppCustomPersistentDiskArgs(
public val mountOptions: Output>? = null,
public val mountPath: Output,
public val readOnlyEnabled: Output? = null,
public val shareName: Output,
public val storageName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudAppCustomPersistentDiskArgs = com.pulumi.azure.appplatform.inputs.SpringCloudAppCustomPersistentDiskArgs.builder()
.mountOptions(mountOptions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.mountPath(mountPath.applyValue({ args0 -> args0 }))
.readOnlyEnabled(readOnlyEnabled?.applyValue({ args0 -> args0 }))
.shareName(shareName.applyValue({ args0 -> args0 }))
.storageName(storageName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpringCloudAppCustomPersistentDiskArgs].
*/
@PulumiTagMarker
public class SpringCloudAppCustomPersistentDiskArgsBuilder internal constructor() {
private var mountOptions: Output>? = null
private var mountPath: Output? = null
private var readOnlyEnabled: Output? = null
private var shareName: Output? = null
private var storageName: Output? = null
/**
* @param value These are the mount options for a persistent disk.
*/
@JvmName("mqetfsudxgtntjao")
public suspend fun mountOptions(`value`: Output>) {
this.mountOptions = value
}
@JvmName("htjxdurtcmtnnacg")
public suspend fun mountOptions(vararg values: Output) {
this.mountOptions = Output.all(values.asList())
}
/**
* @param values These are the mount options for a persistent disk.
*/
@JvmName("bvtcqglngxvrbwlp")
public suspend fun mountOptions(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy