com.pulumi.gcp.gkeonprem.kotlin.outputs.VMwareClusterNetworkConfigHostConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.gkeonprem.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property dnsSearchDomains DNS search domains.
* The `control_plane_v2_config` block supports:
* @property dnsServers DNS servers.
* @property ntpServers NTP servers.
*/
public data class VMwareClusterNetworkConfigHostConfig(
public val dnsSearchDomains: List? = null,
public val dnsServers: List? = null,
public val ntpServers: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.gkeonprem.outputs.VMwareClusterNetworkConfigHostConfig): VMwareClusterNetworkConfigHostConfig = VMwareClusterNetworkConfigHostConfig(
dnsSearchDomains = javaType.dnsSearchDomains().map({ args0 -> args0 }),
dnsServers = javaType.dnsServers().map({ args0 -> args0 }),
ntpServers = javaType.ntpServers().map({ args0 -> args0 }),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy