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

com.pulumi.azurenative.media.kotlin.outputs.EnabledProtocolsResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.media.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 * Class to specify which protocols are enabled
 * @property dash Enable DASH protocol or not
 * @property download Enable Download protocol or not
 * @property hls Enable HLS protocol or not
 * @property smoothStreaming Enable SmoothStreaming protocol or not
 */
public data class EnabledProtocolsResponse(
    public val dash: Boolean,
    public val download: Boolean,
    public val hls: Boolean,
    public val smoothStreaming: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.media.outputs.EnabledProtocolsResponse): EnabledProtocolsResponse = EnabledProtocolsResponse(
            dash = javaType.dash(),
            download = javaType.download(),
            hls = javaType.hls(),
            smoothStreaming = javaType.smoothStreaming(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy