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

com.pulumi.azurenative.workloads.kotlin.outputs.MountFileShareConfigurationResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.workloads.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Gets or sets the file share configuration where the transport directory fileshare already exists, and user wishes to mount the fileshare as a part of the create infra flow.
 * @property configurationType The type of file share config.
 * Expected value is 'Mount'.
 * @property id The fileshare resource ID
 * @property privateEndpointId The private endpoint resource ID
 */
public data class MountFileShareConfigurationResponse(
    public val configurationType: String,
    public val id: String,
    public val privateEndpointId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.workloads.outputs.MountFileShareConfigurationResponse): MountFileShareConfigurationResponse = MountFileShareConfigurationResponse(
            configurationType = javaType.configurationType(),
            id = javaType.id(),
            privateEndpointId = javaType.privateEndpointId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy