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

com.pulumi.azurenative.storagecache.kotlin.outputs.BlobNfsTargetResponse.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.storagecache.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 * Properties pertaining to the BlobNfsTarget.
 * @property target Resource ID of the storage container.
 * @property usageModel Identifies the StorageCache usage model to be used for this storage target.
 * @property verificationTimer Amount of time (in seconds) the cache waits before it checks the back-end storage for file updates.
 * @property writeBackTimer Amount of time (in seconds) the cache waits after the last file change before it copies the changed file to back-end storage.
 */
public data class BlobNfsTargetResponse(
    public val target: String? = null,
    public val usageModel: String? = null,
    public val verificationTimer: Int? = null,
    public val writeBackTimer: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.storagecache.outputs.BlobNfsTargetResponse): BlobNfsTargetResponse = BlobNfsTargetResponse(
            target = javaType.target().map({ args0 -> args0 }).orElse(null),
            usageModel = javaType.usageModel().map({ args0 -> args0 }).orElse(null),
            verificationTimer = javaType.verificationTimer().map({ args0 -> args0 }).orElse(null),
            writeBackTimer = javaType.writeBackTimer().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy