![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.storagecache.kotlin.outputs.BlobNfsTargetResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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