![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.media.kotlin.inputs.LiveEventCrossSiteAccessPolicyArgs.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.LiveEventCrossSiteAccessPolicyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property clientAccessPolicy The content of clientaccesspolicy.xml used by Silverlight.
* @property crossDomainPolicy The content of the Cross Domain Policy (`crossdomain.xml`).
*/
public data class LiveEventCrossSiteAccessPolicyArgs(
public val clientAccessPolicy: Output? = null,
public val crossDomainPolicy: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.media.inputs.LiveEventCrossSiteAccessPolicyArgs =
com.pulumi.azure.media.inputs.LiveEventCrossSiteAccessPolicyArgs.builder()
.clientAccessPolicy(clientAccessPolicy?.applyValue({ args0 -> args0 }))
.crossDomainPolicy(crossDomainPolicy?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LiveEventCrossSiteAccessPolicyArgs].
*/
@PulumiTagMarker
public class LiveEventCrossSiteAccessPolicyArgsBuilder internal constructor() {
private var clientAccessPolicy: Output? = null
private var crossDomainPolicy: Output? = null
/**
* @param value The content of clientaccesspolicy.xml used by Silverlight.
*/
@JvmName("iwfgitdgbtfwtmmm")
public suspend fun clientAccessPolicy(`value`: Output) {
this.clientAccessPolicy = value
}
/**
* @param value The content of the Cross Domain Policy (`crossdomain.xml`).
*/
@JvmName("krnyyyqmxyhtvypw")
public suspend fun crossDomainPolicy(`value`: Output) {
this.crossDomainPolicy = value
}
/**
* @param value The content of clientaccesspolicy.xml used by Silverlight.
*/
@JvmName("qbktebesuilwgvxa")
public suspend fun clientAccessPolicy(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.clientAccessPolicy = mapped
}
/**
* @param value The content of the Cross Domain Policy (`crossdomain.xml`).
*/
@JvmName("vgkodrqwqptrtwpa")
public suspend fun crossDomainPolicy(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.crossDomainPolicy = mapped
}
internal fun build(): LiveEventCrossSiteAccessPolicyArgs = LiveEventCrossSiteAccessPolicyArgs(
clientAccessPolicy = clientAccessPolicy,
crossDomainPolicy = crossDomainPolicy,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy