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

com.pulumi.gcp.container.kotlin.outputs.GetClusterNodeConfigGuestAccelerator.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property count The number of the accelerator cards exposed to an instance.
 * @property gpuDriverInstallationConfigs Configuration for auto installation of GPU driver.
 * @property gpuPartitionSize Size of partitions to create on the GPU. Valid values are described in the NVIDIA mig user guide (https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning)
 * @property gpuSharingConfigs Configuration for GPU sharing.
 * @property type The accelerator type resource name.
 */
public data class GetClusterNodeConfigGuestAccelerator(
    public val count: Int,
    public val gpuDriverInstallationConfigs: List,
    public val gpuPartitionSize: String,
    public val gpuSharingConfigs: List,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.container.outputs.GetClusterNodeConfigGuestAccelerator): GetClusterNodeConfigGuestAccelerator = GetClusterNodeConfigGuestAccelerator(
            count = javaType.count(),
            gpuDriverInstallationConfigs = javaType.gpuDriverInstallationConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterNodeConfigGuestAcceleratorGpuDriverInstallationConfig.Companion.toKotlin(args0)
                })
            }),
            gpuPartitionSize = javaType.gpuPartitionSize(),
            gpuSharingConfigs = javaType.gpuSharingConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.container.kotlin.outputs.GetClusterNodeConfigGuestAcceleratorGpuSharingConfig.Companion.toKotlin(args0)
                })
            }),
            type = javaType.type(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy