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