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

com.pulumi.googlenative.container.v1beta1.kotlin.outputs.DNSConfigResponse.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.container.v1beta1.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * DNSConfig contains the desired set of options for configuring clusterDNS.
 * @property clusterDns cluster_dns indicates which in-cluster DNS provider should be used.
 * @property clusterDnsDomain cluster_dns_domain is the suffix used for all cluster service records.
 * @property clusterDnsScope cluster_dns_scope indicates the scope of access to cluster DNS records.
 */
public data class DNSConfigResponse(
    public val clusterDns: String,
    public val clusterDnsDomain: String,
    public val clusterDnsScope: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.container.v1beta1.outputs.DNSConfigResponse): DNSConfigResponse = DNSConfigResponse(
            clusterDns = javaType.clusterDns(),
            clusterDnsDomain = javaType.clusterDnsDomain(),
            clusterDnsScope = javaType.clusterDnsScope(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy