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

com.pulumi.gcp.vmwareengine.kotlin.outputs.GetPrivateCloudManagementCluster.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.vmwareengine.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property clusterId The user-provided identifier of the new Cluster. The identifier must meet the following requirements:
 *   * Only contains 1-63 alphanumeric characters and hyphens
 *   * Begins with an alphabetical character
 *   * Ends with a non-hyphen character
 *   * Not formatted as a UUID
 *   * Complies with RFC 1034 (https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
 * @property nodeTypeConfigs The map of cluster node types in this cluster,
 * where the key is canonical identifier of the node type (corresponds to the NodeType).
 * @property stretchedClusterConfigs The stretched cluster configuration for the private cloud.
 */
public data class GetPrivateCloudManagementCluster(
    public val clusterId: String,
    public val nodeTypeConfigs: List,
    public val stretchedClusterConfigs: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.vmwareengine.outputs.GetPrivateCloudManagementCluster): GetPrivateCloudManagementCluster = GetPrivateCloudManagementCluster(
            clusterId = javaType.clusterId(),
            nodeTypeConfigs = javaType.nodeTypeConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vmwareengine.kotlin.outputs.GetPrivateCloudManagementClusterNodeTypeConfig.Companion.toKotlin(args0)
                })
            }),
            stretchedClusterConfigs = javaType.stretchedClusterConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vmwareengine.kotlin.outputs.GetPrivateCloudManagementClusterStretchedClusterConfig.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy