All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.media.kotlin.outputs.StreamingPolicyCommonEncryptionCbcsEnabledProtocols.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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 StreamingPolicyCommonEncryptionCbcsEnabledProtocols(
    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.StreamingPolicyCommonEncryptionCbcsEnabledProtocols):
            StreamingPolicyCommonEncryptionCbcsEnabledProtocols =
            StreamingPolicyCommonEncryptionCbcsEnabledProtocols(
                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