SiteLimitsArgs

data class SiteLimitsArgs(val maxDiskSizeInMb: Output<Double>? = null, val maxMemoryInMb: Output<Double>? = null, val maxPercentageCpu: Output<Double>? = null) : ConvertibleToJava<SiteLimitsArgs>

Metric limits set on an app.

Constructors

Link copied to clipboard
fun SiteLimitsArgs(maxDiskSizeInMb: Output<Double>? = null, maxMemoryInMb: Output<Double>? = null, maxPercentageCpu: Output<Double>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SiteLimitsArgs

Properties

Link copied to clipboard
val maxDiskSizeInMb: Output<Double>? = null

Maximum allowed disk size usage in MB.

Link copied to clipboard
val maxMemoryInMb: Output<Double>? = null

Maximum allowed memory usage in MB.

Link copied to clipboard
val maxPercentageCpu: Output<Double>? = null

Maximum allowed CPU usage percentage.