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

com.pulumi.azure.hpc.kotlin.outputs.CacheNfsTargetNamespaceJunction.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.hpc.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property accessPolicyName The name of the access policy applied to this target. Defaults to `default`.
 * @property namespacePath The client-facing file path of this NFS target within the HPC Cache NFS Target.
 * @property nfsExport The NFS export of this NFS target within the HPC Cache NFS Target.
 * @property targetPath The relative subdirectory path from the `nfs_export` to map to the `namespace_path`. Defaults to `""`, in which case the whole `nfs_export` is exported.
 */
public data class CacheNfsTargetNamespaceJunction(
    public val accessPolicyName: String? = null,
    public val namespacePath: String,
    public val nfsExport: String,
    public val targetPath: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.hpc.outputs.CacheNfsTargetNamespaceJunction): CacheNfsTargetNamespaceJunction = CacheNfsTargetNamespaceJunction(
            accessPolicyName = javaType.accessPolicyName().map({ args0 -> args0 }).orElse(null),
            namespacePath = javaType.namespacePath(),
            nfsExport = javaType.nfsExport(),
            targetPath = javaType.targetPath().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy