com.pulumi.gcp.container.kotlin.outputs.ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig.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.Int
import kotlin.Suppress
/**
*
* @property hugepageSize1g Amount of 1G hugepages.
* @property hugepageSize2m Amount of 2M hugepages.
*/
public data class ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig(
public val hugepageSize1g: Int? = null,
public val hugepageSize2m: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig): ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig =
ClusterNodePoolNodeConfigLinuxNodeConfigHugepagesConfig(
hugepageSize1g = javaType.hugepageSize1g().map({ args0 -> args0 }).orElse(null),
hugepageSize2m = javaType.hugepageSize2m().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy