com.pulumi.gcp.vmwareengine.kotlin.outputs.GetNsxCredentialsResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.vmwareengine.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getNsxCredentials.
* @property id The provider-assigned unique ID for this managed resource.
* @property parent
* @property password The password of the NSX Credential.
* @property username The username of the NSX Credential.
*/
public data class GetNsxCredentialsResult(
public val id: String,
public val parent: String,
public val password: String,
public val username: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vmwareengine.outputs.GetNsxCredentialsResult): GetNsxCredentialsResult = GetNsxCredentialsResult(
id = javaType.id(),
parent = javaType.parent(),
password = javaType.password(),
username = javaType.username(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy