1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getWedataTaskInstances
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

tencentcloud.getWedataTaskInstances

Get Started
tencentcloud logo
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

    Use this data source to query detailed information of wedata task instances

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const wedataTaskInstances = tencentcloud.getWedataTaskInstances({
        projectId: "1859317240494305280",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    wedata_task_instances = tencentcloud.get_wedata_task_instances(project_id="1859317240494305280")
    
    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.GetWedataTaskInstances(ctx, &tencentcloud.GetWedataTaskInstancesArgs{
    			ProjectId: "1859317240494305280",
    		}, nil)
    		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 wedataTaskInstances = Tencentcloud.GetWedataTaskInstances.Invoke(new()
        {
            ProjectId = "1859317240494305280",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TencentcloudFunctions;
    import com.pulumi.tencentcloud.inputs.GetWedataTaskInstancesArgs;
    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) {
            final var wedataTaskInstances = TencentcloudFunctions.getWedataTaskInstances(GetWedataTaskInstancesArgs.builder()
                .projectId("1859317240494305280")
                .build());
    
        }
    }
    
    variables:
      wedataTaskInstances:
        fn::invoke:
          function: tencentcloud:getWedataTaskInstances
          arguments:
            projectId: '1859317240494305280'
    

    Using getWedataTaskInstances

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getWedataTaskInstances(args: GetWedataTaskInstancesArgs, opts?: InvokeOptions): Promise<GetWedataTaskInstancesResult>
    function getWedataTaskInstancesOutput(args: GetWedataTaskInstancesOutputArgs, opts?: InvokeOptions): Output<GetWedataTaskInstancesResult>
    def get_wedata_task_instances(cycle_type: Optional[str] = None,
                                  executor_group_id: Optional[str] = None,
                                  folder_id: Optional[str] = None,
                                  id: Optional[str] = None,
                                  instance_state: Optional[str] = None,
                                  instance_type: Optional[float] = None,
                                  keyword: Optional[str] = None,
                                  last_update_time_from: Optional[str] = None,
                                  last_update_time_to: Optional[str] = None,
                                  owner_uin: Optional[str] = None,
                                  project_id: Optional[str] = None,
                                  result_output_file: Optional[str] = None,
                                  schedule_time_from: Optional[str] = None,
                                  schedule_time_to: Optional[str] = None,
                                  sort_column: Optional[str] = None,
                                  sort_type: Optional[str] = None,
                                  start_time_from: Optional[str] = None,
                                  start_time_to: Optional[str] = None,
                                  task_type_id: Optional[float] = None,
                                  time_zone: Optional[str] = None,
                                  workflow_id: Optional[str] = None,
                                  opts: Optional[InvokeOptions] = None) -> GetWedataTaskInstancesResult
    def get_wedata_task_instances_output(cycle_type: Optional[pulumi.Input[str]] = None,
                                  executor_group_id: Optional[pulumi.Input[str]] = None,
                                  folder_id: Optional[pulumi.Input[str]] = None,
                                  id: Optional[pulumi.Input[str]] = None,
                                  instance_state: Optional[pulumi.Input[str]] = None,
                                  instance_type: Optional[pulumi.Input[float]] = None,
                                  keyword: Optional[pulumi.Input[str]] = None,
                                  last_update_time_from: Optional[pulumi.Input[str]] = None,
                                  last_update_time_to: Optional[pulumi.Input[str]] = None,
                                  owner_uin: Optional[pulumi.Input[str]] = None,
                                  project_id: Optional[pulumi.Input[str]] = None,
                                  result_output_file: Optional[pulumi.Input[str]] = None,
                                  schedule_time_from: Optional[pulumi.Input[str]] = None,
                                  schedule_time_to: Optional[pulumi.Input[str]] = None,
                                  sort_column: Optional[pulumi.Input[str]] = None,
                                  sort_type: Optional[pulumi.Input[str]] = None,
                                  start_time_from: Optional[pulumi.Input[str]] = None,
                                  start_time_to: Optional[pulumi.Input[str]] = None,
                                  task_type_id: Optional[pulumi.Input[float]] = None,
                                  time_zone: Optional[pulumi.Input[str]] = None,
                                  workflow_id: Optional[pulumi.Input[str]] = None,
                                  opts: Optional[InvokeOptions] = None) -> Output[GetWedataTaskInstancesResult]
    func GetWedataTaskInstances(ctx *Context, args *GetWedataTaskInstancesArgs, opts ...InvokeOption) (*GetWedataTaskInstancesResult, error)
    func GetWedataTaskInstancesOutput(ctx *Context, args *GetWedataTaskInstancesOutputArgs, opts ...InvokeOption) GetWedataTaskInstancesResultOutput

    > Note: This function is named GetWedataTaskInstances in the Go SDK.

    public static class GetWedataTaskInstances 
    {
        public static Task<GetWedataTaskInstancesResult> InvokeAsync(GetWedataTaskInstancesArgs args, InvokeOptions? opts = null)
        public static Output<GetWedataTaskInstancesResult> Invoke(GetWedataTaskInstancesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWedataTaskInstancesResult> getWedataTaskInstances(GetWedataTaskInstancesArgs args, InvokeOptions options)
    public static Output<GetWedataTaskInstancesResult> getWedataTaskInstances(GetWedataTaskInstancesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getWedataTaskInstances:getWedataTaskInstances
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ProjectId string
    Project ID.
    CycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    ExecutorGroupId string
    Executor resource group ID.
    FolderId string
    Task folder ID.
    Id string
    InstanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    InstanceType double
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    Keyword string
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    LastUpdateTimeFrom string
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    LastUpdateTimeTo string
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    OwnerUin string
    Task owner ID.
    ResultOutputFile string
    Used to save results.
    ScheduleTimeFrom string
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    ScheduleTimeTo string
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    SortColumn string
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    SortType string
    Sorting order: - ASC; - DESC.
    StartTimeFrom string
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    StartTimeTo string
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    TaskTypeId double
    Task type ID.
    TimeZone string
    Time zone. The time zone of the input time string, default UTC+8.
    WorkflowId string
    Task workflow ID.
    ProjectId string
    Project ID.
    CycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    ExecutorGroupId string
    Executor resource group ID.
    FolderId string
    Task folder ID.
    Id string
    InstanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    InstanceType float64
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    Keyword string
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    LastUpdateTimeFrom string
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    LastUpdateTimeTo string
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    OwnerUin string
    Task owner ID.
    ResultOutputFile string
    Used to save results.
    ScheduleTimeFrom string
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    ScheduleTimeTo string
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    SortColumn string
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    SortType string
    Sorting order: - ASC; - DESC.
    StartTimeFrom string
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    StartTimeTo string
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    TaskTypeId float64
    Task type ID.
    TimeZone string
    Time zone. The time zone of the input time string, default UTC+8.
    WorkflowId string
    Task workflow ID.
    projectId String
    Project ID.
    cycleType String
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    executorGroupId String
    Executor resource group ID.
    folderId String
    Task folder ID.
    id String
    instanceState String
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType Double
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    keyword String
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    lastUpdateTimeFrom String
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    lastUpdateTimeTo String
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    ownerUin String
    Task owner ID.
    resultOutputFile String
    Used to save results.
    scheduleTimeFrom String
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    scheduleTimeTo String
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    sortColumn String
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    sortType String
    Sorting order: - ASC; - DESC.
    startTimeFrom String
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    startTimeTo String
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    taskTypeId Double
    Task type ID.
    timeZone String
    Time zone. The time zone of the input time string, default UTC+8.
    workflowId String
    Task workflow ID.
    projectId string
    Project ID.
    cycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    executorGroupId string
    Executor resource group ID.
    folderId string
    Task folder ID.
    id string
    instanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType number
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    keyword string
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    lastUpdateTimeFrom string
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    lastUpdateTimeTo string
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    ownerUin string
    Task owner ID.
    resultOutputFile string
    Used to save results.
    scheduleTimeFrom string
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    scheduleTimeTo string
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    sortColumn string
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    sortType string
    Sorting order: - ASC; - DESC.
    startTimeFrom string
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    startTimeTo string
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    taskTypeId number
    Task type ID.
    timeZone string
    Time zone. The time zone of the input time string, default UTC+8.
    workflowId string
    Task workflow ID.
    project_id str
    Project ID.
    cycle_type str
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    executor_group_id str
    Executor resource group ID.
    folder_id str
    Task folder ID.
    id str
    instance_state str
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instance_type float
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    keyword str
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    last_update_time_from str
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    last_update_time_to str
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    owner_uin str
    Task owner ID.
    result_output_file str
    Used to save results.
    schedule_time_from str
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    schedule_time_to str
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    sort_column str
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    sort_type str
    Sorting order: - ASC; - DESC.
    start_time_from str
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    start_time_to str
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    task_type_id float
    Task type ID.
    time_zone str
    Time zone. The time zone of the input time string, default UTC+8.
    workflow_id str
    Task workflow ID.
    projectId String
    Project ID.
    cycleType String
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    executorGroupId String
    Executor resource group ID.
    folderId String
    Task folder ID.
    id String
    instanceState String
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType Number
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    keyword String
    Task name or Task ID. Supports fuzzy search filtering. Multiple values separated by commas.
    lastUpdateTimeFrom String
    Instance last update time filter condition.Start time, format yyyy-MM-dd HH:mm:ss.
    lastUpdateTimeTo String
    Instance last update time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    ownerUin String
    Task owner ID.
    resultOutputFile String
    Used to save results.
    scheduleTimeFrom String
    Instance scheduled time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    scheduleTimeTo String
    Instance scheduled time filter condition End time, format yyyy-MM-dd HH:mm:ss.
    sortColumn String
    Result sorting field- SCHEDULE_DATE: Sort by scheduled time- START_TIME: Sort by execution start time- END_TIME: Sort by execution end time- COST_TIME: Sort by execution duration.
    sortType String
    Sorting order: - ASC; - DESC.
    startTimeFrom String
    Instance execution start time filter condition Start time, format yyyy-MM-dd HH:mm:ss.
    startTimeTo String
    Instance execution start time filter condition.End time, format yyyy-MM-dd HH:mm:ss.
    taskTypeId Number
    Task type ID.
    timeZone String
    Time zone. The time zone of the input time string, default UTC+8.
    workflowId String
    Task workflow ID.

    getWedataTaskInstances Result

    The following output properties are available:

    Supporting Types

    GetWedataTaskInstancesData

    GetWedataTaskInstancesDataItem

    CostTime double
    CurRunDate string
    CycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    EndTime string
    ExecutorGroupId string
    Executor resource group ID.
    ExecutorGroupName string
    FolderId string
    Task folder ID.
    FolderName string
    InstanceKey string
    InstanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    InstanceType double
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    LastUpdateTime string
    OwnerUinLists List<string>
    ProjectId string
    Project ID.
    SchedulerTime string
    StartTime string
    TaskId string
    TaskName string
    TaskType string
    TaskTypeId double
    Task type ID.
    TotalRunNum double
    Tries double
    TryLimit double
    WorkflowId string
    Task workflow ID.
    WorkflowName string
    CostTime float64
    CurRunDate string
    CycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    EndTime string
    ExecutorGroupId string
    Executor resource group ID.
    ExecutorGroupName string
    FolderId string
    Task folder ID.
    FolderName string
    InstanceKey string
    InstanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    InstanceType float64
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    LastUpdateTime string
    OwnerUinLists []string
    ProjectId string
    Project ID.
    SchedulerTime string
    StartTime string
    TaskId string
    TaskName string
    TaskType string
    TaskTypeId float64
    Task type ID.
    TotalRunNum float64
    Tries float64
    TryLimit float64
    WorkflowId string
    Task workflow ID.
    WorkflowName string
    costTime Double
    curRunDate String
    cycleType String
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    endTime String
    executorGroupId String
    Executor resource group ID.
    executorGroupName String
    folderId String
    Task folder ID.
    folderName String
    instanceKey String
    instanceState String
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType Double
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    lastUpdateTime String
    ownerUinLists List<String>
    projectId String
    Project ID.
    schedulerTime String
    startTime String
    taskId String
    taskName String
    taskType String
    taskTypeId Double
    Task type ID.
    totalRunNum Double
    tries Double
    tryLimit Double
    workflowId String
    Task workflow ID.
    workflowName String
    costTime number
    curRunDate string
    cycleType string
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    endTime string
    executorGroupId string
    Executor resource group ID.
    executorGroupName string
    folderId string
    Task folder ID.
    folderName string
    instanceKey string
    instanceState string
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType number
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    lastUpdateTime string
    ownerUinLists string[]
    projectId string
    Project ID.
    schedulerTime string
    startTime string
    taskId string
    taskName string
    taskType string
    taskTypeId number
    Task type ID.
    totalRunNum number
    tries number
    tryLimit number
    workflowId string
    Task workflow ID.
    workflowName string
    cost_time float
    cur_run_date str
    cycle_type str
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    end_time str
    executor_group_id str
    Executor resource group ID.
    executor_group_name str
    folder_id str
    Task folder ID.
    folder_name str
    instance_key str
    instance_state str
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instance_type float
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    last_update_time str
    owner_uin_lists Sequence[str]
    project_id str
    Project ID.
    scheduler_time str
    start_time str
    task_id str
    task_name str
    task_type str
    task_type_id float
    Task type ID.
    total_run_num float
    tries float
    try_limit float
    workflow_id str
    Task workflow ID.
    workflow_name str
    costTime Number
    curRunDate String
    cycleType String
    Task cycle type * ONEOFF_CYCLE: One-time * YEAR_CYCLE: Year * MONTH_CYCLE: Month * WEEK_CYCLE: Week * DAY_CYCLE: Day * HOUR_CYCLE: Hour * MINUTE_CYCLE: Minute * CRONTAB_CYCLE: Crontab expression type.
    endTime String
    executorGroupId String
    Executor resource group ID.
    executorGroupName String
    folderId String
    Task folder ID.
    folderName String
    instanceKey String
    instanceState String
    Instance status - WAIT_EVENT: Waiting for event - WAIT_UPSTREAM: Waiting for upstream - WAIT_RUN: Waiting to run - RUNNING: Running - SKIP_RUNNING: Skipped running - FAILED_RETRY: Failed retry - EXPIRED: Failed - COMPLETED: Success.
    instanceType Number
    Instance type - 0: Backfill type - 1: Periodic instance - 2: Non-periodic instance.
    lastUpdateTime String
    ownerUinLists List<String>
    projectId String
    Project ID.
    schedulerTime String
    startTime String
    taskId String
    taskName String
    taskType String
    taskTypeId Number
    Task type ID.
    totalRunNum Number
    tries Number
    tryLimit Number
    workflowId String
    Task workflow ID.
    workflowName String

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack
      Meet Neo: Your AI Platform Teammate