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

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