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

com.pulumi.gcp.appengine.kotlin.outputs.FlexibleAppVersionAutomaticScalingDiskUtilization.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.12.0.0
Show newest version
@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