All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.datafactory.kotlin.TriggerTumblingWindowArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin

import com.pulumi.azure.datafactory.TriggerTumblingWindowArgs.builder
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowPipelineArgs
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowPipelineArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowRetryArgs
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowRetryArgsBuilder
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowTriggerDependencyArgs
import com.pulumi.azure.datafactory.kotlin.inputs.TriggerTumblingWindowTriggerDependencyArgsBuilder
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.Boolean
import kotlin.Int
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages a Tumbling Window Trigger inside an Azure Data Factory.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "example-resources",
 *     location: "West Europe",
 * });
 * const exampleFactory = new azure.datafactory.Factory("example", {
 *     name: "example",
 *     location: example.location,
 *     resourceGroupName: example.name,
 * });
 * const examplePipeline = new azure.datafactory.Pipeline("example", {
 *     name: "example",
 *     dataFactoryId: exampleFactory.id,
 * });
 * const exampleTriggerTumblingWindow = new azure.datafactory.TriggerTumblingWindow("example", {
 *     name: "example",
 *     dataFactoryId: exampleFactory.id,
 *     startTime: "2022-09-21T00:00:00Z",
 *     endTime: "2022-09-21T08:00:00Z",
 *     frequency: "Minute",
 *     interval: 15,
 *     delay: "16:00:00",
 *     annotations: [
 *         "example1",
 *         "example2",
 *         "example3",
 *     ],
 *     description: "example description",
 *     retry: {
 *         count: 1,
 *         interval: 30,
 *     },
 *     pipeline: {
 *         name: examplePipeline.name,
 *         parameters: {
 *             Env: "Prod",
 *         },
 *     },
 *     triggerDependencies: [{
 *         size: "24:00:00",
 *         offset: "-24:00:00",
 *     }],
 *     additionalProperties: {
 *         foo: "value1",
 *         bar: "value2",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="example-resources",
 *     location="West Europe")
 * example_factory = azure.datafactory.Factory("example",
 *     name="example",
 *     location=example.location,
 *     resource_group_name=example.name)
 * example_pipeline = azure.datafactory.Pipeline("example",
 *     name="example",
 *     data_factory_id=example_factory.id)
 * example_trigger_tumbling_window = azure.datafactory.TriggerTumblingWindow("example",
 *     name="example",
 *     data_factory_id=example_factory.id,
 *     start_time="2022-09-21T00:00:00Z",
 *     end_time="2022-09-21T08:00:00Z",
 *     frequency="Minute",
 *     interval=15,
 *     delay="16:00:00",
 *     annotations=[
 *         "example1",
 *         "example2",
 *         "example3",
 *     ],
 *     description="example description",
 *     retry=azure.datafactory.TriggerTumblingWindowRetryArgs(
 *         count=1,
 *         interval=30,
 *     ),
 *     pipeline=azure.datafactory.TriggerTumblingWindowPipelineArgs(
 *         name=example_pipeline.name,
 *         parameters={
 *             "Env": "Prod",
 *         },
 *     ),
 *     trigger_dependencies=[azure.datafactory.TriggerTumblingWindowTriggerDependencyArgs(
 *         size="24:00:00",
 *         offset="-24:00:00",
 *     )],
 *     additional_properties={
 *         "foo": "value1",
 *         "bar": "value2",
 *     })
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "example-resources",
 *         Location = "West Europe",
 *     });
 *     var exampleFactory = new Azure.DataFactory.Factory("example", new()
 *     {
 *         Name = "example",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *     });
 *     var examplePipeline = new Azure.DataFactory.Pipeline("example", new()
 *     {
 *         Name = "example",
 *         DataFactoryId = exampleFactory.Id,
 *     });
 *     var exampleTriggerTumblingWindow = new Azure.DataFactory.TriggerTumblingWindow("example", new()
 *     {
 *         Name = "example",
 *         DataFactoryId = exampleFactory.Id,
 *         StartTime = "2022-09-21T00:00:00Z",
 *         EndTime = "2022-09-21T08:00:00Z",
 *         Frequency = "Minute",
 *         Interval = 15,
 *         Delay = "16:00:00",
 *         Annotations = new[]
 *         {
 *             "example1",
 *             "example2",
 *             "example3",
 *         },
 *         Description = "example description",
 *         Retry = new Azure.DataFactory.Inputs.TriggerTumblingWindowRetryArgs
 *         {
 *             Count = 1,
 *             Interval = 30,
 *         },
 *         Pipeline = new Azure.DataFactory.Inputs.TriggerTumblingWindowPipelineArgs
 *         {
 *             Name = examplePipeline.Name,
 *             Parameters =
 *             {
 *                 { "Env", "Prod" },
 *             },
 *         },
 *         TriggerDependencies = new[]
 *         {
 *             new Azure.DataFactory.Inputs.TriggerTumblingWindowTriggerDependencyArgs
 *             {
 *                 Size = "24:00:00",
 *                 Offset = "-24:00:00",
 *             },
 *         },
 *         AdditionalProperties =
 *         {
 *             { "foo", "value1" },
 *             { "bar", "value2" },
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/datafactory"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("example-resources"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleFactory, err := datafactory.NewFactory(ctx, "example", &datafactory.FactoryArgs{
 * 			Name:              pulumi.String("example"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		examplePipeline, err := datafactory.NewPipeline(ctx, "example", &datafactory.PipelineArgs{
 * 			Name:          pulumi.String("example"),
 * 			DataFactoryId: exampleFactory.ID(),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = datafactory.NewTriggerTumblingWindow(ctx, "example", &datafactory.TriggerTumblingWindowArgs{
 * 			Name:          pulumi.String("example"),
 * 			DataFactoryId: exampleFactory.ID(),
 * 			StartTime:     pulumi.String("2022-09-21T00:00:00Z"),
 * 			EndTime:       pulumi.String("2022-09-21T08:00:00Z"),
 * 			Frequency:     pulumi.String("Minute"),
 * 			Interval:      pulumi.Int(15),
 * 			Delay:         pulumi.String("16:00:00"),
 * 			Annotations: pulumi.StringArray{
 * 				pulumi.String("example1"),
 * 				pulumi.String("example2"),
 * 				pulumi.String("example3"),
 * 			},
 * 			Description: pulumi.String("example description"),
 * 			Retry: &datafactory.TriggerTumblingWindowRetryArgs{
 * 				Count:    pulumi.Int(1),
 * 				Interval: pulumi.Int(30),
 * 			},
 * 			Pipeline: &datafactory.TriggerTumblingWindowPipelineArgs{
 * 				Name: examplePipeline.Name,
 * 				Parameters: pulumi.StringMap{
 * 					"Env": pulumi.String("Prod"),
 * 				},
 * 			},
 * 			TriggerDependencies: datafactory.TriggerTumblingWindowTriggerDependencyArray{
 * 				&datafactory.TriggerTumblingWindowTriggerDependencyArgs{
 * 					Size:   pulumi.String("24:00:00"),
 * 					Offset: pulumi.String("-24:00:00"),
 * 				},
 * 			},
 * 			AdditionalProperties: pulumi.StringMap{
 * 				"foo": pulumi.String("value1"),
 * 				"bar": pulumi.String("value2"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.datafactory.Factory;
 * import com.pulumi.azure.datafactory.FactoryArgs;
 * import com.pulumi.azure.datafactory.Pipeline;
 * import com.pulumi.azure.datafactory.PipelineArgs;
 * import com.pulumi.azure.datafactory.TriggerTumblingWindow;
 * import com.pulumi.azure.datafactory.TriggerTumblingWindowArgs;
 * import com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowRetryArgs;
 * import com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowPipelineArgs;
 * import com.pulumi.azure.datafactory.inputs.TriggerTumblingWindowTriggerDependencyArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 *     public static void stack(Context ctx) {
 *         var example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 *         var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()
 *             .name("example")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .build());
 *         var examplePipeline = new Pipeline("examplePipeline", PipelineArgs.builder()
 *             .name("example")
 *             .dataFactoryId(exampleFactory.id())
 *             .build());
 *         var exampleTriggerTumblingWindow = new TriggerTumblingWindow("exampleTriggerTumblingWindow", TriggerTumblingWindowArgs.builder()
 *             .name("example")
 *             .dataFactoryId(exampleFactory.id())
 *             .startTime("2022-09-21T00:00:00Z")
 *             .endTime("2022-09-21T08:00:00Z")
 *             .frequency("Minute")
 *             .interval(15)
 *             .delay("16:00:00")
 *             .annotations(
 *                 "example1",
 *                 "example2",
 *                 "example3")
 *             .description("example description")
 *             .retry(TriggerTumblingWindowRetryArgs.builder()
 *                 .count(1)
 *                 .interval(30)
 *                 .build())
 *             .pipeline(TriggerTumblingWindowPipelineArgs.builder()
 *                 .name(examplePipeline.name())
 *                 .parameters(Map.of("Env", "Prod"))
 *                 .build())
 *             .triggerDependencies(TriggerTumblingWindowTriggerDependencyArgs.builder()
 *                 .size("24:00:00")
 *                 .offset("-24:00:00")
 *                 .build())
 *             .additionalProperties(Map.ofEntries(
 *                 Map.entry("foo", "value1"),
 *                 Map.entry("bar", "value2")
 *             ))
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-resources
 *       location: West Europe
 *   exampleFactory:
 *     type: azure:datafactory:Factory
 *     name: example
 *     properties:
 *       name: example
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *   examplePipeline:
 *     type: azure:datafactory:Pipeline
 *     name: example
 *     properties:
 *       name: example
 *       dataFactoryId: ${exampleFactory.id}
 *   exampleTriggerTumblingWindow:
 *     type: azure:datafactory:TriggerTumblingWindow
 *     name: example
 *     properties:
 *       name: example
 *       dataFactoryId: ${exampleFactory.id}
 *       startTime: 2022-09-21T00:00:00Z
 *       endTime: 2022-09-21T08:00:00Z
 *       frequency: Minute
 *       interval: 15
 *       delay: 16:00:00
 *       annotations:
 *         - example1
 *         - example2
 *         - example3
 *       description: example description
 *       retry:
 *         count: 1
 *         interval: 30
 *       pipeline:
 *         name: ${examplePipeline.name}
 *         parameters:
 *           Env: Prod
 *       triggerDependencies:
 *         - size: 24:00:00
 *           offset: -24:00:00
 *       additionalProperties:
 *         foo: value1
 *         bar: value2
 * ```
 * 
 * ## Import
 * Data Factory Tumbling Window Trigger can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:datafactory/triggerTumblingWindow:TriggerTumblingWindow example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/triggers/example
 * ```
 * @property activated Specifies if the Data Factory Tumbling Window Trigger is activated. Defaults to `true`.
 * @property additionalProperties A map of additional properties to associate with the Data Factory Tumbling Window Trigger.
 * @property annotations List of tags that can be used for describing the Data Factory Tumbling Window Trigger.
 * @property dataFactoryId The ID of Data Factory in which to associate the Trigger with. Changing this forces a new resource.
 * @property delay Specifies how long the trigger waits before triggering new run. formatted as an `D.HH:MM:SS`.
 * @property description The description for the Data Factory Tumbling Window Trigger.
 * @property endTime Specifies the end time of Tumbling Window, formatted as an RFC3339 string.
 * @property frequency Specifies the frequency of Tumbling Window. Possible values are `Hour`, `Minute` and `Month`. Changing this forces a new resource.
 * @property interval Specifies the interval of Tumbling Window. Changing this forces a new resource.
 * @property maxConcurrency The max number for simultaneous trigger run fired by Tumbling Window. Possible values are between `1` and `50`. Defaults to `50`.
 * @property name Specifies the name of the Data Factory Tumbling Window Trigger. Changing this forces a new resource to be created.
 * @property pipeline A `pipeline` block as defined below.
 * @property retry A `retry` block as defined below.
 * @property startTime Specifies the start time of Tumbling Window, formatted as an RFC3339 string. Changing this forces a new resource.
 * @property triggerDependencies One or more `trigger_dependency` block as defined below.
 */
public data class TriggerTumblingWindowArgs(
    public val activated: Output? = null,
    public val additionalProperties: Output>? = null,
    public val annotations: Output>? = null,
    public val dataFactoryId: Output? = null,
    public val delay: Output? = null,
    public val description: Output? = null,
    public val endTime: Output? = null,
    public val frequency: Output? = null,
    public val interval: Output? = null,
    public val maxConcurrency: Output? = null,
    public val name: Output? = null,
    public val pipeline: Output? = null,
    public val retry: Output? = null,
    public val startTime: Output? = null,
    public val triggerDependencies: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.datafactory.TriggerTumblingWindowArgs =
        com.pulumi.azure.datafactory.TriggerTumblingWindowArgs.builder()
            .activated(activated?.applyValue({ args0 -> args0 }))
            .additionalProperties(
                additionalProperties?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .dataFactoryId(dataFactoryId?.applyValue({ args0 -> args0 }))
            .delay(delay?.applyValue({ args0 -> args0 }))
            .description(description?.applyValue({ args0 -> args0 }))
            .endTime(endTime?.applyValue({ args0 -> args0 }))
            .frequency(frequency?.applyValue({ args0 -> args0 }))
            .interval(interval?.applyValue({ args0 -> args0 }))
            .maxConcurrency(maxConcurrency?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .pipeline(pipeline?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .retry(retry?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .startTime(startTime?.applyValue({ args0 -> args0 }))
            .triggerDependencies(
                triggerDependencies?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 -> args0.toJava() })
                    })
                }),
            ).build()
}

/**
 * Builder for [TriggerTumblingWindowArgs].
 */
@PulumiTagMarker
public class TriggerTumblingWindowArgsBuilder internal constructor() {
    private var activated: Output? = null

    private var additionalProperties: Output>? = null

    private var annotations: Output>? = null

    private var dataFactoryId: Output? = null

    private var delay: Output? = null

    private var description: Output? = null

    private var endTime: Output? = null

    private var frequency: Output? = null

    private var interval: Output? = null

    private var maxConcurrency: Output? = null

    private var name: Output? = null

    private var pipeline: Output? = null

    private var retry: Output? = null

    private var startTime: Output? = null

    private var triggerDependencies: Output>? = null

    /**
     * @param value Specifies if the Data Factory Tumbling Window Trigger is activated. Defaults to `true`.
     */
    @JvmName("chfhhqxvqylxjyww")
    public suspend fun activated(`value`: Output) {
        this.activated = value
    }

    /**
     * @param value A map of additional properties to associate with the Data Factory Tumbling Window Trigger.
     */
    @JvmName("pbppntapulqtfehc")
    public suspend fun additionalProperties(`value`: Output>) {
        this.additionalProperties = value
    }

    /**
     * @param value List of tags that can be used for describing the Data Factory Tumbling Window Trigger.
     */
    @JvmName("wcqqpigsnordkcni")
    public suspend fun annotations(`value`: Output>) {
        this.annotations = value
    }

    @JvmName("qnxqqjynhnkdxwhs")
    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 Data Factory Tumbling Window Trigger.
     */
    @JvmName("yoopwadoebtsjusn")
    public suspend fun annotations(values: List>) {
        this.annotations = Output.all(values)
    }

    /**
     * @param value The ID of Data Factory in which to associate the Trigger with. Changing this forces a new resource.
     */
    @JvmName("ltevgatnwgloiskb")
    public suspend fun dataFactoryId(`value`: Output) {
        this.dataFactoryId = value
    }

    /**
     * @param value Specifies how long the trigger waits before triggering new run. formatted as an `D.HH:MM:SS`.
     */
    @JvmName("xtwibortdoawnknt")
    public suspend fun delay(`value`: Output) {
        this.delay = value
    }

    /**
     * @param value The description for the Data Factory Tumbling Window Trigger.
     */
    @JvmName("xxipwmiomjjiairy")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value Specifies the end time of Tumbling Window, formatted as an RFC3339 string.
     */
    @JvmName("olgvacarrkwkeqwb")
    public suspend fun endTime(`value`: Output) {
        this.endTime = value
    }

    /**
     * @param value Specifies the frequency of Tumbling Window. Possible values are `Hour`, `Minute` and `Month`. Changing this forces a new resource.
     */
    @JvmName("pyyvmjysccsrbkow")
    public suspend fun frequency(`value`: Output) {
        this.frequency = value
    }

    /**
     * @param value Specifies the interval of Tumbling Window. Changing this forces a new resource.
     */
    @JvmName("yosoirpjivrspbxv")
    public suspend fun interval(`value`: Output) {
        this.interval = value
    }

    /**
     * @param value The max number for simultaneous trigger run fired by Tumbling Window. Possible values are between `1` and `50`. Defaults to `50`.
     */
    @JvmName("taosdfemvfogfwtp")
    public suspend fun maxConcurrency(`value`: Output) {
        this.maxConcurrency = value
    }

    /**
     * @param value Specifies the name of the Data Factory Tumbling Window Trigger. Changing this forces a new resource to be created.
     */
    @JvmName("cqyvseimmvpwlayy")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value A `pipeline` block as defined below.
     */
    @JvmName("afsahjubmvfnbvgm")
    public suspend fun pipeline(`value`: Output) {
        this.pipeline = value
    }

    /**
     * @param value A `retry` block as defined below.
     */
    @JvmName("rjgelerjjabcyklo")
    public suspend fun retry(`value`: Output) {
        this.retry = value
    }

    /**
     * @param value Specifies the start time of Tumbling Window, formatted as an RFC3339 string. Changing this forces a new resource.
     */
    @JvmName("cobsuoulonichera")
    public suspend fun startTime(`value`: Output) {
        this.startTime = value
    }

    /**
     * @param value One or more `trigger_dependency` block as defined below.
     */
    @JvmName("vumxyctxdharyylu")
    public suspend
    fun triggerDependencies(`value`: Output>) {
        this.triggerDependencies = value
    }

    @JvmName("ttwiqqpjeebwqfxk")
    public suspend fun triggerDependencies(
        vararg
        values: Output,
    ) {
        this.triggerDependencies = Output.all(values.asList())
    }

    /**
     * @param values One or more `trigger_dependency` block as defined below.
     */
    @JvmName("tassivlbvlrnubse")
    public suspend
    fun triggerDependencies(values: List>) {
        this.triggerDependencies = Output.all(values)
    }

    /**
     * @param value Specifies if the Data Factory Tumbling Window Trigger is activated. Defaults to `true`.
     */
    @JvmName("kithxhvlorylunlg")
    public suspend fun activated(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.activated = mapped
    }

    /**
     * @param value A map of additional properties to associate with the Data Factory Tumbling Window Trigger.
     */
    @JvmName("vvhnocqwhlmibais")
    public suspend fun additionalProperties(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.additionalProperties = mapped
    }

    /**
     * @param values A map of additional properties to associate with the Data Factory Tumbling Window Trigger.
     */
    @JvmName("bfhfgrxuamsydyvd")
    public fun additionalProperties(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.additionalProperties = mapped
    }

    /**
     * @param value List of tags that can be used for describing the Data Factory Tumbling Window Trigger.
     */
    @JvmName("quehvxymntgkxkro")
    public suspend fun annotations(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.annotations = mapped
    }

    /**
     * @param values List of tags that can be used for describing the Data Factory Tumbling Window Trigger.
     */
    @JvmName("vgrptuxqxhldjpce")
    public suspend fun annotations(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.annotations = mapped
    }

    /**
     * @param value The ID of Data Factory in which to associate the Trigger with. Changing this forces a new resource.
     */
    @JvmName("iivmobljqheppcts")
    public suspend fun dataFactoryId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dataFactoryId = mapped
    }

    /**
     * @param value Specifies how long the trigger waits before triggering new run. formatted as an `D.HH:MM:SS`.
     */
    @JvmName("skrjahvuuvnhvhjr")
    public suspend fun delay(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.delay = mapped
    }

    /**
     * @param value The description for the Data Factory Tumbling Window Trigger.
     */
    @JvmName("kvpkwcnucffltttf")
    public suspend fun description(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.description = mapped
    }

    /**
     * @param value Specifies the end time of Tumbling Window, formatted as an RFC3339 string.
     */
    @JvmName("qyvbsnqwdvsautxr")
    public suspend fun endTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.endTime = mapped
    }

    /**
     * @param value Specifies the frequency of Tumbling Window. Possible values are `Hour`, `Minute` and `Month`. Changing this forces a new resource.
     */
    @JvmName("mqhhjsivawnhgcdn")
    public suspend fun frequency(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.frequency = mapped
    }

    /**
     * @param value Specifies the interval of Tumbling Window. Changing this forces a new resource.
     */
    @JvmName("bwhtgqeqddbnfyun")
    public suspend fun interval(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.interval = mapped
    }

    /**
     * @param value The max number for simultaneous trigger run fired by Tumbling Window. Possible values are between `1` and `50`. Defaults to `50`.
     */
    @JvmName("nsymcuipwsneynyh")
    public suspend fun maxConcurrency(`value`: Int?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.maxConcurrency = mapped
    }

    /**
     * @param value Specifies the name of the Data Factory Tumbling Window Trigger. Changing this forces a new resource to be created.
     */
    @JvmName("rwhctltnqsuwurnj")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value A `pipeline` block as defined below.
     */
    @JvmName("tkeaxdkbnmmipvjy")
    public suspend fun pipeline(`value`: TriggerTumblingWindowPipelineArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.pipeline = mapped
    }

    /**
     * @param argument A `pipeline` block as defined below.
     */
    @JvmName("dgshewilxxvheiry")
    public suspend
    fun pipeline(argument: suspend TriggerTumblingWindowPipelineArgsBuilder.() -> Unit) {
        val toBeMapped = TriggerTumblingWindowPipelineArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.pipeline = mapped
    }

    /**
     * @param value A `retry` block as defined below.
     */
    @JvmName("wuerwbryysauhdxw")
    public suspend fun retry(`value`: TriggerTumblingWindowRetryArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.retry = mapped
    }

    /**
     * @param argument A `retry` block as defined below.
     */
    @JvmName("kprhkwojikduqdas")
    public suspend fun retry(argument: suspend TriggerTumblingWindowRetryArgsBuilder.() -> Unit) {
        val toBeMapped = TriggerTumblingWindowRetryArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.retry = mapped
    }

    /**
     * @param value Specifies the start time of Tumbling Window, formatted as an RFC3339 string. Changing this forces a new resource.
     */
    @JvmName("wjqospctcgrtjhov")
    public suspend fun startTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.startTime = mapped
    }

    /**
     * @param value One or more `trigger_dependency` block as defined below.
     */
    @JvmName("hnjfuspokjinpjcf")
    public suspend
    fun triggerDependencies(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.triggerDependencies = mapped
    }

    /**
     * @param argument One or more `trigger_dependency` block as defined below.
     */
    @JvmName("huxihrxxuewyexud")
    public suspend
    fun triggerDependencies(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            TriggerTumblingWindowTriggerDependencyArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.triggerDependencies = mapped
    }

    /**
     * @param argument One or more `trigger_dependency` block as defined below.
     */
    @JvmName("uumcywjxxqlpaynf")
    public suspend fun triggerDependencies(
        vararg
        argument: suspend TriggerTumblingWindowTriggerDependencyArgsBuilder.() -> Unit,
    ) {
        val toBeMapped = argument.toList().map {
            TriggerTumblingWindowTriggerDependencyArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.triggerDependencies = mapped
    }

    /**
     * @param argument One or more `trigger_dependency` block as defined below.
     */
    @JvmName("iqpqkxbculrhimge")
    public suspend
    fun triggerDependencies(argument: suspend TriggerTumblingWindowTriggerDependencyArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            TriggerTumblingWindowTriggerDependencyArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.triggerDependencies = mapped
    }

    /**
     * @param values One or more `trigger_dependency` block as defined below.
     */
    @JvmName("pairyvlbocumqnwh")
    public suspend fun triggerDependencies(
        vararg
        values: TriggerTumblingWindowTriggerDependencyArgs,
    ) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.triggerDependencies = mapped
    }

    internal fun build(): TriggerTumblingWindowArgs = TriggerTumblingWindowArgs(
        activated = activated,
        additionalProperties = additionalProperties,
        annotations = annotations,
        dataFactoryId = dataFactoryId,
        delay = delay,
        description = description,
        endTime = endTime,
        frequency = frequency,
        interval = interval,
        maxConcurrency = maxConcurrency,
        name = name,
        pipeline = pipeline,
        retry = retry,
        startTime = startTime,
        triggerDependencies = triggerDependencies,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy