
com.pulumi.googlenative.apigee.v1.kotlin.inputs.GetHostQueryPlainArgs.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.apigee.v1.kotlin.inputs
import com.pulumi.googlenative.apigee.v1.inputs.GetHostQueryPlainArgs.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 hostQueryId
* @property organizationId
*/
public data class GetHostQueryPlainArgs(
public val hostQueryId: String,
public val organizationId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.apigee.v1.inputs.GetHostQueryPlainArgs =
com.pulumi.googlenative.apigee.v1.inputs.GetHostQueryPlainArgs.builder()
.hostQueryId(hostQueryId.let({ args0 -> args0 }))
.organizationId(organizationId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetHostQueryPlainArgs].
*/
@PulumiTagMarker
public class GetHostQueryPlainArgsBuilder internal constructor() {
private var hostQueryId: String? = null
private var organizationId: String? = null
/**
* @param value
*/
@JvmName("jtolibvbladmjgkf")
public suspend fun hostQueryId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.hostQueryId = mapped
}
/**
* @param value
*/
@JvmName("gtdgjxgqcsipeyxe")
public suspend fun organizationId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.organizationId = mapped
}
internal fun build(): GetHostQueryPlainArgs = GetHostQueryPlainArgs(
hostQueryId = hostQueryId ?: throw PulumiNullFieldException("hostQueryId"),
organizationId = organizationId ?: throw PulumiNullFieldException("organizationId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy