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

com.pulumi.googlenative.appengine.v1.kotlin.outputs.FeatureSettingsResponse.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.appengine.v1.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 * The feature specific settings to be used in the application. These define behaviors that are user configurable.
 * @property splitHealthChecks 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.
 * @property useContainerOptimizedOs If true, use Container-Optimized OS (https://cloud.google.com/container-optimized-os/) base image for VMs, rather than a base Debian image.
 */
public data class FeatureSettingsResponse(
    public val splitHealthChecks: Boolean,
    public val useContainerOptimizedOs: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.appengine.v1.outputs.FeatureSettingsResponse): FeatureSettingsResponse = FeatureSettingsResponse(
            splitHealthChecks = javaType.splitHealthChecks(),
            useContainerOptimizedOs = javaType.useContainerOptimizedOs(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy