com.pulumi.gcp.osconfig.kotlin.outputs.PatchDeploymentPatchConfigPreStepWindowsExecStepConfigGcsObject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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