
com.pulumi.awsnative.sagemaker.kotlin.enums.InferenceExperimentEndpointMetadataEndpointStatus.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* The status of the endpoint. For possible values of the status of an endpoint.
*/
public enum class InferenceExperimentEndpointMetadataEndpointStatus(
public val javaValue: com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus,
) :
ConvertibleToJava {
Creating(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.Creating),
Updating(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.Updating),
SystemUpdating(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.SystemUpdating),
RollingBack(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.RollingBack),
InService(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.InService),
OutOfService(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.OutOfService),
Deleting(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.Deleting),
Failed(com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus.Failed),
;
override fun toJava(): com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus =
javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.enums.InferenceExperimentEndpointMetadataEndpointStatus): InferenceExperimentEndpointMetadataEndpointStatus =
InferenceExperimentEndpointMetadataEndpointStatus.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy