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

com.pulumi.azurenative.app.kotlin.outputs.ManagedEnvironmentStorageResponseProperties.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.app.kotlin.outputs

import kotlin.Suppress

/**
 * Storage properties
 * @property azureFile Azure file properties
 */
public data class ManagedEnvironmentStorageResponseProperties(
    public val azureFile: AzureFilePropertiesResponse? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.app.outputs.ManagedEnvironmentStorageResponseProperties): ManagedEnvironmentStorageResponseProperties = ManagedEnvironmentStorageResponseProperties(
            azureFile = javaType.azureFile().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azurenative.app.kotlin.outputs.AzureFilePropertiesResponse.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy