com.pulumi.gcp.netapp.kotlin.outputs.VolumeMountOption.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.netapp.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property export (Output)
* Export path of the volume.
* @property exportFull (Output)
* Full export path of the volume.
* Format for NFS volumes: `:/`
* Format for SMB volumes: `\\\\netbios_prefix-four_random_hex_letters.domain_name\\shareName`
* @property instructions (Output)
* Human-readable mount instructions.
* @property protocol (Output)
* Protocol to mount with.
*/
public data class VolumeMountOption(
public val export: String? = null,
public val exportFull: String? = null,
public val instructions: String? = null,
public val protocol: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.netapp.outputs.VolumeMountOption): VolumeMountOption = VolumeMountOption(
export = javaType.export().map({ args0 -> args0 }).orElse(null),
exportFull = javaType.exportFull().map({ args0 -> args0 }).orElse(null),
instructions = javaType.instructions().map({ args0 -> args0 }).orElse(null),
protocol = javaType.protocol().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy