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