com.pulumi.awsnative.datasync.kotlin.enums.TaskOptionsUid.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-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.awsnative.datasync.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The user ID (UID) of the file's owner.
*/
public enum class TaskOptionsUid(
public val javaValue: com.pulumi.awsnative.datasync.enums.TaskOptionsUid,
) : ConvertibleToJava {
None(com.pulumi.awsnative.datasync.enums.TaskOptionsUid.None),
IntValue(com.pulumi.awsnative.datasync.enums.TaskOptionsUid.IntValue),
Name(com.pulumi.awsnative.datasync.enums.TaskOptionsUid.Name),
Both(com.pulumi.awsnative.datasync.enums.TaskOptionsUid.Both),
;
override fun toJava(): com.pulumi.awsnative.datasync.enums.TaskOptionsUid = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.enums.TaskOptionsUid): TaskOptionsUid = TaskOptionsUid.values().first { it.javaValue == javaType }
}
}