![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.batch.kotlin.outputs.GetPoolMountNfsMount.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.batch.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property mountOptions Additional command line options to pass to the mount command. These are 'net use' options in Windows and 'mount' options in Linux.
* @property relativeMountPath The relative path on compute node where the file system will be mounted All file systems are mounted relative to the Batch mounts directory, accessible via the `AZ_BATCH_NODE_MOUNTS_DIR` environment variable.
* @property source The URI of the file system to mount.
*/
public data class GetPoolMountNfsMount(
public val mountOptions: String,
public val relativeMountPath: String,
public val source: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.batch.outputs.GetPoolMountNfsMount): GetPoolMountNfsMount = GetPoolMountNfsMount(
mountOptions = javaType.mountOptions(),
relativeMountPath = javaType.relativeMountPath(),
source = javaType.source(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy