com.pulumi.googlenative.osconfig.v1beta.kotlin.outputs.GcsObjectResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.osconfig.v1beta.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Google Cloud Storage object representation.
* @property bucket Bucket of the Google Cloud Storage object.
* @property generationNumber Generation number of the Google Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
* @property object Name of the Google Cloud Storage object.
*/
public data class GcsObjectResponse(
public val bucket: String,
public val generationNumber: String,
public val `object`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.osconfig.v1beta.outputs.GcsObjectResponse): GcsObjectResponse = GcsObjectResponse(
bucket = javaType.bucket(),
generationNumber = javaType.generationNumber(),
`object` = javaType.`object`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy