com.pulumi.gcp.osconfig.kotlin.outputs.OsPolicyAssignmentOsPolicyResourceGroupResourcePkgMsiSourceGcs.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.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket Bucket of the Cloud Storage object.
* @property generation Generation number of the Cloud Storage object.
* @property object Name of the Cloud Storage object.
*/
public data class OsPolicyAssignmentOsPolicyResourceGroupResourcePkgMsiSourceGcs(
public val bucket: String,
public val generation: Int? = null,
public val `object`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.osconfig.outputs.OsPolicyAssignmentOsPolicyResourceGroupResourcePkgMsiSourceGcs): OsPolicyAssignmentOsPolicyResourceGroupResourcePkgMsiSourceGcs =
OsPolicyAssignmentOsPolicyResourceGroupResourcePkgMsiSourceGcs(
bucket = javaType.bucket(),
generation = javaType.generation().map({ args0 -> args0 }).orElse(null),
`object` = javaType.`object`(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy