![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.storage.kotlin.inputs.ExecutionTargetArgs.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.storage.kotlin.inputs
import com.pulumi.azurenative.storage.inputs.ExecutionTargetArgs.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.collections.List
import kotlin.jvm.JvmName
/**
* Target helps provide filter parameters for the objects in the storage account and forms the execution context for the storage task
* @property excludePrefix List of object prefixes to be excluded from task execution. If there is a conflict between include and exclude prefixes, the exclude prefix will be the determining factor
* @property prefix Required list of object prefixes to be included for task execution
*/
public data class ExecutionTargetArgs(
public val excludePrefix: Output>? = null,
public val prefix: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.storage.inputs.ExecutionTargetArgs =
com.pulumi.azurenative.storage.inputs.ExecutionTargetArgs.builder()
.excludePrefix(excludePrefix?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.prefix(prefix?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ExecutionTargetArgs].
*/
@PulumiTagMarker
public class ExecutionTargetArgsBuilder internal constructor() {
private var excludePrefix: Output>? = null
private var prefix: Output>? = null
/**
* @param value List of object prefixes to be excluded from task execution. If there is a conflict between include and exclude prefixes, the exclude prefix will be the determining factor
*/
@JvmName("ybwhetydmchkuqqx")
public suspend fun excludePrefix(`value`: Output>) {
this.excludePrefix = value
}
@JvmName("hfwpmccgglcsskmt")
public suspend fun excludePrefix(vararg values: Output) {
this.excludePrefix = Output.all(values.asList())
}
/**
* @param values List of object prefixes to be excluded from task execution. If there is a conflict between include and exclude prefixes, the exclude prefix will be the determining factor
*/
@JvmName("cqcvujipysbifsip")
public suspend fun excludePrefix(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy