
com.pulumi.azure.automation.kotlin.inputs.SoftwareUpdateConfigurationTargetAzureQueryArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.automation.kotlin.inputs
import com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetAzureQueryArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property locations Specifies a list of locations to scope the query to.
* @property scopes Specifies a list of Subscription or Resource Group ARM Ids to query.
* @property tagFilter Specifies how the specified tags to filter VMs. Possible values are `Any` and `All`.
* @property tags A mapping of tags used for query filter. One or more `tags` block as defined below.
*/
public data class SoftwareUpdateConfigurationTargetAzureQueryArgs(
public val locations: Output>? = null,
public val scopes: Output>? = null,
public val tagFilter: Output? = null,
public val tags: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetAzureQueryArgs =
com.pulumi.azure.automation.inputs.SoftwareUpdateConfigurationTargetAzureQueryArgs.builder()
.locations(locations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.scopes(scopes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.tagFilter(tagFilter?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [SoftwareUpdateConfigurationTargetAzureQueryArgs].
*/
@PulumiTagMarker
public class SoftwareUpdateConfigurationTargetAzureQueryArgsBuilder internal constructor() {
private var locations: Output>? = null
private var scopes: Output>? = null
private var tagFilter: Output? = null
private var tags: Output>? = null
/**
* @param value Specifies a list of locations to scope the query to.
*/
@JvmName("eocjpvobxljfqijt")
public suspend fun locations(`value`: Output>) {
this.locations = value
}
@JvmName("boompnbqobxwfjsr")
public suspend fun locations(vararg values: Output) {
this.locations = Output.all(values.asList())
}
/**
* @param values Specifies a list of locations to scope the query to.
*/
@JvmName("wprqyqnuufdjqfqf")
public suspend fun locations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy