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

com.pulumi.azure.containerservice.kotlin.outputs.GroupDnsConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.21.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerservice.kotlin.outputs

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

/**
 *
 * @property nameservers A list of nameservers the containers will search out to resolve requests. Changing this forces a new resource to be created.
 * @property options A list of [resolver configuration options](https://man7.org/linux/man-pages/man5/resolv.conf.5.html). Changing this forces a new resource to be created.
 * @property searchDomains A list of search domains that DNS requests will search along. Changing this forces a new resource to be created.
 */
public data class GroupDnsConfig(
    public val nameservers: List,
    public val options: List? = null,
    public val searchDomains: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GroupDnsConfig):
            GroupDnsConfig = GroupDnsConfig(
            nameservers = javaType.nameservers().map({ args0 -> args0 }),
            options = javaType.options().map({ args0 -> args0 }),
            searchDomains = javaType.searchDomains().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy