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

com.pulumi.azure.privatelink.kotlin.outputs.EndpointCustomDnsConfig.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.privatelink.kotlin.outputs

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

/**
 *
 * @property fqdn The fully qualified domain name to the `private_dns_zone`.
 * @property ipAddresses A list of all IP Addresses that map to the `private_dns_zone` fqdn.
 */
public data class EndpointCustomDnsConfig(
    public val fqdn: String? = null,
    public val ipAddresses: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.privatelink.outputs.EndpointCustomDnsConfig): EndpointCustomDnsConfig = EndpointCustomDnsConfig(
            fqdn = javaType.fqdn().map({ args0 -> args0 }).orElse(null),
            ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy