1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. WedataDataBackfillPlan
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack
tencentcloud logo
Viewing docs for tencentcloud 1.82.79
published on Friday, Mar 27, 2026 by tencentcloudstack

    Provides a resource to create a WeData data backfill plan

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.WedataDataBackfillPlan("example", {
        projectId: "2430455587205529600",
        taskIds: ["20250625105147756"],
        dataBackfillRangeLists: [{
            startDate: "2026-01-14",
            endDate: "2026-01-14",
            executionStartTime: "00:01",
            executionEndTime: "23:59",
        }],
        timeZone: "UTC+8",
        dataBackfillPlanName: "tf-example",
        checkParentType: "NONE",
        skipEventListening: true,
        redefineSelfWorkflowDependency: "no",
        redefineParallelNum: 2,
        dataTimeOrder: "NORMAL",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.WedataDataBackfillPlan("example",
        project_id="2430455587205529600",
        task_ids=["20250625105147756"],
        data_backfill_range_lists=[{
            "start_date": "2026-01-14",
            "end_date": "2026-01-14",
            "execution_start_time": "00:01",
            "execution_end_time": "23:59",
        }],
        time_zone="UTC+8",
        data_backfill_plan_name="tf-example",
        check_parent_type="NONE",
        skip_event_listening=True,
        redefine_self_workflow_dependency="no",
        redefine_parallel_num=2,
        data_time_order="NORMAL")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewWedataDataBackfillPlan(ctx, "example", &tencentcloud.WedataDataBackfillPlanArgs{
    			ProjectId: pulumi.String("2430455587205529600"),
    			TaskIds: pulumi.StringArray{
    				pulumi.String("20250625105147756"),
    			},
    			DataBackfillRangeLists: tencentcloud.WedataDataBackfillPlanDataBackfillRangeListArray{
    				&tencentcloud.WedataDataBackfillPlanDataBackfillRangeListArgs{
    					StartDate:          pulumi.String("2026-01-14"),
    					EndDate:            pulumi.String("2026-01-14"),
    					ExecutionStartTime: pulumi.String("00:01"),
    					ExecutionEndTime:   pulumi.String("23:59"),
    				},
    			},
    			TimeZone:                       pulumi.String("UTC+8"),
    			DataBackfillPlanName:           pulumi.String("tf-example"),
    			CheckParentType:                pulumi.String("NONE"),
    			SkipEventListening:             pulumi.Bool(true),
    			RedefineSelfWorkflowDependency: pulumi.String("no"),
    			RedefineParallelNum:            pulumi.Float64(2),
    			DataTimeOrder:                  pulumi.String("NORMAL"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.WedataDataBackfillPlan("example", new()
        {
            ProjectId = "2430455587205529600",
            TaskIds = new[]
            {
                "20250625105147756",
            },
            DataBackfillRangeLists = new[]
            {
                new Tencentcloud.Inputs.WedataDataBackfillPlanDataBackfillRangeListArgs
                {
                    StartDate = "2026-01-14",
                    EndDate = "2026-01-14",
                    ExecutionStartTime = "00:01",
                    ExecutionEndTime = "23:59",
                },
            },
            TimeZone = "UTC+8",
            DataBackfillPlanName = "tf-example",
            CheckParentType = "NONE",
            SkipEventListening = true,
            RedefineSelfWorkflowDependency = "no",
            RedefineParallelNum = 2,
            DataTimeOrder = "NORMAL",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.WedataDataBackfillPlan;
    import com.pulumi.tencentcloud.WedataDataBackfillPlanArgs;
    import com.pulumi.tencentcloud.inputs.WedataDataBackfillPlanDataBackfillRangeListArgs;
    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 WedataDataBackfillPlan("example", WedataDataBackfillPlanArgs.builder()
                .projectId("2430455587205529600")
                .taskIds("20250625105147756")
                .dataBackfillRangeLists(WedataDataBackfillPlanDataBackfillRangeListArgs.builder()
                    .startDate("2026-01-14")
                    .endDate("2026-01-14")
                    .executionStartTime("00:01")
                    .executionEndTime("23:59")
                    .build())
                .timeZone("UTC+8")
                .dataBackfillPlanName("tf-example")
                .checkParentType("NONE")
                .skipEventListening(true)
                .redefineSelfWorkflowDependency("no")
                .redefineParallelNum(2.0)
                .dataTimeOrder("NORMAL")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:WedataDataBackfillPlan
        properties:
          projectId: '2430455587205529600'
          taskIds:
            - '20250625105147756'
          dataBackfillRangeLists:
            - startDate: 2026-01-14
              endDate: 2026-01-14
              executionStartTime: 00:01
              executionEndTime: 23:59
          timeZone: UTC+8
          dataBackfillPlanName: tf-example
          checkParentType: NONE
          skipEventListening: true
          redefineSelfWorkflowDependency: no
          redefineParallelNum: 2
          dataTimeOrder: NORMAL
    

    Create WedataDataBackfillPlan Resource

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

    Constructor syntax

    new WedataDataBackfillPlan(name: string, args: WedataDataBackfillPlanArgs, opts?: CustomResourceOptions);
    @overload
    def WedataDataBackfillPlan(resource_name: str,
                               args: WedataDataBackfillPlanArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def WedataDataBackfillPlan(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               project_id: Optional[str] = None,
                               task_ids: Optional[Sequence[str]] = None,
                               data_backfill_range_lists: Optional[Sequence[WedataDataBackfillPlanDataBackfillRangeListArgs]] = None,
                               redefine_cycle_type: Optional[str] = None,
                               integration_resource_group_id: Optional[str] = None,
                               data_time_order: Optional[str] = None,
                               check_parent_type: Optional[str] = None,
                               redefine_parallel_num: Optional[float] = None,
                               redefine_param_lists: Optional[Sequence[WedataDataBackfillPlanRedefineParamListArgs]] = None,
                               redefine_self_workflow_dependency: Optional[str] = None,
                               scheduler_resource_group_id: Optional[str] = None,
                               skip_event_listening: Optional[bool] = None,
                               data_backfill_plan_name: Optional[str] = None,
                               time_zone: Optional[str] = None,
                               wedata_data_backfill_plan_id: Optional[str] = None)
    func NewWedataDataBackfillPlan(ctx *Context, name string, args WedataDataBackfillPlanArgs, opts ...ResourceOption) (*WedataDataBackfillPlan, error)
    public WedataDataBackfillPlan(string name, WedataDataBackfillPlanArgs args, CustomResourceOptions? opts = null)
    public WedataDataBackfillPlan(String name, WedataDataBackfillPlanArgs args)
    public WedataDataBackfillPlan(String name, WedataDataBackfillPlanArgs args, CustomResourceOptions options)
    
    type: tencentcloud:WedataDataBackfillPlan
    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 WedataDataBackfillPlanArgs
    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 WedataDataBackfillPlanArgs
    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 WedataDataBackfillPlanArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WedataDataBackfillPlanArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WedataDataBackfillPlanArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    WedataDataBackfillPlan 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 WedataDataBackfillPlan resource accepts the following input properties:

    DataBackfillRangeLists List<WedataDataBackfillPlanDataBackfillRangeList>
    Specifies the data time configuration for the backfill task.
    ProjectId string
    Project ID.
    TaskIds List<string>
    Backfill task collection.
    CheckParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    DataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    DataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    IntegrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    RedefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    RedefineParallelNum double
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    RedefineParamLists List<WedataDataBackfillPlanRedefineParamList>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    RedefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    SchedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    SkipEventListening bool
    Specifies whether to ignore event dependency for backfill. default true.
    TimeZone string
    Time zone, default UTC+8.
    WedataDataBackfillPlanId string
    ID of the resource.
    DataBackfillRangeLists []WedataDataBackfillPlanDataBackfillRangeListArgs
    Specifies the data time configuration for the backfill task.
    ProjectId string
    Project ID.
    TaskIds []string
    Backfill task collection.
    CheckParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    DataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    DataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    IntegrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    RedefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    RedefineParallelNum float64
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    RedefineParamLists []WedataDataBackfillPlanRedefineParamListArgs
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    RedefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    SchedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    SkipEventListening bool
    Specifies whether to ignore event dependency for backfill. default true.
    TimeZone string
    Time zone, default UTC+8.
    WedataDataBackfillPlanId string
    ID of the resource.
    dataBackfillRangeLists List<WedataDataBackfillPlanDataBackfillRangeList>
    Specifies the data time configuration for the backfill task.
    projectId String
    Project ID.
    taskIds List<String>
    Backfill task collection.
    checkParentType String
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanName String
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataTimeOrder String

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId String
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    redefineCycleType String

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum Double
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists List<WedataDataBackfillPlanRedefineParamList>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency String
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId String
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening Boolean
    Specifies whether to ignore event dependency for backfill. default true.
    timeZone String
    Time zone, default UTC+8.
    wedataDataBackfillPlanId String
    ID of the resource.
    dataBackfillRangeLists WedataDataBackfillPlanDataBackfillRangeList[]
    Specifies the data time configuration for the backfill task.
    projectId string
    Project ID.
    taskIds string[]
    Backfill task collection.
    checkParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    redefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum number
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists WedataDataBackfillPlanRedefineParamList[]
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening boolean
    Specifies whether to ignore event dependency for backfill. default true.
    timeZone string
    Time zone, default UTC+8.
    wedataDataBackfillPlanId string
    ID of the resource.
    data_backfill_range_lists Sequence[WedataDataBackfillPlanDataBackfillRangeListArgs]
    Specifies the data time configuration for the backfill task.
    project_id str
    Project ID.
    task_ids Sequence[str]
    Backfill task collection.
    check_parent_type str
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    data_backfill_plan_name str
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    data_time_order str

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integration_resource_group_id str
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    redefine_cycle_type str

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefine_parallel_num float
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefine_param_lists Sequence[WedataDataBackfillPlanRedefineParamListArgs]
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefine_self_workflow_dependency str
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    scheduler_resource_group_id str
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skip_event_listening bool
    Specifies whether to ignore event dependency for backfill. default true.
    time_zone str
    Time zone, default UTC+8.
    wedata_data_backfill_plan_id str
    ID of the resource.
    dataBackfillRangeLists List<Property Map>
    Specifies the data time configuration for the backfill task.
    projectId String
    Project ID.
    taskIds List<String>
    Backfill task collection.
    checkParentType String
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanName String
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataTimeOrder String

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId String
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    redefineCycleType String

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum Number
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists List<Property Map>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency String
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId String
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening Boolean
    Specifies whether to ignore event dependency for backfill. default true.
    timeZone String
    Time zone, default UTC+8.
    wedataDataBackfillPlanId String
    ID of the resource.

    Outputs

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

    DataBackfillPlanId string
    Data backfill plan ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    DataBackfillPlanId string
    Data backfill plan ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    dataBackfillPlanId String
    Data backfill plan ID.
    id String
    The provider-assigned unique ID for this managed resource.
    dataBackfillPlanId string
    Data backfill plan ID.
    id string
    The provider-assigned unique ID for this managed resource.
    data_backfill_plan_id str
    Data backfill plan ID.
    id str
    The provider-assigned unique ID for this managed resource.
    dataBackfillPlanId String
    Data backfill plan ID.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing WedataDataBackfillPlan Resource

    Get an existing WedataDataBackfillPlan 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?: WedataDataBackfillPlanState, opts?: CustomResourceOptions): WedataDataBackfillPlan
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            check_parent_type: Optional[str] = None,
            data_backfill_plan_id: Optional[str] = None,
            data_backfill_plan_name: Optional[str] = None,
            data_backfill_range_lists: Optional[Sequence[WedataDataBackfillPlanDataBackfillRangeListArgs]] = None,
            data_time_order: Optional[str] = None,
            integration_resource_group_id: Optional[str] = None,
            project_id: Optional[str] = None,
            redefine_cycle_type: Optional[str] = None,
            redefine_parallel_num: Optional[float] = None,
            redefine_param_lists: Optional[Sequence[WedataDataBackfillPlanRedefineParamListArgs]] = None,
            redefine_self_workflow_dependency: Optional[str] = None,
            scheduler_resource_group_id: Optional[str] = None,
            skip_event_listening: Optional[bool] = None,
            task_ids: Optional[Sequence[str]] = None,
            time_zone: Optional[str] = None,
            wedata_data_backfill_plan_id: Optional[str] = None) -> WedataDataBackfillPlan
    func GetWedataDataBackfillPlan(ctx *Context, name string, id IDInput, state *WedataDataBackfillPlanState, opts ...ResourceOption) (*WedataDataBackfillPlan, error)
    public static WedataDataBackfillPlan Get(string name, Input<string> id, WedataDataBackfillPlanState? state, CustomResourceOptions? opts = null)
    public static WedataDataBackfillPlan get(String name, Output<String> id, WedataDataBackfillPlanState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:WedataDataBackfillPlan    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:
    CheckParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    DataBackfillPlanId string
    Data backfill plan ID.
    DataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    DataBackfillRangeLists List<WedataDataBackfillPlanDataBackfillRangeList>
    Specifies the data time configuration for the backfill task.
    DataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    IntegrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    ProjectId string
    Project ID.
    RedefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    RedefineParallelNum double
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    RedefineParamLists List<WedataDataBackfillPlanRedefineParamList>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    RedefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    SchedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    SkipEventListening bool
    Specifies whether to ignore event dependency for backfill. default true.
    TaskIds List<string>
    Backfill task collection.
    TimeZone string
    Time zone, default UTC+8.
    WedataDataBackfillPlanId string
    ID of the resource.
    CheckParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    DataBackfillPlanId string
    Data backfill plan ID.
    DataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    DataBackfillRangeLists []WedataDataBackfillPlanDataBackfillRangeListArgs
    Specifies the data time configuration for the backfill task.
    DataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    IntegrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    ProjectId string
    Project ID.
    RedefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    RedefineParallelNum float64
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    RedefineParamLists []WedataDataBackfillPlanRedefineParamListArgs
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    RedefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    SchedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    SkipEventListening bool
    Specifies whether to ignore event dependency for backfill. default true.
    TaskIds []string
    Backfill task collection.
    TimeZone string
    Time zone, default UTC+8.
    WedataDataBackfillPlanId string
    ID of the resource.
    checkParentType String
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanId String
    Data backfill plan ID.
    dataBackfillPlanName String
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataBackfillRangeLists List<WedataDataBackfillPlanDataBackfillRangeList>
    Specifies the data time configuration for the backfill task.
    dataTimeOrder String

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId String
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    projectId String
    Project ID.
    redefineCycleType String

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum Double
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists List<WedataDataBackfillPlanRedefineParamList>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency String
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId String
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening Boolean
    Specifies whether to ignore event dependency for backfill. default true.
    taskIds List<String>
    Backfill task collection.
    timeZone String
    Time zone, default UTC+8.
    wedataDataBackfillPlanId String
    ID of the resource.
    checkParentType string
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanId string
    Data backfill plan ID.
    dataBackfillPlanName string
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataBackfillRangeLists WedataDataBackfillPlanDataBackfillRangeList[]
    Specifies the data time configuration for the backfill task.
    dataTimeOrder string

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId string
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    projectId string
    Project ID.
    redefineCycleType string

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum number
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists WedataDataBackfillPlanRedefineParamList[]
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency string
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId string
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening boolean
    Specifies whether to ignore event dependency for backfill. default true.
    taskIds string[]
    Backfill task collection.
    timeZone string
    Time zone, default UTC+8.
    wedataDataBackfillPlanId string
    ID of the resource.
    check_parent_type str
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    data_backfill_plan_id str
    Data backfill plan ID.
    data_backfill_plan_name str
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    data_backfill_range_lists Sequence[WedataDataBackfillPlanDataBackfillRangeListArgs]
    Specifies the data time configuration for the backfill task.
    data_time_order str

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integration_resource_group_id str
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    project_id str
    Project ID.
    redefine_cycle_type str

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefine_parallel_num float
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefine_param_lists Sequence[WedataDataBackfillPlanRedefineParamListArgs]
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefine_self_workflow_dependency str
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    scheduler_resource_group_id str
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skip_event_listening bool
    Specifies whether to ignore event dependency for backfill. default true.
    task_ids Sequence[str]
    Backfill task collection.
    time_zone str
    Time zone, default UTC+8.
    wedata_data_backfill_plan_id str
    ID of the resource.
    checkParentType String
    Check parent task type. valid values: NONE (do not check ALL), ALL (check ALL upstream parent tasks), MAKE_SCOPE (only check in the currently selected tasks of the backfill plan). default: NONE (do not check).
    dataBackfillPlanId String
    Data backfill plan ID.
    dataBackfillPlanName String
    Backfill plan name. if left empty, a string of characters is randomly generated by system.
    dataBackfillRangeLists List<Property Map>
    Specifies the data time configuration for the backfill task.
    dataTimeOrder String

    Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:

    1. Must be the same cycle task.

    2. Priority is given to dependency order. If no dependencies apply, execution follows the configured order.

    Valid values:

    -NORMAL: No specific order (default)

    -ORDER: Execute in chronological order

    -REVERSE: Execute in reverse chronological order.

    integrationResourceGroupId String
    Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
    projectId String
    Project ID.
    redefineCycleType String

    Backfill Instance Regeneration Cycle - If set, this will redefine the generation cycle of backfill task instances. Currently, only daily instances can be converted into instances generated on the first day of each month.

    Valid value:

    MONTH_CYCLE: Monthly.

    redefineParallelNum Number
    Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
    redefineParamLists List<Property Map>
    Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
    redefineSelfWorkflowDependency String
    Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
    schedulerResourceGroupId String
    Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
    skipEventListening Boolean
    Specifies whether to ignore event dependency for backfill. default true.
    taskIds List<String>
    Backfill task collection.
    timeZone String
    Time zone, default UTC+8.
    wedataDataBackfillPlanId String
    ID of the resource.

    Supporting Types

    WedataDataBackfillPlanDataBackfillRangeList, WedataDataBackfillPlanDataBackfillRangeListArgs

    EndDate string
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    ExecutionEndTime string
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    ExecutionStartTime string
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    StartDate string
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
    EndDate string
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    ExecutionEndTime string
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    ExecutionStartTime string
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    StartDate string
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
    endDate String
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    executionEndTime String
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    executionStartTime String
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    startDate String
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
    endDate string
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    executionEndTime string
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    executionStartTime string
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    startDate string
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
    end_date str
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    execution_end_time str
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    execution_start_time str
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    start_date str
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
    endDate String
    End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
    executionEndTime String
    End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    executionStartTime String
    Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
    startDate String
    Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.

    WedataDataBackfillPlanRedefineParamList, WedataDataBackfillPlanRedefineParamListArgs

    K string
    Key name.
    V string
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.
    K string
    Key name.
    V string
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.
    k String
    Key name.
    v String
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.
    k string
    Key name.
    v string
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.
    k str
    Key name.
    v str
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.
    k String
    Key name.
    v String
    The value. do not pass SQL (the request will be deemed as an attack on the api). if needed, transcode the SQL with Base64 and decode it.

    Import

    WeData data backfill plan can be imported using the projectId#dataBackfillPlanId, e.g.

    $ pulumi import tencentcloud:index/wedataDataBackfillPlan:WedataDataBackfillPlan example 2430455587205529600#de336ae4-372b-44e5-8659-7027cfb46916
    

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

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    Viewing docs for tencentcloud 1.82.79
    published on Friday, Mar 27, 2026 by tencentcloudstack
      Try Pulumi Cloud free. Your team will thank you.