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

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

/**
 *
 * @property enableNestedVirtualization Whether the node should have nested virtualization enabled.
 * @property threadsPerCore The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
 */
public data class NodePoolNodeConfigAdvancedMachineFeatures(
    public val enableNestedVirtualization: Boolean? = null,
    public val threadsPerCore: Int,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.NodePoolNodeConfigAdvancedMachineFeatures): NodePoolNodeConfigAdvancedMachineFeatures = NodePoolNodeConfigAdvancedMachineFeatures(
            enableNestedVirtualization = javaType.enableNestedVirtualization().map({ args0 ->
                args0
            }).orElse(null),
            threadsPerCore = javaType.threadsPerCore(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy