com.pulumi.gcp.appengine.kotlin.outputs.FlexibleAppVersionAutomaticScalingDiskUtilization.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.appengine.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property targetReadBytesPerSecond Target bytes read per second.
* @property targetReadOpsPerSecond Target ops read per seconds.
* @property targetWriteBytesPerSecond Target bytes written per second.
* @property targetWriteOpsPerSecond Target ops written per second.
*/
public data class FlexibleAppVersionAutomaticScalingDiskUtilization(
public val targetReadBytesPerSecond: Int? = null,
public val targetReadOpsPerSecond: Int? = null,
public val targetWriteBytesPerSecond: Int? = null,
public val targetWriteOpsPerSecond: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.appengine.outputs.FlexibleAppVersionAutomaticScalingDiskUtilization): FlexibleAppVersionAutomaticScalingDiskUtilization =
FlexibleAppVersionAutomaticScalingDiskUtilization(
targetReadBytesPerSecond = javaType.targetReadBytesPerSecond().map({ args0 -> args0 }).orElse(null),
targetReadOpsPerSecond = javaType.targetReadOpsPerSecond().map({ args0 -> args0 }).orElse(null),
targetWriteBytesPerSecond = javaType.targetWriteBytesPerSecond().map({ args0 ->
args0
}).orElse(null),
targetWriteOpsPerSecond = javaType.targetWriteOpsPerSecond().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy