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

com.pulumi.gcp.osconfig.kotlin.inputs.PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs.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.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.osconfig.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.osconfig.inputs.PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property bucket Bucket of the Cloud Storage object.
 * @property generationNumber Generation number of the Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
 * @property object Name of the Cloud Storage object.
 */
public data class PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs(
    public val bucket: Output,
    public val generationNumber: Output,
    public val `object`: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.osconfig.inputs.PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs =
        com.pulumi.gcp.osconfig.inputs.PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs.builder()
            .bucket(bucket.applyValue({ args0 -> args0 }))
            .generationNumber(generationNumber.applyValue({ args0 -> args0 }))
            .`object`(`object`.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs].
 */
@PulumiTagMarker
public class PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgsBuilder internal constructor() {
    private var bucket: Output? = null

    private var generationNumber: Output? = null

    private var `object`: Output? = null

    /**
     * @param value Bucket of the Cloud Storage object.
     */
    @JvmName("xapqyuueatcseitu")
    public suspend fun bucket(`value`: Output) {
        this.bucket = value
    }

    /**
     * @param value Generation number of the Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
     */
    @JvmName("xrlyrperanmlorpa")
    public suspend fun generationNumber(`value`: Output) {
        this.generationNumber = value
    }

    /**
     * @param value Name of the Cloud Storage object.
     */
    @JvmName("dgmfejnqoqnsdrcy")
    public suspend fun `object`(`value`: Output) {
        this.`object` = value
    }

    /**
     * @param value Bucket of the Cloud Storage object.
     */
    @JvmName("sofgrxrruaitmsmn")
    public suspend fun bucket(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.bucket = mapped
    }

    /**
     * @param value Generation number of the Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
     */
    @JvmName("xjxrgbimcbqwosrd")
    public suspend fun generationNumber(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.generationNumber = mapped
    }

    /**
     * @param value Name of the Cloud Storage object.
     */
    @JvmName("tunecgslohevjxpw")
    public suspend fun `object`(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.`object` = mapped
    }

    internal fun build(): PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs =
        PatchDeploymentPatchConfigPreStepLinuxExecStepConfigGcsObjectArgs(
            bucket = bucket ?: throw PulumiNullFieldException("bucket"),
            generationNumber = generationNumber ?: throw PulumiNullFieldException("generationNumber"),
            `object` = `object` ?: throw PulumiNullFieldException("object"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy