
com.pulumi.googlenative.compute.beta.kotlin.inputs.GetHttpsHealthCheckPlainArgs.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.beta.kotlin.inputs
import com.pulumi.googlenative.compute.beta.inputs.GetHttpsHealthCheckPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property httpsHealthCheck
* @property project
*/
public data class GetHttpsHealthCheckPlainArgs(
public val httpsHealthCheck: String,
public val project: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.compute.beta.inputs.GetHttpsHealthCheckPlainArgs =
com.pulumi.googlenative.compute.beta.inputs.GetHttpsHealthCheckPlainArgs.builder()
.httpsHealthCheck(httpsHealthCheck.let({ args0 -> args0 }))
.project(project?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetHttpsHealthCheckPlainArgs].
*/
@PulumiTagMarker
public class GetHttpsHealthCheckPlainArgsBuilder internal constructor() {
private var httpsHealthCheck: String? = null
private var project: String? = null
/**
* @param value
*/
@JvmName("djcbsdadalclkcsu")
public suspend fun httpsHealthCheck(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.httpsHealthCheck = mapped
}
/**
* @param value
*/
@JvmName("iynjhiusuafcxxby")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.project = mapped
}
internal fun build(): GetHttpsHealthCheckPlainArgs = GetHttpsHealthCheckPlainArgs(
httpsHealthCheck = httpsHealthCheck ?: throw PulumiNullFieldException("httpsHealthCheck"),
project = project,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy