![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hpc.kotlin.outputs.CacheNfsTargetNamespaceJunction.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.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