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

com.pulumi.googlenative.dns.v1beta2.kotlin.outputs.PolicyAlternativeNameServerConfigResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dns.v1beta2.kotlin.outputs

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

/**
 *
 * @property kind
 * @property targetNameServers Sets an alternative name server for the associated networks. When specified, all DNS queries are forwarded to a name server that you choose. Names such as .internal are not available when an alternative name server is specified.
 */
public data class PolicyAlternativeNameServerConfigResponse(
    public val kind: String,
    public val targetNameServers: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dns.v1beta2.outputs.PolicyAlternativeNameServerConfigResponse): PolicyAlternativeNameServerConfigResponse = PolicyAlternativeNameServerConfigResponse(
            kind = javaType.kind(),
            targetNameServers = javaType.targetNameServers().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.googlenative.dns.v1beta2.kotlin.outputs.PolicyAlternativeNameServerConfigTargetNameServerResponse.Companion.toKotlin(args0)
                })
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy