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

com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterVcenter.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.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.gkeonprem.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property address (Output)
 * The vCenter IP address.
 * @property caCertData Contains the vCenter CA certificate public key for SSL verification.
 * @property cluster The name of the vCenter cluster for the user cluster.
 * @property datacenter The name of the vCenter datacenter for the user cluster.
 * @property datastore The name of the vCenter datastore for the user cluster.
 * @property folder The name of the vCenter folder for the user cluster.
 * @property resourcePool The name of the vCenter resource pool for the user cluster.
 * @property storagePolicyName The name of the vCenter storage policy for the user cluster.
 */
public data class VMwareClusterVcenter(
    public val address: String? = null,
    public val caCertData: String? = null,
    public val cluster: String? = null,
    public val datacenter: String? = null,
    public val datastore: String? = null,
    public val folder: String? = null,
    public val resourcePool: String? = null,
    public val storagePolicyName: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.gkeonprem.outputs.VMwareClusterVcenter): VMwareClusterVcenter = VMwareClusterVcenter(
            address = javaType.address().map({ args0 -> args0 }).orElse(null),
            caCertData = javaType.caCertData().map({ args0 -> args0 }).orElse(null),
            cluster = javaType.cluster().map({ args0 -> args0 }).orElse(null),
            datacenter = javaType.datacenter().map({ args0 -> args0 }).orElse(null),
            datastore = javaType.datastore().map({ args0 -> args0 }).orElse(null),
            folder = javaType.folder().map({ args0 -> args0 }).orElse(null),
            resourcePool = javaType.resourcePool().map({ args0 -> args0 }).orElse(null),
            storagePolicyName = javaType.storagePolicyName().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy