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

com.pulumi.gcp.managedkafka.kotlin.outputs.ClusterCapacityConfig.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.managedkafka.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property memoryBytes The memory to provision for the cluster in bytes. The value must be between 1 GiB and 8 GiB per vCPU. Ex. 1024Mi, 4Gi.
 * - - -
 * @property vcpuCount The number of vCPUs to provision for the cluster. The minimum is 3.
 */
public data class ClusterCapacityConfig(
    public val memoryBytes: String,
    public val vcpuCount: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.managedkafka.outputs.ClusterCapacityConfig): ClusterCapacityConfig = ClusterCapacityConfig(
            memoryBytes = javaType.memoryBytes(),
            vcpuCount = javaType.vcpuCount(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy