![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.securityinsights.kotlin.inputs.ActivityEntityQueriesPropertiesQueryDefinitionsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.securityinsights.kotlin.inputs
import com.pulumi.azurenative.securityinsights.inputs.ActivityEntityQueriesPropertiesQueryDefinitionsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The Activity query definitions
* @property query The Activity query to run on a given entity
*/
public data class ActivityEntityQueriesPropertiesQueryDefinitionsArgs(
public val query: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.securityinsights.inputs.ActivityEntityQueriesPropertiesQueryDefinitionsArgs =
com.pulumi.azurenative.securityinsights.inputs.ActivityEntityQueriesPropertiesQueryDefinitionsArgs.builder()
.query(query?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ActivityEntityQueriesPropertiesQueryDefinitionsArgs].
*/
@PulumiTagMarker
public class ActivityEntityQueriesPropertiesQueryDefinitionsArgsBuilder internal constructor() {
private var query: Output? = null
/**
* @param value The Activity query to run on a given entity
*/
@JvmName("afhgapmtqtysnmhj")
public suspend fun query(`value`: Output) {
this.query = value
}
/**
* @param value The Activity query to run on a given entity
*/
@JvmName("pototmthxnekoims")
public suspend fun query(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.query = mapped
}
internal fun build(): ActivityEntityQueriesPropertiesQueryDefinitionsArgs =
ActivityEntityQueriesPropertiesQueryDefinitionsArgs(
query = query,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy