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

com.pulumi.gcp.secretmanager.kotlin.outputs.GetSecretReplication.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.secretmanager.kotlin.outputs

import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property autos The Secret will automatically be replicated without any restrictions.
 * @property userManageds The Secret will be replicated to the regions specified by the user.
 */
public data class GetSecretReplication(
    public val autos: List,
    public val userManageds: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.secretmanager.outputs.GetSecretReplication): GetSecretReplication = GetSecretReplication(
            autos = javaType.autos().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.secretmanager.kotlin.outputs.GetSecretReplicationAuto.Companion.toKotlin(args0)
                })
            }),
            userManageds = javaType.userManageds().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.secretmanager.kotlin.outputs.GetSecretReplicationUserManaged.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy