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

com.pulumi.gcp.container.kotlin.outputs.GetClusterNodeConfigKubeletConfig.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.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property cpuCfsQuota Enable CPU CFS quota enforcement for containers that specify CPU limits.
 * @property cpuCfsQuotaPeriod Set the CPU CFS quota period value 'cpu.cfs_period_us'.
 * @property cpuManagerPolicy Control the CPU management policy on the node.
 * @property podPidsLimit Controls the maximum number of processes allowed to run in a pod.
 */
public data class GetClusterNodeConfigKubeletConfig(
    public val cpuCfsQuota: Boolean,
    public val cpuCfsQuotaPeriod: String,
    public val cpuManagerPolicy: String,
    public val podPidsLimit: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterNodeConfigKubeletConfig): GetClusterNodeConfigKubeletConfig = GetClusterNodeConfigKubeletConfig(
            cpuCfsQuota = javaType.cpuCfsQuota(),
            cpuCfsQuotaPeriod = javaType.cpuCfsQuotaPeriod(),
            cpuManagerPolicy = javaType.cpuManagerPolicy(),
            podPidsLimit = javaType.podPidsLimit(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy