![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.datasync.kotlin.enums.TaskOptionsVerifyMode.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datasync.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* A value that determines whether a data integrity verification should be performed at the end of a task execution after all data and metadata have been transferred.
*/
public enum class TaskOptionsVerifyMode(
public val javaValue: com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode,
) : ConvertibleToJava {
PointInTimeConsistent(com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode.PointInTimeConsistent),
OnlyFilesTransferred(com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode.OnlyFilesTransferred),
None(com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode.None),
;
override fun toJava(): com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.enums.TaskOptionsVerifyMode): TaskOptionsVerifyMode = TaskOptionsVerifyMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy