
com.pulumi.azure.privatedns.kotlin.outputs.GetResolverVirtualNetworkLinkResult.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.privatedns.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getResolverVirtualNetworkLink.
* @property dnsForwardingRulesetId
* @property id The provider-assigned unique ID for this managed resource.
* @property metadata The metadata attached to the Private DNS Resolver Virtual Network Link.
* @property name
* @property virtualNetworkId The ID of the Virtual Network that is linked to the Private DNS Resolver Virtual Network Link.
*/
public data class GetResolverVirtualNetworkLinkResult(
public val dnsForwardingRulesetId: String,
public val id: String,
public val metadata: Map,
public val name: String,
public val virtualNetworkId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.privatedns.outputs.GetResolverVirtualNetworkLinkResult): GetResolverVirtualNetworkLinkResult = GetResolverVirtualNetworkLinkResult(
dnsForwardingRulesetId = javaType.dnsForwardingRulesetId(),
id = javaType.id(),
metadata = javaType.metadata().map({ args0 -> args0.key.to(args0.value) }).toMap(),
name = javaType.name(),
virtualNetworkId = javaType.virtualNetworkId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy