commonMain.aws.sdk.kotlin.services.eventbridge.model.ConnectionOAuthHttpMethod.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.model
import kotlin.collections.List
public sealed class ConnectionOAuthHttpMethod {
public abstract val value: kotlin.String
public object Get : aws.sdk.kotlin.services.eventbridge.model.ConnectionOAuthHttpMethod() {
override val value: kotlin.String = "GET"
override fun toString(): kotlin.String = "Get"
}
public object Post : aws.sdk.kotlin.services.eventbridge.model.ConnectionOAuthHttpMethod() {
override val value: kotlin.String = "POST"
override fun toString(): kotlin.String = "Post"
}
public object Put : aws.sdk.kotlin.services.eventbridge.model.ConnectionOAuthHttpMethod() {
override val value: kotlin.String = "PUT"
override fun toString(): kotlin.String = "Put"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.eventbridge.model.ConnectionOAuthHttpMethod() {
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.eventbridge.model.ConnectionOAuthHttpMethod = when (value) {
"GET" -> Get
"POST" -> Post
"PUT" -> Put
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Get,
Post,
Put,
)
}
}