com.pulumi.gcp.vmwareengine.kotlin.outputs.GetVcenterCredentialsResult.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 getVcenterCredentials.
* @property id The provider-assigned unique ID for this managed resource.
* @property parent
* @property password The password of the Vcenter Credential.
* @property username The username of the Vcenter Credential.
*/
public data class GetVcenterCredentialsResult(
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.GetVcenterCredentialsResult): GetVcenterCredentialsResult = GetVcenterCredentialsResult(
id = javaType.id(),
parent = javaType.parent(),
password = javaType.password(),
username = javaType.username(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy