1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. datafactory
  6. TriggerSchedule

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Trigger Schedule inside a Azure Data Factory.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var testPipeline = new Azure.DataFactory.Pipeline("testPipeline", new Azure.DataFactory.PipelineArgs
            {
                ResourceGroupName = azurerm_resource_group.Test.Name,
                DataFactoryId = azurerm_data_factory.Test.Id,
            });
            var testTriggerSchedule = new Azure.DataFactory.TriggerSchedule("testTriggerSchedule", new Azure.DataFactory.TriggerScheduleArgs
            {
                DataFactoryId = azurerm_data_factory.Test.Id,
                ResourceGroupName = azurerm_resource_group.Test.Name,
                PipelineName = testPipeline.Name,
                Interval = 5,
                Frequency = "Day",
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/datafactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		testPipeline, err := datafactory.NewPipeline(ctx, "testPipeline", &datafactory.PipelineArgs{
    			ResourceGroupName: pulumi.Any(azurerm_resource_group.Test.Name),
    			DataFactoryId:     pulumi.Any(azurerm_data_factory.Test.Id),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datafactory.NewTriggerSchedule(ctx, "testTriggerSchedule", &datafactory.TriggerScheduleArgs{
    			DataFactoryId:     pulumi.Any(azurerm_data_factory.Test.Id),
    			ResourceGroupName: pulumi.Any(azurerm_resource_group.Test.Name),
    			PipelineName:      testPipeline.Name,
    			Interval:          pulumi.Int(5),
    			Frequency:         pulumi.String("Day"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const testPipeline = new azure.datafactory.Pipeline("testPipeline", {
        resourceGroupName: azurerm_resource_group.test.name,
        dataFactoryId: azurerm_data_factory.test.id,
    });
    const testTriggerSchedule = new azure.datafactory.TriggerSchedule("testTriggerSchedule", {
        dataFactoryId: azurerm_data_factory.test.id,
        resourceGroupName: azurerm_resource_group.test.name,
        pipelineName: testPipeline.name,
        interval: 5,
        frequency: "Day",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_factory = azure.datafactory.Factory("exampleFactory",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    test_pipeline = azure.datafactory.Pipeline("testPipeline",
        resource_group_name=azurerm_resource_group["test"]["name"],
        data_factory_id=azurerm_data_factory["test"]["id"])
    test_trigger_schedule = azure.datafactory.TriggerSchedule("testTriggerSchedule",
        data_factory_id=azurerm_data_factory["test"]["id"],
        resource_group_name=azurerm_resource_group["test"]["name"],
        pipeline_name=test_pipeline.name,
        interval=5,
        frequency="Day")
    

    Example coming soon!

    Create TriggerSchedule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new TriggerSchedule(name: string, args: TriggerScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def TriggerSchedule(resource_name: str,
                        args: TriggerScheduleArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def TriggerSchedule(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        pipeline_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        data_factory_name: Optional[str] = None,
                        activated: Optional[bool] = None,
                        description: Optional[str] = None,
                        end_time: Optional[str] = None,
                        frequency: Optional[str] = None,
                        interval: Optional[int] = None,
                        name: Optional[str] = None,
                        data_factory_id: Optional[str] = None,
                        pipeline_parameters: Optional[Mapping[str, str]] = None,
                        annotations: Optional[Sequence[str]] = None,
                        schedule: Optional[TriggerScheduleScheduleArgs] = None,
                        start_time: Optional[str] = None)
    func NewTriggerSchedule(ctx *Context, name string, args TriggerScheduleArgs, opts ...ResourceOption) (*TriggerSchedule, error)
    public TriggerSchedule(string name, TriggerScheduleArgs args, CustomResourceOptions? opts = null)
    public TriggerSchedule(String name, TriggerScheduleArgs args)
    public TriggerSchedule(String name, TriggerScheduleArgs args, CustomResourceOptions options)
    
    type: azure:datafactory:TriggerSchedule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TriggerScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TriggerScheduleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TriggerScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TriggerScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TriggerScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var triggerScheduleResource = new Azure.DataFactory.TriggerSchedule("triggerScheduleResource", new()
    {
        PipelineName = "string",
        ResourceGroupName = "string",
        Activated = false,
        Description = "string",
        EndTime = "string",
        Frequency = "string",
        Interval = 0,
        Name = "string",
        DataFactoryId = "string",
        PipelineParameters = 
        {
            { "string", "string" },
        },
        Annotations = new[]
        {
            "string",
        },
        Schedule = new Azure.DataFactory.Inputs.TriggerScheduleScheduleArgs
        {
            DaysOfMonths = new[]
            {
                0,
            },
            DaysOfWeeks = new[]
            {
                "string",
            },
            Hours = new[]
            {
                0,
            },
            Minutes = new[]
            {
                0,
            },
            Monthlies = new[]
            {
                new Azure.DataFactory.Inputs.TriggerScheduleScheduleMonthlyArgs
                {
                    Weekday = "string",
                    Week = 0,
                },
            },
        },
        StartTime = "string",
    });
    
    example, err := datafactory.NewTriggerSchedule(ctx, "triggerScheduleResource", &datafactory.TriggerScheduleArgs{
    	PipelineName:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Activated:         pulumi.Bool(false),
    	Description:       pulumi.String("string"),
    	EndTime:           pulumi.String("string"),
    	Frequency:         pulumi.String("string"),
    	Interval:          pulumi.Int(0),
    	Name:              pulumi.String("string"),
    	DataFactoryId:     pulumi.String("string"),
    	PipelineParameters: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Annotations: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Schedule: &datafactory.TriggerScheduleScheduleArgs{
    		DaysOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		DaysOfWeeks: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		Hours: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		Minutes: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		Monthlies: datafactory.TriggerScheduleScheduleMonthlyArray{
    			&datafactory.TriggerScheduleScheduleMonthlyArgs{
    				Weekday: pulumi.String("string"),
    				Week:    pulumi.Int(0),
    			},
    		},
    	},
    	StartTime: pulumi.String("string"),
    })
    
    var triggerScheduleResource = new TriggerSchedule("triggerScheduleResource", TriggerScheduleArgs.builder()
        .pipelineName("string")
        .resourceGroupName("string")
        .activated(false)
        .description("string")
        .endTime("string")
        .frequency("string")
        .interval(0)
        .name("string")
        .dataFactoryId("string")
        .pipelineParameters(Map.of("string", "string"))
        .annotations("string")
        .schedule(TriggerScheduleScheduleArgs.builder()
            .daysOfMonths(0)
            .daysOfWeeks("string")
            .hours(0)
            .minutes(0)
            .monthlies(TriggerScheduleScheduleMonthlyArgs.builder()
                .weekday("string")
                .week(0)
                .build())
            .build())
        .startTime("string")
        .build());
    
    trigger_schedule_resource = azure.datafactory.TriggerSchedule("triggerScheduleResource",
        pipeline_name="string",
        resource_group_name="string",
        activated=False,
        description="string",
        end_time="string",
        frequency="string",
        interval=0,
        name="string",
        data_factory_id="string",
        pipeline_parameters={
            "string": "string",
        },
        annotations=["string"],
        schedule={
            "days_of_months": [0],
            "days_of_weeks": ["string"],
            "hours": [0],
            "minutes": [0],
            "monthlies": [{
                "weekday": "string",
                "week": 0,
            }],
        },
        start_time="string")
    
    const triggerScheduleResource = new azure.datafactory.TriggerSchedule("triggerScheduleResource", {
        pipelineName: "string",
        resourceGroupName: "string",
        activated: false,
        description: "string",
        endTime: "string",
        frequency: "string",
        interval: 0,
        name: "string",
        dataFactoryId: "string",
        pipelineParameters: {
            string: "string",
        },
        annotations: ["string"],
        schedule: {
            daysOfMonths: [0],
            daysOfWeeks: ["string"],
            hours: [0],
            minutes: [0],
            monthlies: [{
                weekday: "string",
                week: 0,
            }],
        },
        startTime: "string",
    });
    
    type: azure:datafactory:TriggerSchedule
    properties:
        activated: false
        annotations:
            - string
        dataFactoryId: string
        description: string
        endTime: string
        frequency: string
        interval: 0
        name: string
        pipelineName: string
        pipelineParameters:
            string: string
        resourceGroupName: string
        schedule:
            daysOfMonths:
                - 0
            daysOfWeeks:
                - string
            hours:
                - 0
            minutes:
                - 0
            monthlies:
                - week: 0
                  weekday: string
        startTime: string
    

    TriggerSchedule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The TriggerSchedule resource accepts the following input properties:

    PipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    ResourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    Activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    Annotations List<string>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The Schedule Trigger's description.
    EndTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    Frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    Interval int
    The interval for how often the trigger occurs. This defaults to 1.
    Name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    PipelineParameters Dictionary<string, string>
    The pipeline parameters that the trigger will act upon.
    Schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    StartTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    PipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    ResourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    Activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    Annotations []string
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The Schedule Trigger's description.
    EndTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    Frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    Interval int
    The interval for how often the trigger occurs. This defaults to 1.
    Name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    PipelineParameters map[string]string
    The pipeline parameters that the trigger will act upon.
    Schedule TriggerScheduleScheduleArgs
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    StartTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    pipelineName String
    The Data Factory Pipeline name that the trigger will act on.
    resourceGroupName String
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    activated Boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The Schedule Trigger's description.
    endTime String
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency String
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval Integer
    The interval for how often the trigger occurs. This defaults to 1.
    name String
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineParameters Map<String,String>
    The pipeline parameters that the trigger will act upon.
    schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime String
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    pipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    resourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    activated boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations string[]
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    The Schedule Trigger's description.
    endTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval number
    The interval for how often the trigger occurs. This defaults to 1.
    name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineParameters {[key: string]: string}
    The pipeline parameters that the trigger will act upon.
    schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    pipeline_name str
    The Data Factory Pipeline name that the trigger will act on.
    resource_group_name str
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations Sequence[str]
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    The Schedule Trigger's description.
    end_time str
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency str
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval int
    The interval for how often the trigger occurs. This defaults to 1.
    name str
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipeline_parameters Mapping[str, str]
    The pipeline parameters that the trigger will act upon.
    schedule TriggerScheduleScheduleArgs
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    start_time str
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    pipelineName String
    The Data Factory Pipeline name that the trigger will act on.
    resourceGroupName String
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    activated Boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The Schedule Trigger's description.
    endTime String
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency String
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval Number
    The interval for how often the trigger occurs. This defaults to 1.
    name String
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineParameters Map<String>
    The pipeline parameters that the trigger will act upon.
    schedule Property Map
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime String
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the TriggerSchedule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing TriggerSchedule Resource

    Get an existing TriggerSchedule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TriggerScheduleState, opts?: CustomResourceOptions): TriggerSchedule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            activated: Optional[bool] = None,
            annotations: Optional[Sequence[str]] = None,
            data_factory_id: Optional[str] = None,
            data_factory_name: Optional[str] = None,
            description: Optional[str] = None,
            end_time: Optional[str] = None,
            frequency: Optional[str] = None,
            interval: Optional[int] = None,
            name: Optional[str] = None,
            pipeline_name: Optional[str] = None,
            pipeline_parameters: Optional[Mapping[str, str]] = None,
            resource_group_name: Optional[str] = None,
            schedule: Optional[TriggerScheduleScheduleArgs] = None,
            start_time: Optional[str] = None) -> TriggerSchedule
    func GetTriggerSchedule(ctx *Context, name string, id IDInput, state *TriggerScheduleState, opts ...ResourceOption) (*TriggerSchedule, error)
    public static TriggerSchedule Get(string name, Input<string> id, TriggerScheduleState? state, CustomResourceOptions? opts = null)
    public static TriggerSchedule get(String name, Output<String> id, TriggerScheduleState state, CustomResourceOptions options)
    resources:  _:    type: azure:datafactory:TriggerSchedule    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    Annotations List<string>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The Schedule Trigger's description.
    EndTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    Frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    Interval int
    The interval for how often the trigger occurs. This defaults to 1.
    Name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    PipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    PipelineParameters Dictionary<string, string>
    The pipeline parameters that the trigger will act upon.
    ResourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    Schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    StartTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    Activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    Annotations []string
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    The Schedule Trigger's description.
    EndTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    Frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    Interval int
    The interval for how often the trigger occurs. This defaults to 1.
    Name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    PipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    PipelineParameters map[string]string
    The pipeline parameters that the trigger will act upon.
    ResourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    Schedule TriggerScheduleScheduleArgs
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    StartTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    activated Boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The Schedule Trigger's description.
    endTime String
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency String
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval Integer
    The interval for how often the trigger occurs. This defaults to 1.
    name String
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineName String
    The Data Factory Pipeline name that the trigger will act on.
    pipelineParameters Map<String,String>
    The pipeline parameters that the trigger will act upon.
    resourceGroupName String
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime String
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    activated boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations string[]
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    The Schedule Trigger's description.
    endTime string
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency string
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval number
    The interval for how often the trigger occurs. This defaults to 1.
    name string
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineName string
    The Data Factory Pipeline name that the trigger will act on.
    pipelineParameters {[key: string]: string}
    The pipeline parameters that the trigger will act upon.
    resourceGroupName string
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    schedule TriggerScheduleSchedule
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime string
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    activated bool
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations Sequence[str]
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    The Schedule Trigger's description.
    end_time str
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency str
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval int
    The interval for how often the trigger occurs. This defaults to 1.
    name str
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipeline_name str
    The Data Factory Pipeline name that the trigger will act on.
    pipeline_parameters Mapping[str, str]
    The pipeline parameters that the trigger will act upon.
    resource_group_name str
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    schedule TriggerScheduleScheduleArgs
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    start_time str
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.
    activated Boolean
    Specifies if the Data Factory Schedule Trigger is activated. Defaults to true.
    annotations List<String>
    List of tags that can be used for describing the Data Factory Schedule Trigger.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    The Schedule Trigger's description.
    endTime String
    The time the Schedule Trigger should end. The time will be represented in UTC.
    frequency String
    The trigger frequency. Valid values include Minute, Hour, Day, Week, Month. Defaults to Minute.
    interval Number
    The interval for how often the trigger occurs. This defaults to 1.
    name String
    Specifies the name of the Data Factory Schedule Trigger. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    pipelineName String
    The Data Factory Pipeline name that the trigger will act on.
    pipelineParameters Map<String>
    The pipeline parameters that the trigger will act upon.
    resourceGroupName String
    The name of the resource group in which to create the Data Factory Schedule Trigger. Changing this forces a new resource
    schedule Property Map
    A schedule block as defined below, which further specifies the recurrence schedule for the trigger. A schedule is capable of limiting or increasing the number of trigger executions specified by the frequency and interval properties.
    startTime String
    The time the Schedule Trigger will start. This defaults to the current time. The time will be represented in UTC.

    Supporting Types

    TriggerScheduleSchedule, TriggerScheduleScheduleArgs

    DaysOfMonths List<int>
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    DaysOfWeeks List<string>
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    Hours List<int>
    Hours of the day on which the trigger is scheduled.
    Minutes List<int>
    Minutes of the hour on which the trigger is scheduled.
    Monthlies List<TriggerScheduleScheduleMonthly>
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.
    DaysOfMonths []int
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    DaysOfWeeks []string
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    Hours []int
    Hours of the day on which the trigger is scheduled.
    Minutes []int
    Minutes of the hour on which the trigger is scheduled.
    Monthlies []TriggerScheduleScheduleMonthly
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.
    daysOfMonths List<Integer>
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    daysOfWeeks List<String>
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    hours List<Integer>
    Hours of the day on which the trigger is scheduled.
    minutes List<Integer>
    Minutes of the hour on which the trigger is scheduled.
    monthlies List<TriggerScheduleScheduleMonthly>
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.
    daysOfMonths number[]
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    daysOfWeeks string[]
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    hours number[]
    Hours of the day on which the trigger is scheduled.
    minutes number[]
    Minutes of the hour on which the trigger is scheduled.
    monthlies TriggerScheduleScheduleMonthly[]
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.
    days_of_months Sequence[int]
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    days_of_weeks Sequence[str]
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    hours Sequence[int]
    Hours of the day on which the trigger is scheduled.
    minutes Sequence[int]
    Minutes of the hour on which the trigger is scheduled.
    monthlies Sequence[TriggerScheduleScheduleMonthly]
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.
    daysOfMonths List<Number>
    Day(s) of the month on which the trigger is scheduled. This value can be specified with a monthly frequency only.
    daysOfWeeks List<String>
    Days of the week on which the trigger is scheduled. This value can be specified only with a weekly frequency.
    hours List<Number>
    Hours of the day on which the trigger is scheduled.
    minutes List<Number>
    Minutes of the hour on which the trigger is scheduled.
    monthlies List<Property Map>
    A monthly block as documented below, which specifies the days of the month on which the trigger is scheduled. The value can be specified only with a monthly frequency.

    TriggerScheduleScheduleMonthly, TriggerScheduleScheduleMonthlyArgs

    Weekday string
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    Week int
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.
    Weekday string
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    Week int
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.
    weekday String
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    week Integer
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.
    weekday string
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    week number
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.
    weekday str
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    week int
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.
    weekday String
    The day of the week on which the trigger runs. For example, a monthly property with a weekday value of Sunday means every Sunday of the month.
    week Number
    The occurrence of the specified day during the month. For example, a monthly property with weekday and week values of Sunday, -1 means the last Sunday of the month.

    Import

    Data Factory Schedule Trigger can be imported using the resource id, e.g.

     $ pulumi import azure:datafactory/triggerSchedule:TriggerSchedule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/triggers/example
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial