![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.iot.kotlin.inputs.SecuritySolutionAdditionalWorkspaceArgs.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.iot.kotlin.inputs
import com.pulumi.azure.iot.inputs.SecuritySolutionAdditionalWorkspaceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property dataTypes A list of data types which sent to workspace. Possible values are `Alerts` and `RawEvents`.
* @property workspaceId The resource ID of the Log Analytics Workspace.
*/
public data class SecuritySolutionAdditionalWorkspaceArgs(
public val dataTypes: Output>,
public val workspaceId: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.iot.inputs.SecuritySolutionAdditionalWorkspaceArgs =
com.pulumi.azure.iot.inputs.SecuritySolutionAdditionalWorkspaceArgs.builder()
.dataTypes(dataTypes.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.workspaceId(workspaceId.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SecuritySolutionAdditionalWorkspaceArgs].
*/
@PulumiTagMarker
public class SecuritySolutionAdditionalWorkspaceArgsBuilder internal constructor() {
private var dataTypes: Output>? = null
private var workspaceId: Output? = null
/**
* @param value A list of data types which sent to workspace. Possible values are `Alerts` and `RawEvents`.
*/
@JvmName("abiiwunwxevoaylu")
public suspend fun dataTypes(`value`: Output>) {
this.dataTypes = value
}
@JvmName("rypvbyqsofhwkpga")
public suspend fun dataTypes(vararg values: Output) {
this.dataTypes = Output.all(values.asList())
}
/**
* @param values A list of data types which sent to workspace. Possible values are `Alerts` and `RawEvents`.
*/
@JvmName("drsbschwpggpvyur")
public suspend fun dataTypes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy