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

com.pulumi.gcp.container.kotlin.outputs.GetClusterNodePoolDefaultNodeConfigDefault.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.

There is a newer version: 8.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.container.kotlin.outputs

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

/**
 *
 * @property containerdConfigs Parameters for containerd configuration.
 * @property gcfsConfigs GCFS configuration for this node.
 * @property insecureKubeletReadonlyPortEnabled Controls whether the kubelet read-only port is enabled. It is strongly recommended to set this to `FALSE`. Possible values: `TRUE`, `FALSE`.
 * @property loggingVariant Type of logging agent that is used as the default value for node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT.
 */
public data class GetClusterNodePoolDefaultNodeConfigDefault(
    public val containerdConfigs: List,
    public val gcfsConfigs: List,
    public val insecureKubeletReadonlyPortEnabled: String,
    public val loggingVariant: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterNodePoolDefaultNodeConfigDefault): GetClusterNodePoolDefaultNodeConfigDefault = GetClusterNodePoolDefaultNodeConfigDefault(
            containerdConfigs = javaType.containerdConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterNodePoolDefaultNodeConfigDefaultContainerdConfig.Companion.toKotlin(args0)
                })
            }),
            gcfsConfigs = javaType.gcfsConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterNodePoolDefaultNodeConfigDefaultGcfsConfig.Companion.toKotlin(args0)
                })
            }),
            insecureKubeletReadonlyPortEnabled = javaType.insecureKubeletReadonlyPortEnabled(),
            loggingVariant = javaType.loggingVariant(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy