
com.pulumi.azurenative.media.kotlin.outputs.LiveEventPreviewAccessControlResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.media.kotlin.outputs
import kotlin.Suppress
/**
* The IP access control for the live event preview endpoint.
* @property ip The IP access control properties.
*/
public data class LiveEventPreviewAccessControlResponse(
public val ip: IPAccessControlResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.media.outputs.LiveEventPreviewAccessControlResponse): LiveEventPreviewAccessControlResponse = LiveEventPreviewAccessControlResponse(
ip = javaType.ip().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.media.kotlin.outputs.IPAccessControlResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy