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

tencentcloud.WedataWorkflow

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

    Provides a resource to create a wedata wedata_workflow

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const wedataWorkflow = new tencentcloud.WedataWorkflow("wedata_workflow", {
        projectId: "2905622749543821312",
        workflowName: "test",
        parentFolderPath: "/tfmika",
        workflowType: "cycle",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    wedata_workflow = tencentcloud.WedataWorkflow("wedata_workflow",
        project_id="2905622749543821312",
        workflow_name="test",
        parent_folder_path="/tfmika",
        workflow_type="cycle")
    
    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.NewWedataWorkflow(ctx, "wedata_workflow", &tencentcloud.WedataWorkflowArgs{
    			ProjectId:        pulumi.String("2905622749543821312"),
    			WorkflowName:     pulumi.String("test"),
    			ParentFolderPath: pulumi.String("/tfmika"),
    			WorkflowType:     pulumi.String("cycle"),
    		})
    		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 wedataWorkflow = new Tencentcloud.WedataWorkflow("wedata_workflow", new()
        {
            ProjectId = "2905622749543821312",
            WorkflowName = "test",
            ParentFolderPath = "/tfmika",
            WorkflowType = "cycle",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.WedataWorkflow;
    import com.pulumi.tencentcloud.WedataWorkflowArgs;
    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 wedataWorkflow = new WedataWorkflow("wedataWorkflow", WedataWorkflowArgs.builder()
                .projectId("2905622749543821312")
                .workflowName("test")
                .parentFolderPath("/tfmika")
                .workflowType("cycle")
                .build());
    
        }
    }
    
    resources:
      wedataWorkflow:
        type: tencentcloud:WedataWorkflow
        name: wedata_workflow
        properties:
          projectId: 2.9056227495438213e+18
          workflowName: test
          parentFolderPath: /tfmika
          workflowType: cycle
    

    Create WedataWorkflow Resource

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

    Constructor syntax

    new WedataWorkflow(name: string, args: WedataWorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def WedataWorkflow(resource_name: str,
                       args: WedataWorkflowArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def WedataWorkflow(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       parent_folder_path: Optional[str] = None,
                       project_id: Optional[str] = None,
                       workflow_name: Optional[str] = None,
                       bundle_id: Optional[str] = None,
                       bundle_info: Optional[str] = None,
                       owner_uin: Optional[str] = None,
                       wedata_workflow_id: Optional[str] = None,
                       workflow_desc: Optional[str] = None,
                       workflow_params: Optional[Sequence[WedataWorkflowWorkflowParamArgs]] = None,
                       workflow_scheduler_configuration: Optional[WedataWorkflowWorkflowSchedulerConfigurationArgs] = None,
                       workflow_type: Optional[str] = None)
    func NewWedataWorkflow(ctx *Context, name string, args WedataWorkflowArgs, opts ...ResourceOption) (*WedataWorkflow, error)
    public WedataWorkflow(string name, WedataWorkflowArgs args, CustomResourceOptions? opts = null)
    public WedataWorkflow(String name, WedataWorkflowArgs args)
    public WedataWorkflow(String name, WedataWorkflowArgs args, CustomResourceOptions options)
    
    type: tencentcloud:WedataWorkflow
    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 WedataWorkflowArgs
    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 WedataWorkflowArgs
    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 WedataWorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WedataWorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WedataWorkflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ParentFolderPath string
    Parent folder path.
    ProjectId string
    Project id.
    WorkflowName string
    Workflow name.
    BundleId string
    Bundle Id.
    BundleInfo string
    Bundle Information.
    OwnerUin string
    Workflow Owner ID.
    WedataWorkflowId string
    ID of the resource.
    WorkflowDesc string
    Workflow description.
    WorkflowParams List<WedataWorkflowWorkflowParam>
    workflow parameter.
    WorkflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    WorkflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    ParentFolderPath string
    Parent folder path.
    ProjectId string
    Project id.
    WorkflowName string
    Workflow name.
    BundleId string
    Bundle Id.
    BundleInfo string
    Bundle Information.
    OwnerUin string
    Workflow Owner ID.
    WedataWorkflowId string
    ID of the resource.
    WorkflowDesc string
    Workflow description.
    WorkflowParams []WedataWorkflowWorkflowParamArgs
    workflow parameter.
    WorkflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfigurationArgs
    Unified dispatch information.
    WorkflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    parentFolderPath String
    Parent folder path.
    projectId String
    Project id.
    workflowName String
    Workflow name.
    bundleId String
    Bundle Id.
    bundleInfo String
    Bundle Information.
    ownerUin String
    Workflow Owner ID.
    wedataWorkflowId String
    ID of the resource.
    workflowDesc String
    Workflow description.
    workflowParams List<WedataWorkflowWorkflowParam>
    workflow parameter.
    workflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    workflowType String
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    parentFolderPath string
    Parent folder path.
    projectId string
    Project id.
    workflowName string
    Workflow name.
    bundleId string
    Bundle Id.
    bundleInfo string
    Bundle Information.
    ownerUin string
    Workflow Owner ID.
    wedataWorkflowId string
    ID of the resource.
    workflowDesc string
    Workflow description.
    workflowParams WedataWorkflowWorkflowParam[]
    workflow parameter.
    workflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    workflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    parent_folder_path str
    Parent folder path.
    project_id str
    Project id.
    workflow_name str
    Workflow name.
    bundle_id str
    Bundle Id.
    bundle_info str
    Bundle Information.
    owner_uin str
    Workflow Owner ID.
    wedata_workflow_id str
    ID of the resource.
    workflow_desc str
    Workflow description.
    workflow_params Sequence[WedataWorkflowWorkflowParamArgs]
    workflow parameter.
    workflow_scheduler_configuration WedataWorkflowWorkflowSchedulerConfigurationArgs
    Unified dispatch information.
    workflow_type str
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    parentFolderPath String
    Parent folder path.
    projectId String
    Project id.
    workflowName String
    Workflow name.
    bundleId String
    Bundle Id.
    bundleInfo String
    Bundle Information.
    ownerUin String
    Workflow Owner ID.
    wedataWorkflowId String
    ID of the resource.
    workflowDesc String
    Workflow description.
    workflowParams List<Property Map>
    workflow parameter.
    workflowSchedulerConfiguration Property Map
    Unified dispatch information.
    workflowType String
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    WorkflowId string
    Workflow id.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkflowId string
    Workflow id.
    id String
    The provider-assigned unique ID for this managed resource.
    workflowId String
    Workflow id.
    id string
    The provider-assigned unique ID for this managed resource.
    workflowId string
    Workflow id.
    id str
    The provider-assigned unique ID for this managed resource.
    workflow_id str
    Workflow id.
    id String
    The provider-assigned unique ID for this managed resource.
    workflowId String
    Workflow id.

    Look up Existing WedataWorkflow Resource

    Get an existing WedataWorkflow 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?: WedataWorkflowState, opts?: CustomResourceOptions): WedataWorkflow
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bundle_id: Optional[str] = None,
            bundle_info: Optional[str] = None,
            owner_uin: Optional[str] = None,
            parent_folder_path: Optional[str] = None,
            project_id: Optional[str] = None,
            wedata_workflow_id: Optional[str] = None,
            workflow_desc: Optional[str] = None,
            workflow_id: Optional[str] = None,
            workflow_name: Optional[str] = None,
            workflow_params: Optional[Sequence[WedataWorkflowWorkflowParamArgs]] = None,
            workflow_scheduler_configuration: Optional[WedataWorkflowWorkflowSchedulerConfigurationArgs] = None,
            workflow_type: Optional[str] = None) -> WedataWorkflow
    func GetWedataWorkflow(ctx *Context, name string, id IDInput, state *WedataWorkflowState, opts ...ResourceOption) (*WedataWorkflow, error)
    public static WedataWorkflow Get(string name, Input<string> id, WedataWorkflowState? state, CustomResourceOptions? opts = null)
    public static WedataWorkflow get(String name, Output<String> id, WedataWorkflowState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:WedataWorkflow    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BundleId string
    Bundle Id.
    BundleInfo string
    Bundle Information.
    OwnerUin string
    Workflow Owner ID.
    ParentFolderPath string
    Parent folder path.
    ProjectId string
    Project id.
    WedataWorkflowId string
    ID of the resource.
    WorkflowDesc string
    Workflow description.
    WorkflowId string
    Workflow id.
    WorkflowName string
    Workflow name.
    WorkflowParams List<WedataWorkflowWorkflowParam>
    workflow parameter.
    WorkflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    WorkflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    BundleId string
    Bundle Id.
    BundleInfo string
    Bundle Information.
    OwnerUin string
    Workflow Owner ID.
    ParentFolderPath string
    Parent folder path.
    ProjectId string
    Project id.
    WedataWorkflowId string
    ID of the resource.
    WorkflowDesc string
    Workflow description.
    WorkflowId string
    Workflow id.
    WorkflowName string
    Workflow name.
    WorkflowParams []WedataWorkflowWorkflowParamArgs
    workflow parameter.
    WorkflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfigurationArgs
    Unified dispatch information.
    WorkflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    bundleId String
    Bundle Id.
    bundleInfo String
    Bundle Information.
    ownerUin String
    Workflow Owner ID.
    parentFolderPath String
    Parent folder path.
    projectId String
    Project id.
    wedataWorkflowId String
    ID of the resource.
    workflowDesc String
    Workflow description.
    workflowId String
    Workflow id.
    workflowName String
    Workflow name.
    workflowParams List<WedataWorkflowWorkflowParam>
    workflow parameter.
    workflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    workflowType String
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    bundleId string
    Bundle Id.
    bundleInfo string
    Bundle Information.
    ownerUin string
    Workflow Owner ID.
    parentFolderPath string
    Parent folder path.
    projectId string
    Project id.
    wedataWorkflowId string
    ID of the resource.
    workflowDesc string
    Workflow description.
    workflowId string
    Workflow id.
    workflowName string
    Workflow name.
    workflowParams WedataWorkflowWorkflowParam[]
    workflow parameter.
    workflowSchedulerConfiguration WedataWorkflowWorkflowSchedulerConfiguration
    Unified dispatch information.
    workflowType string
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    bundle_id str
    Bundle Id.
    bundle_info str
    Bundle Information.
    owner_uin str
    Workflow Owner ID.
    parent_folder_path str
    Parent folder path.
    project_id str
    Project id.
    wedata_workflow_id str
    ID of the resource.
    workflow_desc str
    Workflow description.
    workflow_id str
    Workflow id.
    workflow_name str
    Workflow name.
    workflow_params Sequence[WedataWorkflowWorkflowParamArgs]
    workflow parameter.
    workflow_scheduler_configuration WedataWorkflowWorkflowSchedulerConfigurationArgs
    Unified dispatch information.
    workflow_type str
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.
    bundleId String
    Bundle Id.
    bundleInfo String
    Bundle Information.
    ownerUin String
    Workflow Owner ID.
    parentFolderPath String
    Parent folder path.
    projectId String
    Project id.
    wedataWorkflowId String
    ID of the resource.
    workflowDesc String
    Workflow description.
    workflowId String
    Workflow id.
    workflowName String
    Workflow name.
    workflowParams List<Property Map>
    workflow parameter.
    workflowSchedulerConfiguration Property Map
    Unified dispatch information.
    workflowType String
    Workflow type, value example: cycle cycle workflow;manual manual workflow, passed in cycle by default.

    Supporting Types

    WedataWorkflowWorkflowParam, WedataWorkflowWorkflowParamArgs

    ParamKey string
    Parameter name.
    ParamValue string
    Parameter value.
    ParamKey string
    Parameter name.
    ParamValue string
    Parameter value.
    paramKey String
    Parameter name.
    paramValue String
    Parameter value.
    paramKey string
    Parameter name.
    paramValue string
    Parameter value.
    param_key str
    Parameter name.
    param_value str
    Parameter value.
    paramKey String
    Parameter name.
    paramValue String
    Parameter value.

    WedataWorkflowWorkflowSchedulerConfiguration, WedataWorkflowWorkflowSchedulerConfigurationArgs

    CrontabExpression string
    Crontab expression.
    CycleType string
    Cycle type: Supported types are 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
    End time.
    ScheduleTimeZone string
    time zone.
    SelfDepend string
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    StartTime string
    Start time.
    CalendarId string
    calendar id.
    CalendarOpen string
    Do you want to turn on calendar scheduling 1 on 0 off.
    ClearLink bool
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    DependencyWorkflow string
    Workflow dependence, yes or no.
    ExecutionEndTime string
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    ExecutionStartTime string
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    MainCyclicConfig string

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    ModifyCycleValue string
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    SubordinateCyclicConfig string

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    CrontabExpression string
    Crontab expression.
    CycleType string
    Cycle type: Supported types are 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
    End time.
    ScheduleTimeZone string
    time zone.
    SelfDepend string
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    StartTime string
    Start time.
    CalendarId string
    calendar id.
    CalendarOpen string
    Do you want to turn on calendar scheduling 1 on 0 off.
    ClearLink bool
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    DependencyWorkflow string
    Workflow dependence, yes or no.
    ExecutionEndTime string
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    ExecutionStartTime string
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    MainCyclicConfig string

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    ModifyCycleValue string
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    SubordinateCyclicConfig string

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    crontabExpression String
    Crontab expression.
    cycleType String
    Cycle type: Supported types are 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
    End time.
    scheduleTimeZone String
    time zone.
    selfDepend String
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    startTime String
    Start time.
    calendarId String
    calendar id.
    calendarOpen String
    Do you want to turn on calendar scheduling 1 on 0 off.
    clearLink Boolean
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    dependencyWorkflow String
    Workflow dependence, yes or no.
    executionEndTime String
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    executionStartTime String
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    mainCyclicConfig String

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    modifyCycleValue String
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    subordinateCyclicConfig String

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    crontabExpression string
    Crontab expression.
    cycleType string
    Cycle type: Supported types are 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
    End time.
    scheduleTimeZone string
    time zone.
    selfDepend string
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    startTime string
    Start time.
    calendarId string
    calendar id.
    calendarOpen string
    Do you want to turn on calendar scheduling 1 on 0 off.
    clearLink boolean
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    dependencyWorkflow string
    Workflow dependence, yes or no.
    executionEndTime string
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    executionStartTime string
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    mainCyclicConfig string

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    modifyCycleValue string
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    subordinateCyclicConfig string

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    crontab_expression str
    Crontab expression.
    cycle_type str
    Cycle type: Supported types are 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
    End time.
    schedule_time_zone str
    time zone.
    self_depend str
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    start_time str
    Start time.
    calendar_id str
    calendar id.
    calendar_open str
    Do you want to turn on calendar scheduling 1 on 0 off.
    clear_link bool
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    dependency_workflow str
    Workflow dependence, yes or no.
    execution_end_time str
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    execution_start_time str
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    main_cyclic_config str

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    modify_cycle_value str
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    subordinate_cyclic_config str

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    crontabExpression String
    Crontab expression.
    cycleType String
    Cycle type: Supported types are 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
    End time.
    scheduleTimeZone String
    time zone.
    selfDepend String
    Self-dependence, default value serial, values are: parallel, serial, orderly.
    startTime String
    Start time.
    calendarId String
    calendar id.
    calendarOpen String
    Do you want to turn on calendar scheduling 1 on 0 off.
    clearLink Boolean
    Workflows have cross-workflow dependencies and are scheduled using cron expressions. If you save unified scheduling, unsupported dependencies will be broken.
    dependencyWorkflow String
    Workflow dependence, yes or no.
    executionEndTime String
    Execution time right-closed interval, example: 23:59, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    executionStartTime String
    Execution time left-closed interval, example: 00:00, only if the cycle type is MINUTE_CYCLE needs to be filled in.
    mainCyclicConfig String

    Effective when ModifyCycleValue is 1, indicating the default modified upstream dependence-time dimension. The value is:

    • CRONTAB
    • DAY
    • HOUR
    • LIST_DAY
    • LIST_HOUR
    • LIST_MINUTE
    • MONTH
    • RANGE_DAY
    • RANGE_HOUR
    • RANGE_MINUTE
    • WEEK
    • YEAR

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    modifyCycleValue String
    0: Do not modify 1: Change the upstream dependency configuration of the task to the default value.
    subordinateCyclicConfig String

    Effective when ModifyCycleValue is 1, which means that the default modified upstream dependency-instance range value is:

    • ALL_DAY_OF_YEAR
    • ALL_MONTH_OF_YEAR
    • CURRENT
    • CURRENT_DAY
    • CURRENT_HOUR
    • CURRENT_MINUTE
    • CURRENT_MONTH
    • CURRENT_WEEK
    • CURRENT_YEAR
    • PREVIOUS_BEGIN_OF_MONTH
    • PREVIOUS_DAY
    • PREVIOUS_DAY_LATER_OFFSET_HOUR
    • PREVIOUS_DAY_LATER_OFFSET_MINUTE
    • PREVIOUS_END_OF_MONTH
    • PREVIOUS_FRIDAY
    • PREVIOUS_HOUR
    • PREVIOUS_HOUR_CYCLE
    • PREVIOUS_HOUR_LATER_OFFSET_MINUTE
    • PREVIOUS_MINUTE_CYCLE
    • PREVIOUS_MONTH
    • PREVIOUS_WEEK
    • PREVIOUS_WEEKEND
    • RECENT_DATE

    https://capi.woa.com/object/detail? product=wedata&env=api_dev&version=2025-08-06&name=WorkflowSchedulerConfigurationInfo.

    Import

    wedata wedata_workflow can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/wedataWorkflow:WedataWorkflow wedata_workflow wedata_workflow_id
    

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

    Package Details

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