
com.pulumi.azurenative.insights.kotlin.outputs.ScheduledQueryRuleCriteriaResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.insights.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* The rule criteria that defines the conditions of the scheduled query rule.
* @property allOf A list of conditions to evaluate against the specified scopes
*/
public data class ScheduledQueryRuleCriteriaResponse(
public val allOf: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.insights.outputs.ScheduledQueryRuleCriteriaResponse): ScheduledQueryRuleCriteriaResponse = ScheduledQueryRuleCriteriaResponse(
allOf = javaType.allOf().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.insights.kotlin.outputs.ConditionResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy