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

com.pulumi.azure.cdn.kotlin.outputs.GetFrontdoorCustomDomainResult.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.cdn.kotlin.outputs

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

/**
 * A collection of values returned by getFrontdoorCustomDomain.
 * @property cdnFrontdoorProfileId The ID of the Front Door Profile which the Front Door Custom Domain is bound to.
 * @property dnsZoneId
 * @property expirationDate The date time that the token expires.
 * @property hostName The host name of the domain.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property name
 * @property profileName
 * @property resourceGroupName
 * @property tls A `tls` block as defined below.
 * @property validationToken The challenge used for DNS TXT record or file based validation.
 */
public data class GetFrontdoorCustomDomainResult(
    public val cdnFrontdoorProfileId: String,
    public val dnsZoneId: String,
    public val expirationDate: String,
    public val hostName: String,
    public val id: String,
    public val name: String,
    public val profileName: String,
    public val resourceGroupName: String,
    public val tls: List,
    public val validationToken: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.GetFrontdoorCustomDomainResult):
            GetFrontdoorCustomDomainResult = GetFrontdoorCustomDomainResult(
            cdnFrontdoorProfileId = javaType.cdnFrontdoorProfileId(),
            dnsZoneId = javaType.dnsZoneId(),
            expirationDate = javaType.expirationDate(),
            hostName = javaType.hostName(),
            id = javaType.id(),
            name = javaType.name(),
            profileName = javaType.profileName(),
            resourceGroupName = javaType.resourceGroupName(),
            tls = javaType.tls().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.cdn.kotlin.outputs.GetFrontdoorCustomDomainTl.Companion.toKotlin(args0)
                })
            }),
            validationToken = javaType.validationToken(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy