![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.qbusiness.kotlin.inputs.GetPluginPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.qbusiness.kotlin.inputs
import com.pulumi.awsnative.qbusiness.inputs.GetPluginPlainArgs.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 applicationId The identifier of the application that will contain the plugin.
* @property pluginId The identifier of the plugin.
*/
public data class GetPluginPlainArgs(
public val applicationId: String,
public val pluginId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.qbusiness.inputs.GetPluginPlainArgs =
com.pulumi.awsnative.qbusiness.inputs.GetPluginPlainArgs.builder()
.applicationId(applicationId.let({ args0 -> args0 }))
.pluginId(pluginId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetPluginPlainArgs].
*/
@PulumiTagMarker
public class GetPluginPlainArgsBuilder internal constructor() {
private var applicationId: String? = null
private var pluginId: String? = null
/**
* @param value The identifier of the application that will contain the plugin.
*/
@JvmName("dernqpompjpfhybr")
public suspend fun applicationId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.applicationId = mapped
}
/**
* @param value The identifier of the plugin.
*/
@JvmName("hfufabvlxejsjctg")
public suspend fun pluginId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.pluginId = mapped
}
internal fun build(): GetPluginPlainArgs = GetPluginPlainArgs(
applicationId = applicationId ?: throw PulumiNullFieldException("applicationId"),
pluginId = pluginId ?: throw PulumiNullFieldException("pluginId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy