com.pulumi.azure.media.kotlin.outputs.StreamingPolicyEnvelopeEncryptionEnabledProtocols.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.outputs
import kotlin.Boolean
import kotlin.Suppress
/**
*
* @property dash Enable DASH protocol or not. Changing this forces a new Streaming Policy to be created.
* @property download Enable Download protocol or not. Changing this forces a new Streaming Policy to be created.
* @property hls Enable HLS protocol or not. Changing this forces a new Streaming Policy to be created.
* @property smoothStreaming Enable SmoothStreaming protocol or not. Changing this forces a new Streaming Policy to be created.
*/
public data class StreamingPolicyEnvelopeEncryptionEnabledProtocols(
public val dash: Boolean? = null,
public val download: Boolean? = null,
public val hls: Boolean? = null,
public val smoothStreaming: Boolean? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.media.outputs.StreamingPolicyEnvelopeEncryptionEnabledProtocols):
StreamingPolicyEnvelopeEncryptionEnabledProtocols =
StreamingPolicyEnvelopeEncryptionEnabledProtocols(
dash = javaType.dash().map({ args0 -> args0 }).orElse(null),
download = javaType.download().map({ args0 -> args0 }).orElse(null),
hls = javaType.hls().map({ args0 -> args0 }).orElse(null),
smoothStreaming = javaType.smoothStreaming().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy