com.pulumi.azurenative.network.kotlin.outputs.O365PolicyPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.network.kotlin.outputs
import kotlin.Suppress
/**
* The Office365 breakout policy.
* @property breakOutCategories Office365 breakout categories.
*/
public data class O365PolicyPropertiesResponse(
public val breakOutCategories: O365BreakOutCategoryPoliciesResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.network.outputs.O365PolicyPropertiesResponse): O365PolicyPropertiesResponse = O365PolicyPropertiesResponse(
breakOutCategories = javaType.breakOutCategories().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.network.kotlin.outputs.O365BreakOutCategoryPoliciesResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}