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

com.pulumi.kubernetes.meta.v1.kotlin.inputs.StatusCausePatchArgs.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.meta.v1.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kubernetes.meta.v1.inputs.StatusCausePatchArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.
 * @property field The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
 * Examples:
 *   "name" - the field "name" on the current resource
 *   "items[0].name" - the field "name" on the first array entry in "items"
 * @property message A human-readable description of the cause of the error.  This field may be presented as-is to a reader.
 * @property reason A machine-readable description of the cause of the error. If this value is empty there is no information available.
 */
public data class StatusCausePatchArgs(
    public val `field`: Output? = null,
    public val message: Output? = null,
    public val reason: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.kubernetes.meta.v1.inputs.StatusCausePatchArgs =
        com.pulumi.kubernetes.meta.v1.inputs.StatusCausePatchArgs.builder()
            .`field`(`field`?.applyValue({ args0 -> args0 }))
            .message(message?.applyValue({ args0 -> args0 }))
            .reason(reason?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [StatusCausePatchArgs].
 */
@PulumiTagMarker
public class StatusCausePatchArgsBuilder internal constructor() {
    private var `field`: Output? = null

    private var message: Output? = null

    private var reason: Output? = null

    /**
     * @param value The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
     * Examples:
     *   "name" - the field "name" on the current resource
     *   "items[0].name" - the field "name" on the first array entry in "items"
     */
    @JvmName("euyvxwjcicfnpuqt")
    public suspend fun `field`(`value`: Output) {
        this.`field` = value
    }

    /**
     * @param value A human-readable description of the cause of the error.  This field may be presented as-is to a reader.
     */
    @JvmName("nrdjekkwtitshvod")
    public suspend fun message(`value`: Output) {
        this.message = value
    }

    /**
     * @param value A machine-readable description of the cause of the error. If this value is empty there is no information available.
     */
    @JvmName("hquvfsuytsacyjiu")
    public suspend fun reason(`value`: Output) {
        this.reason = value
    }

    /**
     * @param value The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
     * Examples:
     *   "name" - the field "name" on the current resource
     *   "items[0].name" - the field "name" on the first array entry in "items"
     */
    @JvmName("dcgavmamxlrocyyc")
    public suspend fun `field`(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.`field` = mapped
    }

    /**
     * @param value A human-readable description of the cause of the error.  This field may be presented as-is to a reader.
     */
    @JvmName("idxbuidwmduwuwpr")
    public suspend fun message(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.message = mapped
    }

    /**
     * @param value A machine-readable description of the cause of the error. If this value is empty there is no information available.
     */
    @JvmName("trbpecuuoplmwylp")
    public suspend fun reason(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.reason = mapped
    }

    internal fun build(): StatusCausePatchArgs = StatusCausePatchArgs(
        `field` = `field`,
        message = message,
        reason = reason,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy