com.pulumi.azure.management.kotlin.outputs.GroupPolicyAssignmentOverrideSelector.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.management.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property ins
* @property kind
* @property notIns
*/
public data class GroupPolicyAssignmentOverrideSelector(
public val ins: List? = null,
public val kind: String? = null,
public val notIns: List? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.management.outputs.GroupPolicyAssignmentOverrideSelector):
GroupPolicyAssignmentOverrideSelector = GroupPolicyAssignmentOverrideSelector(
ins = javaType.ins().map({ args0 -> args0 }),
kind = javaType.kind().map({ args0 -> args0 }).orElse(null),
notIns = javaType.notIns().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy