com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolDefaultsNodeConfigDefaults.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.String
import kotlin.Suppress
/**
*
* @property gcfsConfig The default Google Container Filesystem (GCFS) configuration at the cluster level. e.g. enable [image streaming](https://cloud.google.com/kubernetes-engine/docs/how-to/image-streaming) across all the node pools within the cluster. Structure is documented below.
* @property loggingVariant The type of logging agent that is deployed by default for newly created node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT. See [Increasing logging agent throughput](https://cloud.google.com/stackdriver/docs/solutions/gke/managing-logs#throughput) for more information.
*/
public data class ClusterNodePoolDefaultsNodeConfigDefaults(
public val gcfsConfig: ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfig? = null,
public val loggingVariant: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterNodePoolDefaultsNodeConfigDefaults): ClusterNodePoolDefaultsNodeConfigDefaults = ClusterNodePoolDefaultsNodeConfigDefaults(
gcfsConfig = javaType.gcfsConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolDefaultsNodeConfigDefaultsGcfsConfig.Companion.toKotlin(args0)
})
}).orElse(null),
loggingVariant = javaType.loggingVariant().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy