com.pulumi.gcp.storage.kotlin.outputs.GetBucketObjectContentRetention.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.storage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property mode The object retention mode. Supported values include: "Unlocked", "Locked".
* @property retainUntilTime Time in RFC 3339 (e.g. 2030-01-01T02:03:04Z) until which object retention protects this object.
*/
public data class GetBucketObjectContentRetention(
public val mode: String,
public val retainUntilTime: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.storage.outputs.GetBucketObjectContentRetention): GetBucketObjectContentRetention = GetBucketObjectContentRetention(
mode = javaType.mode(),
retainUntilTime = javaType.retainUntilTime(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy