
com.pulumi.azure.cdn.kotlin.outputs.GetFrontdoorEndpointResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.cdn.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getFrontdoorEndpoint.
* @property enabled Specifies whether this Front Door Endpoint is enabled or not.
* @property hostName Specifies the host name of the Front Door Endpoint, in the format `{endpointName}.{dnsZone}` (for example, `contoso.azureedge.net`).
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property profileName
* @property resourceGroupName
* @property tags Specifies a mapping of Tags assigned to this Front Door Endpoint.
*/
public data class GetFrontdoorEndpointResult(
public val enabled: Boolean,
public val hostName: String,
public val id: String,
public val name: String,
public val profileName: String,
public val resourceGroupName: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.cdn.outputs.GetFrontdoorEndpointResult):
GetFrontdoorEndpointResult = GetFrontdoorEndpointResult(
enabled = javaType.enabled(),
hostName = javaType.hostName(),
id = javaType.id(),
name = javaType.name(),
profileName = javaType.profileName(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy