com.pulumi.azure.media.kotlin.inputs.StreamingPolicyCommonEncryptionCencClearTrackConditionArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.media.kotlin.inputs
import com.pulumi.azure.media.inputs.StreamingPolicyCommonEncryptionCencClearTrackConditionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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 operation The track property condition operation. Possible value is `Equal`. Changing this forces a new Streaming Policy to be created.
* @property property The track property type. Possible value is `FourCC`. Changing this forces a new Streaming Policy to be created.
* @property value The track property value. Changing this forces a new Streaming Policy to be created.
*/
public data class StreamingPolicyCommonEncryptionCencClearTrackConditionArgs(
public val operation: Output,
public val `property`: Output,
public val `value`: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.media.inputs.StreamingPolicyCommonEncryptionCencClearTrackConditionArgs =
com.pulumi.azure.media.inputs.StreamingPolicyCommonEncryptionCencClearTrackConditionArgs.builder()
.operation(operation.applyValue({ args0 -> args0 }))
.`property`(`property`.applyValue({ args0 -> args0 }))
.`value`(`value`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StreamingPolicyCommonEncryptionCencClearTrackConditionArgs].
*/
@PulumiTagMarker
public class StreamingPolicyCommonEncryptionCencClearTrackConditionArgsBuilder internal
constructor() {
private var operation: Output? = null
private var `property`: Output? = null
private var `value`: Output? = null
/**
* @param value The track property condition operation. Possible value is `Equal`. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("wacbhcejbtnrynyl")
public suspend fun operation(`value`: Output) {
this.operation = value
}
/**
* @param value The track property type. Possible value is `FourCC`. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("ofxqipkfswostjrt")
public suspend fun `property`(`value`: Output) {
this.`property` = value
}
/**
* @param value The track property value. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("wfifnijqifwbfwry")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The track property condition operation. Possible value is `Equal`. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("enukgujqkboashis")
public suspend fun operation(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.operation = mapped
}
/**
* @param value The track property type. Possible value is `FourCC`. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("vawbqsvqeykmlowk")
public suspend fun `property`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`property` = mapped
}
/**
* @param value The track property value. Changing this forces a new Streaming Policy to be created.
*/
@JvmName("jvirelnsihxkljou")
public suspend fun `value`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): StreamingPolicyCommonEncryptionCencClearTrackConditionArgs =
StreamingPolicyCommonEncryptionCencClearTrackConditionArgs(
operation = operation ?: throw PulumiNullFieldException("operation"),
`property` = `property` ?: throw PulumiNullFieldException("property"),
`value` = `value` ?: throw PulumiNullFieldException("value"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy