All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.kubernetes.batch.v1.kotlin.outputs.UncountedTerminatedPods.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.kubernetes.batch.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't been accounted in Job status counters.
 * @property failed failed holds UIDs of failed Pods.
 * @property succeeded succeeded holds UIDs of succeeded Pods.
 */
public data class UncountedTerminatedPods(
    public val failed: List? = null,
    public val succeeded: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.kubernetes.batch.v1.outputs.UncountedTerminatedPods): UncountedTerminatedPods = UncountedTerminatedPods(
            failed = javaType.failed().map({ args0 -> args0 }),
            succeeded = javaType.succeeded().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy