![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.managedkafka.kotlin.outputs.ClusterCapacityConfig.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.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