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

com.pulumi.azure.avs.kotlin.outputs.GetPrivateCloudResult.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: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.avs.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map

/**
 * A collection of values returned by getPrivateCloud.
 * @property circuits A `circuit` block as defined below.
 * @property hcxCloudManagerEndpoint The endpoint for the VMware HCX Cloud Manager.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property internetConnectionEnabled Is the Azure VMware Solution Private Cloud connected to the internet?
 * @property location The Azure Region where the Azure VMware Solution Private Cloud exists.
 * @property managementClusters A `management_cluster` block as defined below.
 * @property managementSubnetCidr The network used to access VMware vCenter Server and NSX Manager.
 * @property name
 * @property networkSubnetCidr The subnet CIDR of the Azure VMware Solution Private Cloud.
 * @property nsxtCertificateThumbprint The thumbprint of the VMware NSX Manager SSL certificate.
 * @property nsxtManagerEndpoint The endpoint for the VMware NSX Manager.
 * @property provisioningSubnetCidr The network which isused for virtual machine cold migration, cloning, and snapshot migration.
 * @property resourceGroupName
 * @property skuName The Name of the SKU used for this Azure VMware Solution Private Cloud.
 * @property tags A mapping of tags assigned to the Azure VMware Solution Private Cloud.
 * @property vcenterCertificateThumbprint The thumbprint of the VMware vCenter Server SSL certificate.
 * @property vcsaEndpoint The endpoint for VMware vCenter Server Appliance.
 * @property vmotionSubnetCidr The network which is used for live migration of virtual machines.
 */
public data class GetPrivateCloudResult(
    public val circuits: List,
    public val hcxCloudManagerEndpoint: String,
    public val id: String,
    public val internetConnectionEnabled: Boolean,
    public val location: String,
    public val managementClusters: List,
    public val managementSubnetCidr: String,
    public val name: String,
    public val networkSubnetCidr: String,
    public val nsxtCertificateThumbprint: String,
    public val nsxtManagerEndpoint: String,
    public val provisioningSubnetCidr: String,
    public val resourceGroupName: String,
    public val skuName: String,
    public val tags: Map,
    public val vcenterCertificateThumbprint: String,
    public val vcsaEndpoint: String,
    public val vmotionSubnetCidr: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.avs.outputs.GetPrivateCloudResult):
            GetPrivateCloudResult = GetPrivateCloudResult(
            circuits = javaType.circuits().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.avs.kotlin.outputs.GetPrivateCloudCircuit.Companion.toKotlin(args0)
                })
            }),
            hcxCloudManagerEndpoint = javaType.hcxCloudManagerEndpoint(),
            id = javaType.id(),
            internetConnectionEnabled = javaType.internetConnectionEnabled(),
            location = javaType.location(),
            managementClusters = javaType.managementClusters().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.avs.kotlin.outputs.GetPrivateCloudManagementCluster.Companion.toKotlin(args0)
                })
            }),
            managementSubnetCidr = javaType.managementSubnetCidr(),
            name = javaType.name(),
            networkSubnetCidr = javaType.networkSubnetCidr(),
            nsxtCertificateThumbprint = javaType.nsxtCertificateThumbprint(),
            nsxtManagerEndpoint = javaType.nsxtManagerEndpoint(),
            provisioningSubnetCidr = javaType.provisioningSubnetCidr(),
            resourceGroupName = javaType.resourceGroupName(),
            skuName = javaType.skuName(),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
            vcenterCertificateThumbprint = javaType.vcenterCertificateThumbprint(),
            vcsaEndpoint = javaType.vcsaEndpoint(),
            vmotionSubnetCidr = javaType.vmotionSubnetCidr(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy