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

tencentcloud.getWedataOpsWorkflows

Start a Neo task
Explain and create a tencentcloud.getWedataOpsWorkflows resource
tencentcloud logo
tencentcloud 1.82.35 published on Friday, Nov 7, 2025 by tencentcloudstack

    Use this data source to query detailed information of wedata ops workflows

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const wedataOpsWorkflows = tencentcloud.getWedataOpsWorkflows({
        projectId: "2905622749543821312",
        folderId: "720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c",
        status: "ALL_RUNNING",
        ownerUin: "100044349576",
        workflowType: "Cycle",
        sortType: "ASC",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    wedata_ops_workflows = tencentcloud.get_wedata_ops_workflows(project_id="2905622749543821312",
        folder_id="720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c",
        status="ALL_RUNNING",
        owner_uin="100044349576",
        workflow_type="Cycle",
        sort_type="ASC")
    
    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.GetWedataOpsWorkflows(ctx, &tencentcloud.GetWedataOpsWorkflowsArgs{
    			ProjectId:    "2905622749543821312",
    			FolderId:     pulumi.StringRef("720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c"),
    			Status:       pulumi.StringRef("ALL_RUNNING"),
    			OwnerUin:     pulumi.StringRef("100044349576"),
    			WorkflowType: pulumi.StringRef("Cycle"),
    			SortType:     pulumi.StringRef("ASC"),
    		}, 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 wedataOpsWorkflows = Tencentcloud.GetWedataOpsWorkflows.Invoke(new()
        {
            ProjectId = "2905622749543821312",
            FolderId = "720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c",
            Status = "ALL_RUNNING",
            OwnerUin = "100044349576",
            WorkflowType = "Cycle",
            SortType = "ASC",
        });
    
    });
    
    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.GetWedataOpsWorkflowsArgs;
    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 wedataOpsWorkflows = TencentcloudFunctions.getWedataOpsWorkflows(GetWedataOpsWorkflowsArgs.builder()
                .projectId("2905622749543821312")
                .folderId("720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c")
                .status("ALL_RUNNING")
                .ownerUin("100044349576")
                .workflowType("Cycle")
                .sortType("ASC")
                .build());
    
        }
    }
    
    variables:
      wedataOpsWorkflows:
        fn::invoke:
          function: tencentcloud:getWedataOpsWorkflows
          arguments:
            projectId: '2905622749543821312'
            folderId: 720ecbfb-7e5a-11f0-ba36-b8cef6a5af5c
            status: ALL_RUNNING
            ownerUin: '100044349576'
            workflowType: Cycle
            sortType: ASC
    

    Using getWedataOpsWorkflows

    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 getWedataOpsWorkflows(args: GetWedataOpsWorkflowsArgs, opts?: InvokeOptions): Promise<GetWedataOpsWorkflowsResult>
    function getWedataOpsWorkflowsOutput(args: GetWedataOpsWorkflowsOutputArgs, opts?: InvokeOptions): Output<GetWedataOpsWorkflowsResult>
    def get_wedata_ops_workflows(create_time: Optional[str] = None,
                                 create_user_uin: Optional[str] = None,
                                 folder_id: Optional[str] = None,
                                 id: Optional[str] = None,
                                 key_word: Optional[str] = None,
                                 modify_time: Optional[str] = None,
                                 owner_uin: Optional[str] = None,
                                 project_id: Optional[str] = None,
                                 result_output_file: Optional[str] = None,
                                 sort_item: Optional[str] = None,
                                 sort_type: Optional[str] = None,
                                 status: Optional[str] = None,
                                 workflow_type: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetWedataOpsWorkflowsResult
    def get_wedata_ops_workflows_output(create_time: Optional[pulumi.Input[str]] = None,
                                 create_user_uin: Optional[pulumi.Input[str]] = None,
                                 folder_id: Optional[pulumi.Input[str]] = None,
                                 id: Optional[pulumi.Input[str]] = None,
                                 key_word: Optional[pulumi.Input[str]] = None,
                                 modify_time: 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,
                                 sort_item: Optional[pulumi.Input[str]] = None,
                                 sort_type: Optional[pulumi.Input[str]] = None,
                                 status: Optional[pulumi.Input[str]] = None,
                                 workflow_type: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetWedataOpsWorkflowsResult]
    func GetWedataOpsWorkflows(ctx *Context, args *GetWedataOpsWorkflowsArgs, opts ...InvokeOption) (*GetWedataOpsWorkflowsResult, error)
    func GetWedataOpsWorkflowsOutput(ctx *Context, args *GetWedataOpsWorkflowsOutputArgs, opts ...InvokeOption) GetWedataOpsWorkflowsResultOutput

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

    public static class GetWedataOpsWorkflows 
    {
        public static Task<GetWedataOpsWorkflowsResult> InvokeAsync(GetWedataOpsWorkflowsArgs args, InvokeOptions? opts = null)
        public static Output<GetWedataOpsWorkflowsResult> Invoke(GetWedataOpsWorkflowsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWedataOpsWorkflowsResult> getWedataOpsWorkflows(GetWedataOpsWorkflowsArgs args, InvokeOptions options)
    public static Output<GetWedataOpsWorkflowsResult> getWedataOpsWorkflows(GetWedataOpsWorkflowsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getWedataOpsWorkflows:getWedataOpsWorkflows
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ProjectId string
    Project ID.
    CreateTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    CreateUserUin string
    Creator ID.
    FolderId string
    File ID.
    Id string
    KeyWord string
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    ModifyTime string
    Update time, format yyyy-MM-dd HH:mm:ss.
    OwnerUin string
    Responsible person ID.
    ResultOutputFile string
    Used to save results.
    SortItem string
    Sorting field, optional values: CreateTime, TaskCount.
    SortType string
    Sorting order, DESC or ASC, uppercase.
    Status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    WorkflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    ProjectId string
    Project ID.
    CreateTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    CreateUserUin string
    Creator ID.
    FolderId string
    File ID.
    Id string
    KeyWord string
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    ModifyTime string
    Update time, format yyyy-MM-dd HH:mm:ss.
    OwnerUin string
    Responsible person ID.
    ResultOutputFile string
    Used to save results.
    SortItem string
    Sorting field, optional values: CreateTime, TaskCount.
    SortType string
    Sorting order, DESC or ASC, uppercase.
    Status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    WorkflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    projectId String
    Project ID.
    createTime String
    Creation time, format yyyy-MM-dd HH:mm:ss.
    createUserUin String
    Creator ID.
    folderId String
    File ID.
    id String
    keyWord String
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    modifyTime String
    Update time, format yyyy-MM-dd HH:mm:ss.
    ownerUin String
    Responsible person ID.
    resultOutputFile String
    Used to save results.
    sortItem String
    Sorting field, optional values: CreateTime, TaskCount.
    sortType String
    Sorting order, DESC or ASC, uppercase.
    status String
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    workflowType String
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    projectId string
    Project ID.
    createTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    createUserUin string
    Creator ID.
    folderId string
    File ID.
    id string
    keyWord string
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    modifyTime string
    Update time, format yyyy-MM-dd HH:mm:ss.
    ownerUin string
    Responsible person ID.
    resultOutputFile string
    Used to save results.
    sortItem string
    Sorting field, optional values: CreateTime, TaskCount.
    sortType string
    Sorting order, DESC or ASC, uppercase.
    status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    workflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    project_id str
    Project ID.
    create_time str
    Creation time, format yyyy-MM-dd HH:mm:ss.
    create_user_uin str
    Creator ID.
    folder_id str
    File ID.
    id str
    key_word str
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    modify_time str
    Update time, format yyyy-MM-dd HH:mm:ss.
    owner_uin str
    Responsible person ID.
    result_output_file str
    Used to save results.
    sort_item str
    Sorting field, optional values: CreateTime, TaskCount.
    sort_type str
    Sorting order, DESC or ASC, uppercase.
    status str
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    workflow_type str
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    projectId String
    Project ID.
    createTime String
    Creation time, format yyyy-MM-dd HH:mm:ss.
    createUserUin String
    Creator ID.
    folderId String
    File ID.
    id String
    keyWord String
    Workflow keyword filter, supports fuzzy matching by workflow ID/name.
    modifyTime String
    Update time, format yyyy-MM-dd HH:mm:ss.
    ownerUin String
    Responsible person ID.
    resultOutputFile String
    Used to save results.
    sortItem String
    Sorting field, optional values: CreateTime, TaskCount.
    sortType String
    Sorting order, DESC or ASC, uppercase.
    status String
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    workflowType String
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.

    getWedataOpsWorkflows Result

    The following output properties are available:

    Datas List<GetWedataOpsWorkflowsData>
    Record list.
    Id string
    ProjectId string
    CreateTime string
    CreateUserUin string
    FolderId string
    KeyWord string
    ModifyTime string
    OwnerUin string
    ResultOutputFile string
    SortItem string
    SortType string
    Status string
    WorkflowType string
    Datas []GetWedataOpsWorkflowsData
    Record list.
    Id string
    ProjectId string
    CreateTime string
    CreateUserUin string
    FolderId string
    KeyWord string
    ModifyTime string
    OwnerUin string
    ResultOutputFile string
    SortItem string
    SortType string
    Status string
    WorkflowType string
    datas List<GetWedataOpsWorkflowsData>
    Record list.
    id String
    projectId String
    createTime String
    createUserUin String
    folderId String
    keyWord String
    modifyTime String
    ownerUin String
    resultOutputFile String
    sortItem String
    sortType String
    status String
    workflowType String
    datas GetWedataOpsWorkflowsData[]
    Record list.
    id string
    projectId string
    createTime string
    createUserUin string
    folderId string
    keyWord string
    modifyTime string
    ownerUin string
    resultOutputFile string
    sortItem string
    sortType string
    status string
    workflowType string
    datas List<Property Map>
    Record list.
    id String
    projectId String
    createTime String
    createUserUin String
    folderId String
    keyWord String
    modifyTime String
    ownerUin String
    resultOutputFile String
    sortItem String
    sortType String
    status String
    workflowType String

    Supporting Types

    GetWedataOpsWorkflowsData

    CreateTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    FolderId string
    File ID.
    FolderName string
    OwnerUin string
    Responsible person ID.
    ProjectId string
    Project ID.
    ProjectName string
    Status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    TaskCount double
    UpdateTime string
    UpdateUserUin string
    WorkflowDesc string
    WorkflowId string
    WorkflowName string
    WorkflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    CreateTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    FolderId string
    File ID.
    FolderName string
    OwnerUin string
    Responsible person ID.
    ProjectId string
    Project ID.
    ProjectName string
    Status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    TaskCount float64
    UpdateTime string
    UpdateUserUin string
    WorkflowDesc string
    WorkflowId string
    WorkflowName string
    WorkflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    createTime String
    Creation time, format yyyy-MM-dd HH:mm:ss.
    folderId String
    File ID.
    folderName String
    ownerUin String
    Responsible person ID.
    projectId String
    Project ID.
    projectName String
    status String
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    taskCount Double
    updateTime String
    updateUserUin String
    workflowDesc String
    workflowId String
    workflowName String
    workflowType String
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    createTime string
    Creation time, format yyyy-MM-dd HH:mm:ss.
    folderId string
    File ID.
    folderName string
    ownerUin string
    Responsible person ID.
    projectId string
    Project ID.
    projectName string
    status string
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    taskCount number
    updateTime string
    updateUserUin string
    workflowDesc string
    workflowId string
    workflowName string
    workflowType string
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    create_time str
    Creation time, format yyyy-MM-dd HH:mm:ss.
    folder_id str
    File ID.
    folder_name str
    owner_uin str
    Responsible person ID.
    project_id str
    Project ID.
    project_name str
    status str
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    task_count float
    update_time str
    update_user_uin str
    workflow_desc str
    workflow_id str
    workflow_name str
    workflow_type str
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.
    createTime String
    Creation time, format yyyy-MM-dd HH:mm:ss.
    folderId String
    File ID.
    folderName String
    ownerUin String
    Responsible person ID.
    projectId String
    Project ID.
    projectName String
    status String
    Workflow status filter: ALL_RUNNING: All scheduled, ALL_FREEZED: All paused, ALL_STOPPTED: All offline, PART_RUNNING: Partially scheduled, ALL_NO_RUNNING: All unscheduled, ALL_INVALID: All invalid.
    taskCount Number
    updateTime String
    updateUserUin String
    workflowDesc String
    workflowId String
    workflowName String
    workflowType String
    Workflow type filter, supported values: Cycle or Manual. By default, only Cycle is queried.

    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