com.pulumi.vault.database.kotlin.outputs.SecretBackendConnectionMongodbatlas.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-vault-kotlin Show documentation
Show all versions of pulumi-vault-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.vault.database.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property privateKey The Private Programmatic API Key used to connect with MongoDB Atlas API.
* @property projectId The Project ID the Database User should be created within.
* @property publicKey The Public Programmatic API Key used to authenticate with the MongoDB Atlas API.
*/
public data class SecretBackendConnectionMongodbatlas(
public val privateKey: String,
public val projectId: String,
public val publicKey: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.vault.database.outputs.SecretBackendConnectionMongodbatlas): SecretBackendConnectionMongodbatlas = SecretBackendConnectionMongodbatlas(
privateKey = javaType.privateKey(),
projectId = javaType.projectId(),
publicKey = javaType.publicKey(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy