1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getWedataTaskVersion
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack

tencentcloud.getWedataTaskVersion

Start a Neo task
Explain and create a tencentcloud.getWedataTaskVersion resource
tencentcloud logo
tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack

    Use this data source to query detailed information of wedata wedata_task_version

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const wedataTaskVersion = tencentcloud.getWedataTaskVersion({
        projectId: "2905622749543821312",
        taskId: "20251015164958429",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    wedata_task_version = tencentcloud.get_wedata_task_version(project_id="2905622749543821312",
        task_id="20251015164958429")
    
    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.GetWedataTaskVersion(ctx, &tencentcloud.GetWedataTaskVersionArgs{
    			ProjectId: "2905622749543821312",
    			TaskId:    "20251015164958429",
    		}, 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 wedataTaskVersion = Tencentcloud.GetWedataTaskVersion.Invoke(new()
        {
            ProjectId = "2905622749543821312",
            TaskId = "20251015164958429",
        });
    
    });
    
    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.GetWedataTaskVersionArgs;
    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 wedataTaskVersion = TencentcloudFunctions.getWedataTaskVersion(GetWedataTaskVersionArgs.builder()
                .projectId("2905622749543821312")
                .taskId("20251015164958429")
                .build());
    
        }
    }
    
    variables:
      wedataTaskVersion:
        fn::invoke:
          function: tencentcloud:getWedataTaskVersion
          arguments:
            projectId: '2905622749543821312'
            taskId: '20251015164958429'
    

    Using getWedataTaskVersion

    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 getWedataTaskVersion(args: GetWedataTaskVersionArgs, opts?: InvokeOptions): Promise<GetWedataTaskVersionResult>
    function getWedataTaskVersionOutput(args: GetWedataTaskVersionOutputArgs, opts?: InvokeOptions): Output<GetWedataTaskVersionResult>
    def get_wedata_task_version(id: Optional[str] = None,
                                project_id: Optional[str] = None,
                                result_output_file: Optional[str] = None,
                                task_id: Optional[str] = None,
                                version_id: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetWedataTaskVersionResult
    def get_wedata_task_version_output(id: Optional[pulumi.Input[str]] = None,
                                project_id: Optional[pulumi.Input[str]] = None,
                                result_output_file: Optional[pulumi.Input[str]] = None,
                                task_id: Optional[pulumi.Input[str]] = None,
                                version_id: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetWedataTaskVersionResult]
    func GetWedataTaskVersion(ctx *Context, args *GetWedataTaskVersionArgs, opts ...InvokeOption) (*GetWedataTaskVersionResult, error)
    func GetWedataTaskVersionOutput(ctx *Context, args *GetWedataTaskVersionOutputArgs, opts ...InvokeOption) GetWedataTaskVersionResultOutput

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

    public static class GetWedataTaskVersion 
    {
        public static Task<GetWedataTaskVersionResult> InvokeAsync(GetWedataTaskVersionArgs args, InvokeOptions? opts = null)
        public static Output<GetWedataTaskVersionResult> Invoke(GetWedataTaskVersionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWedataTaskVersionResult> getWedataTaskVersion(GetWedataTaskVersionArgs args, InvokeOptions options)
    public static Output<GetWedataTaskVersionResult> getWedataTaskVersion(GetWedataTaskVersionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getWedataTaskVersion:getWedataTaskVersion
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ProjectId string
    Project ID.
    TaskId string
    Task ID.
    Id string
    ResultOutputFile string
    Used to save results.
    VersionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    ProjectId string
    Project ID.
    TaskId string
    Task ID.
    Id string
    ResultOutputFile string
    Used to save results.
    VersionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    projectId String
    Project ID.
    taskId String
    Task ID.
    id String
    resultOutputFile String
    Used to save results.
    versionId String
    Submit version ID. If not specified, the latest submit version will be used by default.
    projectId string
    Project ID.
    taskId string
    Task ID.
    id string
    resultOutputFile string
    Used to save results.
    versionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    project_id str
    Project ID.
    task_id str
    Task ID.
    id str
    result_output_file str
    Used to save results.
    version_id str
    Submit version ID. If not specified, the latest submit version will be used by default.
    projectId String
    Project ID.
    taskId String
    Task ID.
    id String
    resultOutputFile String
    Used to save results.
    versionId String
    Submit version ID. If not specified, the latest submit version will be used by default.

    getWedataTaskVersion Result

    The following output properties are available:

    Datas []GetWedataTaskVersionData
    Version detail.
    Id string
    ProjectId string
    TaskId string
    ResultOutputFile string
    VersionId string
    datas GetWedataTaskVersionData[]
    Version detail.
    id string
    projectId string
    taskId string
    resultOutputFile string
    versionId string
    datas List<Property Map>
    Version detail.
    id String
    projectId String
    taskId String
    resultOutputFile String
    versionId String

    Supporting Types

    GetWedataTaskVersionData

    ApproveStatus string
    ApproveTime string
    ApproveUserUin string
    CreateTime string
    CreateUserUin string
    Tasks List<GetWedataTaskVersionDataTask>
    VersionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    VersionNum string
    VersionRemark string
    ApproveStatus string
    ApproveTime string
    ApproveUserUin string
    CreateTime string
    CreateUserUin string
    Tasks []GetWedataTaskVersionDataTask
    VersionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    VersionNum string
    VersionRemark string
    approveStatus String
    approveTime String
    approveUserUin String
    createTime String
    createUserUin String
    tasks List<GetWedataTaskVersionDataTask>
    versionId String
    Submit version ID. If not specified, the latest submit version will be used by default.
    versionNum String
    versionRemark String
    approveStatus string
    approveTime string
    approveUserUin string
    createTime string
    createUserUin string
    tasks GetWedataTaskVersionDataTask[]
    versionId string
    Submit version ID. If not specified, the latest submit version will be used by default.
    versionNum string
    versionRemark string
    approve_status str
    approve_time str
    approve_user_uin str
    create_time str
    create_user_uin str
    tasks Sequence[GetWedataTaskVersionDataTask]
    version_id str
    Submit version ID. If not specified, the latest submit version will be used by default.
    version_num str
    version_remark str
    approveStatus String
    approveTime String
    approveUserUin String
    createTime String
    createUserUin String
    tasks List<Property Map>
    versionId String
    Submit version ID. If not specified, the latest submit version will be used by default.
    versionNum String
    versionRemark String

    GetWedataTaskVersionDataTask

    GetWedataTaskVersionDataTaskTaskBaseAttribute

    GetWedataTaskVersionDataTaskTaskConfiguration

    GetWedataTaskVersionDataTaskTaskConfigurationTaskExtConfigurationList

    ParamKey string
    ParamValue string
    ParamKey string
    ParamValue string
    paramKey String
    paramValue String
    paramKey string
    paramValue string
    paramKey String
    paramValue String

    GetWedataTaskVersionDataTaskTaskConfigurationTaskSchedulingParameterList

    ParamKey string
    ParamValue string
    ParamKey string
    ParamValue string
    paramKey String
    paramValue String
    paramKey string
    paramValue string
    paramKey String
    paramValue String

    GetWedataTaskVersionDataTaskTaskSchedulerConfiguration

    AllowRedoType string
    CalendarId string
    CalendarName string
    CalendarOpen string
    CrontabExpression string
    CycleType string
    DownStreamDependencyConfigLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList>
    EndTime string
    EventListenerLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList>
    ExecutionEndTime string
    ExecutionStartTime string
    ExecutionTtl double
    InitStrategy string
    MaxRetryAttempts double
    ParamTaskInLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList>
    ParamTaskOutLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList>
    RetryWait double
    RunPriority double
    ScheduleRunType double
    ScheduleTimeZone string
    SelfDepend string
    StartTime string
    TaskOutputRegistryLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList>
    UpstreamDependencyConfigLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList>
    WaitExecutionTotalTtl string
    AllowRedoType string
    CalendarId string
    CalendarName string
    CalendarOpen string
    CrontabExpression string
    CycleType string
    DownStreamDependencyConfigLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList
    EndTime string
    EventListenerLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList
    ExecutionEndTime string
    ExecutionStartTime string
    ExecutionTtl float64
    InitStrategy string
    MaxRetryAttempts float64
    ParamTaskInLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList
    ParamTaskOutLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList
    RetryWait float64
    RunPriority float64
    ScheduleRunType float64
    ScheduleTimeZone string
    SelfDepend string
    StartTime string
    TaskOutputRegistryLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList
    UpstreamDependencyConfigLists []GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList
    WaitExecutionTotalTtl string
    allowRedoType String
    calendarId String
    calendarName String
    calendarOpen String
    crontabExpression String
    cycleType String
    downStreamDependencyConfigLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList>
    endTime String
    eventListenerLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList>
    executionEndTime String
    executionStartTime String
    executionTtl Double
    initStrategy String
    maxRetryAttempts Double
    paramTaskInLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList>
    paramTaskOutLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList>
    retryWait Double
    runPriority Double
    scheduleRunType Double
    scheduleTimeZone String
    selfDepend String
    startTime String
    taskOutputRegistryLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList>
    upstreamDependencyConfigLists List<GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList>
    waitExecutionTotalTtl String
    allowRedoType string
    calendarId string
    calendarName string
    calendarOpen string
    crontabExpression string
    cycleType string
    downStreamDependencyConfigLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList[]
    endTime string
    eventListenerLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList[]
    executionEndTime string
    executionStartTime string
    executionTtl number
    initStrategy string
    maxRetryAttempts number
    paramTaskInLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList[]
    paramTaskOutLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList[]
    retryWait number
    runPriority number
    scheduleRunType number
    scheduleTimeZone string
    selfDepend string
    startTime string
    taskOutputRegistryLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList[]
    upstreamDependencyConfigLists GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList[]
    waitExecutionTotalTtl string
    allow_redo_type str
    calendar_id str
    calendar_name str
    calendar_open str
    crontab_expression str
    cycle_type str
    down_stream_dependency_config_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList]
    end_time str
    event_listener_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList]
    execution_end_time str
    execution_start_time str
    execution_ttl float
    init_strategy str
    max_retry_attempts float
    param_task_in_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList]
    param_task_out_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList]
    retry_wait float
    run_priority float
    schedule_run_type float
    schedule_time_zone str
    self_depend str
    start_time str
    task_output_registry_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList]
    upstream_dependency_config_lists Sequence[GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList]
    wait_execution_total_ttl str

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigList

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationDownStreamDependencyConfigListDependencyStrategy

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerList

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationEventListenerListPropertiesList

    ParamKey string
    ParamValue string
    ParamKey string
    ParamValue string
    paramKey String
    paramValue String
    paramKey string
    paramValue string
    paramKey String
    paramValue String

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskInList

    FromParamKey string
    FromTaskId string
    ParamDesc string
    ParamKey string
    FromParamKey string
    FromTaskId string
    ParamDesc string
    ParamKey string
    fromParamKey String
    fromTaskId String
    paramDesc String
    paramKey String
    fromParamKey string
    fromTaskId string
    paramDesc string
    paramKey string
    fromParamKey String
    fromTaskId String
    paramDesc String
    paramKey String

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationParamTaskOutList

    ParamKey string
    ParamValue string
    ParamKey string
    ParamValue string
    paramKey String
    paramValue String
    paramKey string
    paramValue string
    paramKey String
    paramValue String

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationTaskOutputRegistryList

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigList

    GetWedataTaskVersionDataTaskTaskSchedulerConfigurationUpstreamDependencyConfigListDependencyStrategy

    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.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
      Meet Neo: Your AI Platform Teammate