All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.securitycenter.kotlin.outputs.AutomationSourceRuleSetRule.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.securitycenter.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property expectedValue A value that will be compared with the value in `property_path`.
 * @property operator The comparison operator to use, must be one of: `Contains`, `EndsWith`, `Equals`, `GreaterThan`, `GreaterThanOrEqualTo`, `LesserThan`, `LesserThanOrEqualTo`, `NotEquals`, `StartsWith`
 * @property propertyPath The JPath of the entity model property that should be checked.
 * @property propertyType The data type of the compared operands, must be one of: `Integer`, `String`, `Boolean` or `Number`.
 * > **NOTE:** The schema for Security Center alerts (when `event_source` is "Alerts") [can be found here](https://docs.microsoft.com/azure/security-center/alerts-schemas?tabs=schema-continuousexport)
 */
public data class AutomationSourceRuleSetRule(
    public val expectedValue: String,
    public val `operator`: String,
    public val propertyPath: String,
    public val propertyType: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.securitycenter.outputs.AutomationSourceRuleSetRule): AutomationSourceRuleSetRule = AutomationSourceRuleSetRule(
            expectedValue = javaType.expectedValue(),
            `operator` = javaType.`operator`(),
            propertyPath = javaType.propertyPath(),
            propertyType = javaType.propertyType(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy