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

com.pulumi.gcp.cloudrun.kotlin.outputs.GetServiceTemplateSpecVolumeNf.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.cloudrun.kotlin.outputs

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

/**
 *
 * @property path Path exported by the NFS server
 * @property readOnly If true, mount the NFS volume as read only in all mounts. Defaults to false.
 * @property server IP address or hostname of the NFS server
 */
public data class GetServiceTemplateSpecVolumeNf(
    public val path: String,
    public val readOnly: Boolean,
    public val server: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.cloudrun.outputs.GetServiceTemplateSpecVolumeNf): GetServiceTemplateSpecVolumeNf = GetServiceTemplateSpecVolumeNf(
            path = javaType.path(),
            readOnly = javaType.readOnly(),
            server = javaType.server(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy