![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.automation.kotlin.inputs.SoftwareUpdateConfigurationTargetNonAzureQueryArgs.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.automation.kotlin.inputs
import com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetNonAzureQueryArgs.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
/**
*
* @property functionAlias Specifies the Log Analytics save search name.
* @property workspaceId The workspace id for Log Analytics in which the saved search in.
*/
public data class SoftwareUpdateConfigurationTargetNonAzureQueryArgs(
public val functionAlias: Output? = null,
public val workspaceId: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetNonAzureQueryArgs =
com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetNonAzureQueryArgs.builder()
.functionAlias(functionAlias?.applyValue({ args0 -> args0 }))
.workspaceId(workspaceId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SoftwareUpdateConfigurationTargetNonAzureQueryArgs].
*/
@PulumiTagMarker
public class SoftwareUpdateConfigurationTargetNonAzureQueryArgsBuilder internal constructor() {
private var functionAlias: Output? = null
private var workspaceId: Output? = null
/**
* @param value Specifies the Log Analytics save search name.
*/
@JvmName("cvucnynmvxmgjwna")
public suspend fun functionAlias(`value`: Output) {
this.functionAlias = value
}
/**
* @param value The workspace id for Log Analytics in which the saved search in.
*/
@JvmName("tavbkggcdsuooxmb")
public suspend fun workspaceId(`value`: Output) {
this.workspaceId = value
}
/**
* @param value Specifies the Log Analytics save search name.
*/
@JvmName("lucfrerhbtskkiim")
public suspend fun functionAlias(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.functionAlias = mapped
}
/**
* @param value The workspace id for Log Analytics in which the saved search in.
*/
@JvmName("ejqoastdkthbevqu")
public suspend fun workspaceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.workspaceId = mapped
}
internal fun build(): SoftwareUpdateConfigurationTargetNonAzureQueryArgs =
SoftwareUpdateConfigurationTargetNonAzureQueryArgs(
functionAlias = functionAlias,
workspaceId = workspaceId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy