commonMain.aws.sdk.kotlin.services.datazone.model.SelfGrantStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datazone-jvm Show documentation
Show all versions of datazone-jvm Show documentation
The AWS SDK for Kotlin client for DataZone
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.datazone.model
import kotlin.collections.List
public sealed class SelfGrantStatus {
public abstract val value: kotlin.String
public object Granted : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "GRANTED"
override fun toString(): kotlin.String = "Granted"
}
public object GrantFailed : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "GRANT_FAILED"
override fun toString(): kotlin.String = "GrantFailed"
}
public object GrantInProgress : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "GRANT_IN_PROGRESS"
override fun toString(): kotlin.String = "GrantInProgress"
}
public object GrantPending : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "GRANT_PENDING"
override fun toString(): kotlin.String = "GrantPending"
}
public object RevokeFailed : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "REVOKE_FAILED"
override fun toString(): kotlin.String = "RevokeFailed"
}
public object RevokeInProgress : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "REVOKE_IN_PROGRESS"
override fun toString(): kotlin.String = "RevokeInProgress"
}
public object RevokePending : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override val value: kotlin.String = "REVOKE_PENDING"
override fun toString(): kotlin.String = "RevokePending"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.datazone.model.SelfGrantStatus() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.datazone.model.SelfGrantStatus = when (value) {
"GRANTED" -> Granted
"GRANT_FAILED" -> GrantFailed
"GRANT_IN_PROGRESS" -> GrantInProgress
"GRANT_PENDING" -> GrantPending
"REVOKE_FAILED" -> RevokeFailed
"REVOKE_IN_PROGRESS" -> RevokeInProgress
"REVOKE_PENDING" -> RevokePending
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Granted,
GrantFailed,
GrantInProgress,
GrantPending,
RevokeFailed,
RevokeInProgress,
RevokePending,
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy