![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.management.kotlin.outputs.GroupPolicyAssignmentOverride.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 selectors One or more `override_selector` block as defined below.
* @property value Specifies the value to override the policy property. Possible values for `policyEffect` override listed [policy effects](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/effects).
*/
public data class GroupPolicyAssignmentOverride(
public val selectors: List? = null,
public val `value`: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.management.outputs.GroupPolicyAssignmentOverride): GroupPolicyAssignmentOverride = GroupPolicyAssignmentOverride(
selectors = javaType.selectors().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.management.kotlin.outputs.GroupPolicyAssignmentOverrideSelector.Companion.toKotlin(args0)
})
}),
`value` = javaType.`value`(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy