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

com.pulumi.gcp.osconfig.kotlin.outputs.PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject.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.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @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 PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject(
    public val bucket: String,
    public val generationNumber: String,
    public val `object`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.osconfig.outputs.PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject): PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject =
            PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject(
                bucket = javaType.bucket(),
                generationNumber = javaType.generationNumber(),
                `object` = javaType.`object`(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy