All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.batch.kotlin.outputs.GetPoolMountNfsMount.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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