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

com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs.VmwareSourceDetailsResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.vmmigration.v1alpha1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * VmwareSourceDetails message describes a specific source details for the vmware source type.
 * @property password Input only. The credentials password. This is write only and can not be read in a GET operation.
 * @property resolvedVcenterHost The hostname of the vcenter.
 * @property thumbprint The thumbprint representing the certificate for the vcenter.
 * @property username The credentials username.
 * @property vcenterIp The ip address of the vcenter this Source represents.
 */
public data class VmwareSourceDetailsResponse(
    public val password: String,
    public val resolvedVcenterHost: String,
    public val thumbprint: String,
    public val username: String,
    public val vcenterIp: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.vmmigration.v1alpha1.outputs.VmwareSourceDetailsResponse): VmwareSourceDetailsResponse = VmwareSourceDetailsResponse(
            password = javaType.password(),
            resolvedVcenterHost = javaType.resolvedVcenterHost(),
            thumbprint = javaType.thumbprint(),
            username = javaType.username(),
            vcenterIp = javaType.vcenterIp(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy