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

com.pulumi.gcp.storage.kotlin.outputs.GetBucketObjectContentRetention.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.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