com.pulumi.azurenative.media.kotlin.inputs.GetLiveOutputPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.media.kotlin.inputs
import com.pulumi.azurenative.media.inputs.GetLiveOutputPlainArgs.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 accountName The Media Services account name.
* @property liveEventName The name of the live event, maximum length is 32.
* @property liveOutputName The name of the live output.
* @property resourceGroupName The name of the resource group within the Azure subscription.
*/
public data class GetLiveOutputPlainArgs(
public val accountName: String,
public val liveEventName: String,
public val liveOutputName: String,
public val resourceGroupName: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.media.inputs.GetLiveOutputPlainArgs =
com.pulumi.azurenative.media.inputs.GetLiveOutputPlainArgs.builder()
.accountName(accountName.let({ args0 -> args0 }))
.liveEventName(liveEventName.let({ args0 -> args0 }))
.liveOutputName(liveOutputName.let({ args0 -> args0 }))
.resourceGroupName(resourceGroupName.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetLiveOutputPlainArgs].
*/
@PulumiTagMarker
public class GetLiveOutputPlainArgsBuilder internal constructor() {
private var accountName: String? = null
private var liveEventName: String? = null
private var liveOutputName: String? = null
private var resourceGroupName: String? = null
/**
* @param value The Media Services account name.
*/
@JvmName("pxqljoridgexlynb")
public suspend fun accountName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.accountName = mapped
}
/**
* @param value The name of the live event, maximum length is 32.
*/
@JvmName("bpyuribejbquoenw")
public suspend fun liveEventName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.liveEventName = mapped
}
/**
* @param value The name of the live output.
*/
@JvmName("secgibjiljyqwyvv")
public suspend fun liveOutputName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.liveOutputName = mapped
}
/**
* @param value The name of the resource group within the Azure subscription.
*/
@JvmName("ryypsnwklqasqrcx")
public suspend fun resourceGroupName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.resourceGroupName = mapped
}
internal fun build(): GetLiveOutputPlainArgs = GetLiveOutputPlainArgs(
accountName = accountName ?: throw PulumiNullFieldException("accountName"),
liveEventName = liveEventName ?: throw PulumiNullFieldException("liveEventName"),
liveOutputName = liveOutputName ?: throw PulumiNullFieldException("liveOutputName"),
resourceGroupName = resourceGroupName ?: throw PulumiNullFieldException("resourceGroupName"),
)
}