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

com.pulumi.alicloud.kms.kotlin.outputs.GetSecretVersionsVersion.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: 3.62.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.alicloud.kms.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property secretData The secret value. Secrets Manager decrypts the stored secret value in ciphertext and returns it. (Returned when `enable_details` is true).
 * @property secretDataType The type of the secret value. (Returned when `enable_details` is true).
 * @property secretName The name of the secret.
 * @property versionId The version number of the secret value.
 * @property versionStages Stage labels that mark the secret version.
 */
public data class GetSecretVersionsVersion(
    public val secretData: String,
    public val secretDataType: String,
    public val secretName: String,
    public val versionId: String,
    public val versionStages: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.alicloud.kms.outputs.GetSecretVersionsVersion): GetSecretVersionsVersion = GetSecretVersionsVersion(
            secretData = javaType.secretData(),
            secretDataType = javaType.secretDataType(),
            secretName = javaType.secretName(),
            versionId = javaType.versionId(),
            versionStages = javaType.versionStages().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy