com.pulumi.azure.privatelink.kotlin.outputs.EndpointPrivateDnsZoneGroup.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.privatelink.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property id The ID of the Private DNS Zone Config.
* @property name Specifies the Name of the Private DNS Zone Group.
* @property privateDnsZoneIds Specifies the list of Private DNS Zones to include within the `private_dns_zone_group`.
*/
public data class EndpointPrivateDnsZoneGroup(
public val id: String? = null,
public val name: String,
public val privateDnsZoneIds: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.privatelink.outputs.EndpointPrivateDnsZoneGroup):
EndpointPrivateDnsZoneGroup = EndpointPrivateDnsZoneGroup(
id = javaType.id().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
privateDnsZoneIds = javaType.privateDnsZoneIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy