
com.pulumi.googlenative.compute.alpha.kotlin.outputs.HealthCheckLogConfigResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.compute.alpha.kotlin.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
* Configuration of logging on a health check. If logging is enabled, logs will be exported to Stackdriver.
* @property enable Indicates whether or not to export logs. This is false by default, which means no health check logging will be done.
*/
public data class HealthCheckLogConfigResponse(
public val enable: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.compute.alpha.outputs.HealthCheckLogConfigResponse): HealthCheckLogConfigResponse = HealthCheckLogConfigResponse(
enable = javaType.enable(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy