com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig.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.container.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property certificateAuthorityDomainConfigs List of configuration objects for CA and domains. Each object identifies a certificate and its assigned domains. See [how to configure for private container registries](https://cloud.google.com/kubernetes-engine/docs/how-to/access-private-registries-private-certificates) for more detail. Example:
* @property enabled Enables private registry config. If set to false, all other fields in this object must not be set.
*/
public data class ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig(
public val certificateAuthorityDomainConfigs: List? =
null,
public val enabled: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig): ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig =
ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfig(
certificateAuthorityDomainConfigs = javaType.certificateAuthorityDomainConfigs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolNodeConfigContainerdConfigPrivateRegistryAccessConfigCertificateAuthorityDomainConfig.Companion.toKotlin(args0)
})
}),
enabled = javaType.enabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy