
com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs.VICredentialResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.connectedvmwarevsphere.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Username / Password Credentials to connect to vcenter.
* @property username Gets or sets username to connect with the vCenter.
*/
public data class VICredentialResponse(
public val username: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.connectedvmwarevsphere.outputs.VICredentialResponse): VICredentialResponse = VICredentialResponse(
username = javaType.username().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy