![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.BlobTriggerArgs.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.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.BlobTriggerArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Trigger that runs every time the selected Blob container changes.
* @property annotations List of tags that can be used for describing the trigger.
* @property description Trigger description.
* @property folderPath The path of the container/folder that will trigger the pipeline.
* @property linkedService The Azure Storage linked service reference.
* @property maxConcurrency The max number of parallel files to handle when it is triggered.
* @property pipelines Pipelines that need to be started.
* @property type Trigger type.
* Expected value is 'BlobTrigger'.
*/
public data class BlobTriggerArgs(
public val annotations: Output>? = null,
public val description: Output? = null,
public val folderPath: Output,
public val linkedService: Output,
public val maxConcurrency: Output,
public val pipelines: Output>? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.BlobTriggerArgs =
com.pulumi.azurenative.datafactory.inputs.BlobTriggerArgs.builder()
.annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.description(description?.applyValue({ args0 -> args0 }))
.folderPath(folderPath.applyValue({ args0 -> args0 }))
.linkedService(linkedService.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.maxConcurrency(maxConcurrency.applyValue({ args0 -> args0 }))
.pipelines(
pipelines?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BlobTriggerArgs].
*/
@PulumiTagMarker
public class BlobTriggerArgsBuilder internal constructor() {
private var annotations: Output>? = null
private var description: Output? = null
private var folderPath: Output? = null
private var linkedService: Output? = null
private var maxConcurrency: Output? = null
private var pipelines: Output>? = null
private var type: Output? = null
/**
* @param value List of tags that can be used for describing the trigger.
*/
@JvmName("rgeadjdqivgfbrgi")
public suspend fun annotations(`value`: Output>) {
this.annotations = value
}
@JvmName("dsulwoodiwvjnpbd")
public suspend fun annotations(vararg values: Output) {
this.annotations = Output.all(values.asList())
}
/**
* @param values List of tags that can be used for describing the trigger.
*/
@JvmName("oggdayapupiyxtrw")
public suspend fun annotations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy