![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.privatedns.kotlin.outputs.GetZoneVirtualNetworkLinkResult.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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
/**
* A collection of values returned by getZoneVirtualNetworkLink.
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property privateDnsZoneName
* @property registrationEnabled Whether the auto-registration of virtual machine records in the virtual network in the Private DNS zone is enabled or not.
* @property resourceGroupName
* @property tags A mapping of tags to assign to the resource.
* @property virtualNetworkId The ID of the Virtual Network that is linked to the DNS Zone.
*/
public data class GetZoneVirtualNetworkLinkResult(
public val id: String,
public val name: String,
public val privateDnsZoneName: String,
public val registrationEnabled: Boolean,
public val resourceGroupName: String,
public val tags: Map,
public val virtualNetworkId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.privatedns.outputs.GetZoneVirtualNetworkLinkResult): GetZoneVirtualNetworkLinkResult = GetZoneVirtualNetworkLinkResult(
id = javaType.id(),
name = javaType.name(),
privateDnsZoneName = javaType.privateDnsZoneName(),
registrationEnabled = javaType.registrationEnabled(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
virtualNetworkId = javaType.virtualNetworkId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy