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

com.pulumi.alicloud.fc.kotlin.outputs.V3FunctionNasConfigMountPoint.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.fc.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property enableTls Use transport encryption to mount. Note: only general-purpose NAS supports transmission encryption.
 * @property mountDir
 * @property serverAddr NAS server address.
 */
public data class V3FunctionNasConfigMountPoint(
    public val enableTls: Boolean? = null,
    public val mountDir: String? = null,
    public val serverAddr: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.alicloud.fc.outputs.V3FunctionNasConfigMountPoint): V3FunctionNasConfigMountPoint = V3FunctionNasConfigMountPoint(
            enableTls = javaType.enableTls().map({ args0 -> args0 }).orElse(null),
            mountDir = javaType.mountDir().map({ args0 -> args0 }).orElse(null),
            serverAddr = javaType.serverAddr().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy