![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.O365PolicyPropertiesArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.O365PolicyPropertiesArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* The Office365 breakout policy.
* @property breakOutCategories Office365 breakout categories.
*/
public data class O365PolicyPropertiesArgs(
public val breakOutCategories: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.O365PolicyPropertiesArgs =
com.pulumi.azurenative.network.inputs.O365PolicyPropertiesArgs.builder()
.breakOutCategories(
breakOutCategories?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [O365PolicyPropertiesArgs].
*/
@PulumiTagMarker
public class O365PolicyPropertiesArgsBuilder internal constructor() {
private var breakOutCategories: Output? = null
/**
* @param value Office365 breakout categories.
*/
@JvmName("jinjintgrlcyitfo")
public suspend fun breakOutCategories(`value`: Output) {
this.breakOutCategories = value
}
/**
* @param value Office365 breakout categories.
*/
@JvmName("budfjvnqpflekovj")
public suspend fun breakOutCategories(`value`: O365BreakOutCategoryPoliciesArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.breakOutCategories = mapped
}
/**
* @param argument Office365 breakout categories.
*/
@JvmName("bvwevdmwdyvjkmsw")
public suspend fun breakOutCategories(argument: suspend O365BreakOutCategoryPoliciesArgsBuilder.() -> Unit) {
val toBeMapped = O365BreakOutCategoryPoliciesArgsBuilder().applySuspend { argument() }.build()
val mapped = of(toBeMapped)
this.breakOutCategories = mapped
}
internal fun build(): O365PolicyPropertiesArgs = O365PolicyPropertiesArgs(
breakOutCategories = breakOutCategories,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy