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

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

package com.pulumi.azure.containerapp.kotlin.outputs

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

/**
 * A collection of values returned by getEnvironment.
 * @property customDomainVerificationId The ID of the Custom Domain Verification for this Container App Environment.
 * @property defaultDomain The default publicly resolvable name of this Container App Environment. This is generated at creation time to be globally unique.
 * @property dockerBridgeCidr The network addressing in which the Container Apps in this Container App Environment will reside in CIDR notation.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property infrastructureSubnetId The ID of the Subnet in use by the Container Apps Control Plane.
 * @property internalLoadBalancerEnabled Does the Container App Environment operate in Internal Load Balancing Mode?
 * @property location The Azure Location where this Container App Environment exists.
 * @property logAnalyticsWorkspaceName The name of the Log Analytics Workspace this Container Apps Managed Environment is linked to.
 * @property name
 * @property platformReservedCidr The IP range, in CIDR notation, that is reserved for environment infrastructure IP addresses.
 * @property platformReservedDnsIpAddress The IP address from the IP range defined by `platform_reserved_cidr` that is reserved for the internal DNS server.
 * @property resourceGroupName
 * @property staticIpAddress The Static IP address of the Environment.
 * @property tags A mapping of tags assigned to the resource.
 */
public data class GetEnvironmentResult(
    public val customDomainVerificationId: String,
    public val defaultDomain: String,
    public val dockerBridgeCidr: String,
    public val id: String,
    public val infrastructureSubnetId: String,
    public val internalLoadBalancerEnabled: Boolean,
    public val location: String,
    public val logAnalyticsWorkspaceName: String,
    public val name: String,
    public val platformReservedCidr: String,
    public val platformReservedDnsIpAddress: String,
    public val resourceGroupName: String,
    public val staticIpAddress: String,
    public val tags: Map,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerapp.outputs.GetEnvironmentResult):
            GetEnvironmentResult = GetEnvironmentResult(
            customDomainVerificationId = javaType.customDomainVerificationId(),
            defaultDomain = javaType.defaultDomain(),
            dockerBridgeCidr = javaType.dockerBridgeCidr(),
            id = javaType.id(),
            infrastructureSubnetId = javaType.infrastructureSubnetId(),
            internalLoadBalancerEnabled = javaType.internalLoadBalancerEnabled(),
            location = javaType.location(),
            logAnalyticsWorkspaceName = javaType.logAnalyticsWorkspaceName(),
            name = javaType.name(),
            platformReservedCidr = javaType.platformReservedCidr(),
            platformReservedDnsIpAddress = javaType.platformReservedDnsIpAddress(),
            resourceGroupName = javaType.resourceGroupName(),
            staticIpAddress = javaType.staticIpAddress(),
            tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy