FeatureSettingsArgs

data class FeatureSettingsArgs(val splitHealthChecks: Output<Boolean>? = null, val useContainerOptimizedOs: Output<Boolean>? = null) : ConvertibleToJava<FeatureSettingsArgs>

The feature specific settings to be used in the application. These define behaviors that are user configurable.

Constructors

Link copied to clipboard
fun FeatureSettingsArgs(splitHealthChecks: Output<Boolean>? = null, useContainerOptimizedOs: Output<Boolean>? = null)

Functions

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

Properties

Link copied to clipboard
val splitHealthChecks: Output<Boolean>? = null

Boolean value indicating if split health checks should be used instead of the legacy health checks. At an app.yaml level, this means defaulting to 'readiness_check' and 'liveness_check' values instead of 'health_check' ones. Once the legacy 'health_check' behavior is deprecated, and this value is always true, this setting can be removed.

Link copied to clipboard
val useContainerOptimizedOs: Output<Boolean>? = null

If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.