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

com.pulumi.gcp.networkservices.kotlin.outputs.EdgeCacheKeysetValidationSharedKey.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.networkservices.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property secretVersion The name of the secret version in Secret Manager.
 * The resource name of the secret version must be in the format `projects/*/secrets/*/versions/*` where the `*` values are replaced by the secrets themselves.
 * The secrets must be at least 16 bytes large.  The recommended secret size depends on the signature algorithm you are using.
 * * If you are using HMAC-SHA1, we suggest 20-byte secrets.
 * * If you are using HMAC-SHA256, we suggest 32-byte secrets.
 * See RFC 2104, Section 3 for more details on these recommendations.
 * */*/*/
 */
public data class EdgeCacheKeysetValidationSharedKey(
    public val secretVersion: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.networkservices.outputs.EdgeCacheKeysetValidationSharedKey): EdgeCacheKeysetValidationSharedKey = EdgeCacheKeysetValidationSharedKey(
            secretVersion = javaType.secretVersion(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy