published on Friday, Mar 27, 2026 by tencentcloudstack
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:
- Data
Backfill List<WedataRange Lists Data Backfill Plan Data Backfill Range List> - Specifies the data time configuration for the backfill task.
- Project
Id string - Project ID.
- Task
Ids List<string> - Backfill task collection.
- Check
Parent stringType - 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 stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- Data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- Redefine
Cycle stringType 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 doubleNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- Redefine
Param List<WedataLists Data Backfill Plan Redefine Param List> - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- Redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- Scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- Skip
Event boolListening - Specifies whether to ignore event dependency for backfill. default true.
- Time
Zone string - Time zone, default UTC+8.
- Wedata
Data stringBackfill Plan Id - ID of the resource.
- Data
Backfill []WedataRange Lists Data Backfill Plan Data Backfill Range List Args - Specifies the data time configuration for the backfill task.
- Project
Id string - Project ID.
- Task
Ids []string - Backfill task collection.
- Check
Parent stringType - 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 stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- Data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- Redefine
Cycle stringType 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 float64Num - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- Redefine
Param []WedataLists Data Backfill Plan Redefine Param List Args - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- Redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- Scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- Skip
Event boolListening - Specifies whether to ignore event dependency for backfill. default true.
- Time
Zone string - Time zone, default UTC+8.
- Wedata
Data stringBackfill Plan Id - ID of the resource.
- data
Backfill List<WedataRange Lists Data Backfill Plan Data Backfill Range List> - Specifies the data time configuration for the backfill task.
- project
Id String - Project ID.
- task
Ids List<String> - Backfill task collection.
- check
Parent StringType - 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 StringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Time StringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 StringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- redefine
Cycle StringType 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 DoubleNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param List<WedataLists Data Backfill Plan Redefine Param List> - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self StringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource StringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event BooleanListening - Specifies whether to ignore event dependency for backfill. default true.
- time
Zone String - Time zone, default UTC+8.
- wedata
Data StringBackfill Plan Id - ID of the resource.
- data
Backfill WedataRange Lists Data Backfill Plan Data Backfill Range List[] - Specifies the data time configuration for the backfill task.
- project
Id string - Project ID.
- task
Ids string[] - Backfill task collection.
- check
Parent stringType - 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 stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- redefine
Cycle stringType 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 numberNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param WedataLists Data Backfill Plan Redefine Param List[] - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event booleanListening - Specifies whether to ignore event dependency for backfill. default true.
- time
Zone string - Time zone, default UTC+8.
- wedata
Data stringBackfill Plan Id - ID of the resource.
- data_
backfill_ Sequence[Wedatarange_ lists Data Backfill Plan Data Backfill Range List Args] - Specifies the data time configuration for the backfill task.
- project_
id str - Project ID.
- task_
ids Sequence[str] - Backfill task collection.
- check_
parent_ strtype - 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_ strplan_ name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data_
time_ strorder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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_ strgroup_ id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- redefine_
cycle_ strtype 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_ floatnum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine_
param_ Sequence[Wedatalists Data Backfill Plan Redefine Param List Args] - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine_
self_ strworkflow_ dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler_
resource_ strgroup_ id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip_
event_ boollistening - Specifies whether to ignore event dependency for backfill. default true.
- time_
zone str - Time zone, default UTC+8.
- wedata_
data_ strbackfill_ plan_ id - ID of the resource.
- data
Backfill List<Property Map>Range Lists - Specifies the data time configuration for the backfill task.
- project
Id String - Project ID.
- task
Ids List<String> - Backfill task collection.
- check
Parent StringType - 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 StringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Time StringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 StringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- redefine
Cycle StringType 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 NumberNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param List<Property Map>Lists - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self StringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource StringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event BooleanListening - Specifies whether to ignore event dependency for backfill. default true.
- time
Zone String - Time zone, default UTC+8.
- wedata
Data StringBackfill Plan Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the WedataDataBackfillPlan resource produces the following output properties:
- Data
Backfill stringPlan Id - Data backfill plan ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Data
Backfill stringPlan Id - Data backfill plan ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- data
Backfill StringPlan Id - Data backfill plan ID.
- id String
- The provider-assigned unique ID for this managed resource.
- data
Backfill stringPlan Id - Data backfill plan ID.
- id string
- The provider-assigned unique ID for this managed resource.
- data_
backfill_ strplan_ id - Data backfill plan ID.
- id str
- The provider-assigned unique ID for this managed resource.
- data
Backfill StringPlan Id - 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) -> WedataDataBackfillPlanfunc 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.
- Check
Parent stringType - 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 stringPlan Id - Data backfill plan ID.
- Data
Backfill stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- Data
Backfill List<WedataRange Lists Data Backfill Plan Data Backfill Range List> - Specifies the data time configuration for the backfill task.
- Data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- Project
Id string - Project ID.
- Redefine
Cycle stringType 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 doubleNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- Redefine
Param List<WedataLists Data Backfill Plan Redefine Param List> - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- Redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- Scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- Skip
Event boolListening - Specifies whether to ignore event dependency for backfill. default true.
- Task
Ids List<string> - Backfill task collection.
- Time
Zone string - Time zone, default UTC+8.
- Wedata
Data stringBackfill Plan Id - ID of the resource.
- Check
Parent stringType - 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 stringPlan Id - Data backfill plan ID.
- Data
Backfill stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- Data
Backfill []WedataRange Lists Data Backfill Plan Data Backfill Range List Args - Specifies the data time configuration for the backfill task.
- Data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- Project
Id string - Project ID.
- Redefine
Cycle stringType 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 float64Num - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- Redefine
Param []WedataLists Data Backfill Plan Redefine Param List Args - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- Redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- Scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- Skip
Event boolListening - Specifies whether to ignore event dependency for backfill. default true.
- Task
Ids []string - Backfill task collection.
- Time
Zone string - Time zone, default UTC+8.
- Wedata
Data stringBackfill Plan Id - ID of the resource.
- check
Parent StringType - 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 StringPlan Id - Data backfill plan ID.
- data
Backfill StringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Backfill List<WedataRange Lists Data Backfill Plan Data Backfill Range List> - Specifies the data time configuration for the backfill task.
- data
Time StringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 StringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- project
Id String - Project ID.
- redefine
Cycle StringType 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 DoubleNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param List<WedataLists Data Backfill Plan Redefine Param List> - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self StringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource StringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event BooleanListening - Specifies whether to ignore event dependency for backfill. default true.
- task
Ids List<String> - Backfill task collection.
- time
Zone String - Time zone, default UTC+8.
- wedata
Data StringBackfill Plan Id - ID of the resource.
- check
Parent stringType - 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 stringPlan Id - Data backfill plan ID.
- data
Backfill stringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Backfill WedataRange Lists Data Backfill Plan Data Backfill Range List[] - Specifies the data time configuration for the backfill task.
- data
Time stringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 stringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- project
Id string - Project ID.
- redefine
Cycle stringType 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 numberNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param WedataLists Data Backfill Plan Redefine Param List[] - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self stringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource stringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event booleanListening - Specifies whether to ignore event dependency for backfill. default true.
- task
Ids string[] - Backfill task collection.
- time
Zone string - Time zone, default UTC+8.
- wedata
Data stringBackfill Plan Id - ID of the resource.
- check_
parent_ strtype - 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_ strplan_ id - Data backfill plan ID.
- data_
backfill_ strplan_ name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data_
backfill_ Sequence[Wedatarange_ lists Data Backfill Plan Data Backfill Range List Args] - Specifies the data time configuration for the backfill task.
- data_
time_ strorder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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_ strgroup_ id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- project_
id str - Project ID.
- redefine_
cycle_ strtype 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_ floatnum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine_
param_ Sequence[Wedatalists Data Backfill Plan Redefine Param List Args] - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine_
self_ strworkflow_ dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler_
resource_ strgroup_ id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip_
event_ boollistening - 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_ strbackfill_ plan_ id - ID of the resource.
- check
Parent StringType - 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 StringPlan Id - Data backfill plan ID.
- data
Backfill StringPlan Name - Backfill plan name. if left empty, a string of characters is randomly generated by system.
- data
Backfill List<Property Map>Range Lists - Specifies the data time configuration for the backfill task.
- data
Time StringOrder Backfill Execution Order - The execution order for backfill instances based on their data time. Effective only when both conditions are met:
Must be the same cycle task.
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 StringGroup Id - Integration task resource group id. indicates usage of the original task scheduling execution resource group if empty.
- project
Id String - Project ID.
- redefine
Cycle StringType 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 NumberNum - Customizes the degree of concurrency for instance running. if without configuring, use the existing self-dependent of the task.
- redefine
Param List<Property Map>Lists - Custom parameter. re-specifies the task's parameters to facilitate the execution of new logic by replenished instances.
- redefine
Self StringWorkflow Dependency - Custom workflow self-dependency. valid values: yes or no. if not configured, use the original workflow self-dependency.
- scheduler
Resource StringGroup Id - Scheduling resource group id. if left empty, indicates usage of the original task scheduling execution resource group.
- skip
Event BooleanListening - Specifies whether to ignore event dependency for backfill. default true.
- task
Ids List<String> - Backfill task collection.
- time
Zone String - Time zone, default UTC+8.
- wedata
Data StringBackfill Plan Id - ID of the resource.
Supporting Types
WedataDataBackfillPlanDataBackfillRangeList, WedataDataBackfillPlanDataBackfillRangeListArgs
- End
Date string - End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
- Execution
End stringTime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- Execution
Start stringTime - Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- Start
Date string - Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
- End
Date string - End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
- Execution
End stringTime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- Execution
Start stringTime - Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- Start
Date string - Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
- end
Date String - End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
- execution
End StringTime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- execution
Start StringTime - Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- start
Date String - Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
- end
Date string - End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
- execution
End stringTime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- execution
Start stringTime - Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- start
Date 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_ strtime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- execution_
start_ strtime - 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.
- end
Date String - End date in the format yyyy-MM-dd, indicates ending at 23:59:59 of the specified date.
- execution
End StringTime - End time point between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- execution
Start StringTime - Start time of each day between [StartDate, EndDate] in HH:mm format. effective for tasks with a period of hours or less.
- start
Date String - Start date in yyyy-MM-dd format. indicates the start from 00:00:00 on the specified date.
WedataDataBackfillPlanRedefineParamList, WedataDataBackfillPlanRedefineParamListArgs
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
tencentcloudTerraform Provider.
published on Friday, Mar 27, 2026 by tencentcloudstack
