1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. WedataIntegrationOfflineTask
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.WedataIntegrationOfflineTask

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a wedata integration_offline_task

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.WedataIntegrationOfflineTask("example", {
        cycleStep: 1,
        delayTime: 0,
        endTime: "2099-12-31 00:00:00",
        notes: "terraform example demo.",
        projectId: "1612982498218618880",
        startTime: "2023-12-31 00:00:00",
        taskAction: "2",
        taskInfo: {
            configs: [
                {
                    name: "Args",
                    value: "args",
                },
                {
                    name: "dirtyDataThreshold",
                    value: "0",
                },
                {
                    name: "concurrency",
                    value: "1",
                },
                {
                    name: "syncRateLimitUnit",
                    value: "0",
                },
            ],
            executorId: "20230313175748567418",
            extConfigs: [{
                name: "TaskAlarmRegularList",
                value: "73",
            }],
            incharge: "demo",
            offlineTaskAddEntity: {
                crontabExpression: "0 0 1 * * ?",
                cycleType: 3,
                retriable: 1,
                retryWait: 5,
                selfDepend: 1,
                tryLimit: 5,
            },
        },
        taskMode: "1",
        taskName: "tf_example",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.WedataIntegrationOfflineTask("example",
        cycle_step=1,
        delay_time=0,
        end_time="2099-12-31 00:00:00",
        notes="terraform example demo.",
        project_id="1612982498218618880",
        start_time="2023-12-31 00:00:00",
        task_action="2",
        task_info={
            "configs": [
                {
                    "name": "Args",
                    "value": "args",
                },
                {
                    "name": "dirtyDataThreshold",
                    "value": "0",
                },
                {
                    "name": "concurrency",
                    "value": "1",
                },
                {
                    "name": "syncRateLimitUnit",
                    "value": "0",
                },
            ],
            "executor_id": "20230313175748567418",
            "ext_configs": [{
                "name": "TaskAlarmRegularList",
                "value": "73",
            }],
            "incharge": "demo",
            "offline_task_add_entity": {
                "crontab_expression": "0 0 1 * * ?",
                "cycle_type": 3,
                "retriable": 1,
                "retry_wait": 5,
                "self_depend": 1,
                "try_limit": 5,
            },
        },
        task_mode="1",
        task_name="tf_example")
    
    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.NewWedataIntegrationOfflineTask(ctx, "example", &tencentcloud.WedataIntegrationOfflineTaskArgs{
    			CycleStep:  pulumi.Float64(1),
    			DelayTime:  pulumi.Float64(0),
    			EndTime:    pulumi.String("2099-12-31 00:00:00"),
    			Notes:      pulumi.String("terraform example demo."),
    			ProjectId:  pulumi.String("1612982498218618880"),
    			StartTime:  pulumi.String("2023-12-31 00:00:00"),
    			TaskAction: pulumi.String("2"),
    			TaskInfo: &tencentcloud.WedataIntegrationOfflineTaskTaskInfoArgs{
    				Configs: tencentcloud.WedataIntegrationOfflineTaskTaskInfoConfigArray{
    					&tencentcloud.WedataIntegrationOfflineTaskTaskInfoConfigArgs{
    						Name:  pulumi.String("Args"),
    						Value: pulumi.String("args"),
    					},
    					&tencentcloud.WedataIntegrationOfflineTaskTaskInfoConfigArgs{
    						Name:  pulumi.String("dirtyDataThreshold"),
    						Value: pulumi.String("0"),
    					},
    					&tencentcloud.WedataIntegrationOfflineTaskTaskInfoConfigArgs{
    						Name:  pulumi.String("concurrency"),
    						Value: pulumi.String("1"),
    					},
    					&tencentcloud.WedataIntegrationOfflineTaskTaskInfoConfigArgs{
    						Name:  pulumi.String("syncRateLimitUnit"),
    						Value: pulumi.String("0"),
    					},
    				},
    				ExecutorId: pulumi.String("20230313175748567418"),
    				ExtConfigs: tencentcloud.WedataIntegrationOfflineTaskTaskInfoExtConfigArray{
    					&tencentcloud.WedataIntegrationOfflineTaskTaskInfoExtConfigArgs{
    						Name:  pulumi.String("TaskAlarmRegularList"),
    						Value: pulumi.String("73"),
    					},
    				},
    				Incharge: pulumi.String("demo"),
    				OfflineTaskAddEntity: &tencentcloud.WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs{
    					CrontabExpression: pulumi.String("0 0 1 * * ?"),
    					CycleType:         pulumi.Float64(3),
    					Retriable:         pulumi.Float64(1),
    					RetryWait:         pulumi.Float64(5),
    					SelfDepend:        pulumi.Float64(1),
    					TryLimit:          pulumi.Float64(5),
    				},
    			},
    			TaskMode: pulumi.String("1"),
    			TaskName: pulumi.String("tf_example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Tencentcloud.WedataIntegrationOfflineTask("example", new()
        {
            CycleStep = 1,
            DelayTime = 0,
            EndTime = "2099-12-31 00:00:00",
            Notes = "terraform example demo.",
            ProjectId = "1612982498218618880",
            StartTime = "2023-12-31 00:00:00",
            TaskAction = "2",
            TaskInfo = new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoArgs
            {
                Configs = new[]
                {
                    new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoConfigArgs
                    {
                        Name = "Args",
                        Value = "args",
                    },
                    new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoConfigArgs
                    {
                        Name = "dirtyDataThreshold",
                        Value = "0",
                    },
                    new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoConfigArgs
                    {
                        Name = "concurrency",
                        Value = "1",
                    },
                    new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoConfigArgs
                    {
                        Name = "syncRateLimitUnit",
                        Value = "0",
                    },
                },
                ExecutorId = "20230313175748567418",
                ExtConfigs = new[]
                {
                    new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoExtConfigArgs
                    {
                        Name = "TaskAlarmRegularList",
                        Value = "73",
                    },
                },
                Incharge = "demo",
                OfflineTaskAddEntity = new Tencentcloud.Inputs.WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs
                {
                    CrontabExpression = "0 0 1 * * ?",
                    CycleType = 3,
                    Retriable = 1,
                    RetryWait = 5,
                    SelfDepend = 1,
                    TryLimit = 5,
                },
            },
            TaskMode = "1",
            TaskName = "tf_example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.WedataIntegrationOfflineTask;
    import com.pulumi.tencentcloud.WedataIntegrationOfflineTaskArgs;
    import com.pulumi.tencentcloud.inputs.WedataIntegrationOfflineTaskTaskInfoArgs;
    import com.pulumi.tencentcloud.inputs.WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new WedataIntegrationOfflineTask("example", WedataIntegrationOfflineTaskArgs.builder()
                .cycleStep(1)
                .delayTime(0)
                .endTime("2099-12-31 00:00:00")
                .notes("terraform example demo.")
                .projectId("1612982498218618880")
                .startTime("2023-12-31 00:00:00")
                .taskAction("2")
                .taskInfo(WedataIntegrationOfflineTaskTaskInfoArgs.builder()
                    .configs(                
                        WedataIntegrationOfflineTaskTaskInfoConfigArgs.builder()
                            .name("Args")
                            .value("args")
                            .build(),
                        WedataIntegrationOfflineTaskTaskInfoConfigArgs.builder()
                            .name("dirtyDataThreshold")
                            .value("0")
                            .build(),
                        WedataIntegrationOfflineTaskTaskInfoConfigArgs.builder()
                            .name("concurrency")
                            .value("1")
                            .build(),
                        WedataIntegrationOfflineTaskTaskInfoConfigArgs.builder()
                            .name("syncRateLimitUnit")
                            .value("0")
                            .build())
                    .executorId("20230313175748567418")
                    .extConfigs(WedataIntegrationOfflineTaskTaskInfoExtConfigArgs.builder()
                        .name("TaskAlarmRegularList")
                        .value("73")
                        .build())
                    .incharge("demo")
                    .offlineTaskAddEntity(WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs.builder()
                        .crontabExpression("0 0 1 * * ?")
                        .cycleType(3)
                        .retriable(1)
                        .retryWait(5)
                        .selfDepend(1)
                        .tryLimit(5)
                        .build())
                    .build())
                .taskMode("1")
                .taskName("tf_example")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:WedataIntegrationOfflineTask
        properties:
          cycleStep: 1
          delayTime: 0
          endTime: 2099-12-31 00:00:00
          notes: terraform example demo.
          projectId: '1612982498218618880'
          startTime: 2023-12-31 00:00:00
          taskAction: '2'
          taskInfo:
            configs:
              - name: Args
                value: args
              - name: dirtyDataThreshold
                value: '0'
              - name: concurrency
                value: '1'
              - name: syncRateLimitUnit
                value: '0'
            executorId: '20230313175748567418'
            extConfigs:
              - name: TaskAlarmRegularList
                value: '73'
            incharge: demo
            offlineTaskAddEntity:
              crontabExpression: 0 0 1 * * ?
              cycleType: 3
              retriable: 1
              retryWait: 5
              selfDepend: 1
              tryLimit: 5
          taskMode: '1'
          taskName: tf_example
    

    Create WedataIntegrationOfflineTask Resource

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

    Constructor syntax

    new WedataIntegrationOfflineTask(name: string, args: WedataIntegrationOfflineTaskArgs, opts?: CustomResourceOptions);
    @overload
    def WedataIntegrationOfflineTask(resource_name: str,
                                     args: WedataIntegrationOfflineTaskArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def WedataIntegrationOfflineTask(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     cycle_step: Optional[float] = None,
                                     delay_time: Optional[float] = None,
                                     end_time: Optional[str] = None,
                                     notes: Optional[str] = None,
                                     project_id: Optional[str] = None,
                                     start_time: Optional[str] = None,
                                     task_action: Optional[str] = None,
                                     task_info: Optional[WedataIntegrationOfflineTaskTaskInfoArgs] = None,
                                     task_mode: Optional[str] = None,
                                     task_name: Optional[str] = None,
                                     wedata_integration_offline_task_id: Optional[str] = None)
    func NewWedataIntegrationOfflineTask(ctx *Context, name string, args WedataIntegrationOfflineTaskArgs, opts ...ResourceOption) (*WedataIntegrationOfflineTask, error)
    public WedataIntegrationOfflineTask(string name, WedataIntegrationOfflineTaskArgs args, CustomResourceOptions? opts = null)
    public WedataIntegrationOfflineTask(String name, WedataIntegrationOfflineTaskArgs args)
    public WedataIntegrationOfflineTask(String name, WedataIntegrationOfflineTaskArgs args, CustomResourceOptions options)
    
    type: tencentcloud:WedataIntegrationOfflineTask
    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 WedataIntegrationOfflineTaskArgs
    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 WedataIntegrationOfflineTaskArgs
    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 WedataIntegrationOfflineTaskArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WedataIntegrationOfflineTaskArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WedataIntegrationOfflineTaskArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    CycleStep double
    Interval time of scheduling, the minimum value: 1.
    DelayTime double
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    EndTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    Notes string
    Description information.
    ProjectId string
    Project ID.
    StartTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    TaskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    TaskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    TaskName string
    Task name.
    WedataIntegrationOfflineTaskId string
    ID of the resource.
    CycleStep float64
    Interval time of scheduling, the minimum value: 1.
    DelayTime float64
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    EndTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    Notes string
    Description information.
    ProjectId string
    Project ID.
    StartTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    TaskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    TaskInfo WedataIntegrationOfflineTaskTaskInfoArgs
    Task Information.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    TaskName string
    Task name.
    WedataIntegrationOfflineTaskId string
    ID of the resource.
    cycleStep Double
    Interval time of scheduling, the minimum value: 1.
    delayTime Double
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime String
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes String
    Description information.
    projectId String
    Project ID.
    startTime String
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction String
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    taskName String
    Task name.
    wedataIntegrationOfflineTaskId String
    ID of the resource.
    cycleStep number
    Interval time of scheduling, the minimum value: 1.
    delayTime number
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes string
    Description information.
    projectId string
    Project ID.
    startTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    taskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    taskName string
    Task name.
    wedataIntegrationOfflineTaskId string
    ID of the resource.
    cycle_step float
    Interval time of scheduling, the minimum value: 1.
    delay_time float
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    end_time str
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes str
    Description information.
    project_id str
    Project ID.
    start_time str
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    task_action str
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    task_info WedataIntegrationOfflineTaskTaskInfoArgs
    Task Information.
    task_mode str
    Task display mode, 0: canvas mode, 1: form mode.
    task_name str
    Task name.
    wedata_integration_offline_task_id str
    ID of the resource.
    cycleStep Number
    Interval time of scheduling, the minimum value: 1.
    delayTime Number
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime String
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes String
    Description information.
    projectId String
    Project ID.
    startTime String
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction String
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskInfo Property Map
    Task Information.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    taskName String
    Task name.
    wedataIntegrationOfflineTaskId String
    ID of the resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Task ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    TaskId string
    Task ID.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Task ID.
    id string
    The provider-assigned unique ID for this managed resource.
    taskId string
    Task ID.
    id str
    The provider-assigned unique ID for this managed resource.
    task_id str
    Task ID.
    id String
    The provider-assigned unique ID for this managed resource.
    taskId String
    Task ID.

    Look up Existing WedataIntegrationOfflineTask Resource

    Get an existing WedataIntegrationOfflineTask 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?: WedataIntegrationOfflineTaskState, opts?: CustomResourceOptions): WedataIntegrationOfflineTask
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cycle_step: Optional[float] = None,
            delay_time: Optional[float] = None,
            end_time: Optional[str] = None,
            notes: Optional[str] = None,
            project_id: Optional[str] = None,
            start_time: Optional[str] = None,
            task_action: Optional[str] = None,
            task_id: Optional[str] = None,
            task_info: Optional[WedataIntegrationOfflineTaskTaskInfoArgs] = None,
            task_mode: Optional[str] = None,
            task_name: Optional[str] = None,
            wedata_integration_offline_task_id: Optional[str] = None) -> WedataIntegrationOfflineTask
    func GetWedataIntegrationOfflineTask(ctx *Context, name string, id IDInput, state *WedataIntegrationOfflineTaskState, opts ...ResourceOption) (*WedataIntegrationOfflineTask, error)
    public static WedataIntegrationOfflineTask Get(string name, Input<string> id, WedataIntegrationOfflineTaskState? state, CustomResourceOptions? opts = null)
    public static WedataIntegrationOfflineTask get(String name, Output<String> id, WedataIntegrationOfflineTaskState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:WedataIntegrationOfflineTask    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:
    CycleStep double
    Interval time of scheduling, the minimum value: 1.
    DelayTime double
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    EndTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    Notes string
    Description information.
    ProjectId string
    Project ID.
    StartTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    TaskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    TaskId string
    Task ID.
    TaskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    TaskName string
    Task name.
    WedataIntegrationOfflineTaskId string
    ID of the resource.
    CycleStep float64
    Interval time of scheduling, the minimum value: 1.
    DelayTime float64
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    EndTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    Notes string
    Description information.
    ProjectId string
    Project ID.
    StartTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    TaskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    TaskId string
    Task ID.
    TaskInfo WedataIntegrationOfflineTaskTaskInfoArgs
    Task Information.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    TaskName string
    Task name.
    WedataIntegrationOfflineTaskId string
    ID of the resource.
    cycleStep Double
    Interval time of scheduling, the minimum value: 1.
    delayTime Double
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime String
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes String
    Description information.
    projectId String
    Project ID.
    startTime String
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction String
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskId String
    Task ID.
    taskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    taskName String
    Task name.
    wedataIntegrationOfflineTaskId String
    ID of the resource.
    cycleStep number
    Interval time of scheduling, the minimum value: 1.
    delayTime number
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime string
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes string
    Description information.
    projectId string
    Project ID.
    startTime string
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction string
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskId string
    Task ID.
    taskInfo WedataIntegrationOfflineTaskTaskInfo
    Task Information.
    taskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    taskName string
    Task name.
    wedataIntegrationOfflineTaskId string
    ID of the resource.
    cycle_step float
    Interval time of scheduling, the minimum value: 1.
    delay_time float
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    end_time str
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes str
    Description information.
    project_id str
    Project ID.
    start_time str
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    task_action str
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    task_id str
    Task ID.
    task_info WedataIntegrationOfflineTaskTaskInfoArgs
    Task Information.
    task_mode str
    Task display mode, 0: canvas mode, 1: form mode.
    task_name str
    Task name.
    wedata_integration_offline_task_id str
    ID of the resource.
    cycleStep Number
    Interval time of scheduling, the minimum value: 1.
    delayTime Number
    Execution time, unit is minutes, only available for day/week/month/year scheduling. For example, daily scheduling is executed once every day at 02:00, and the delayTime is 120 minutes.
    endTime String
    Effective end time, the format is yyyy-MM-dd HH:mm:ss.
    notes String
    Description information.
    projectId String
    Project ID.
    startTime String
    Effective start time, the format is yyyy-MM-dd HH:mm:ss.
    taskAction String
    Scheduling configuration: flexible period configuration, only available for hourly/weekly/monthly/yearly scheduling. If the hourly task is specified to run at 0:00, 3:00 and 4:00 every day, it is 0,3,4.
    taskId String
    Task ID.
    taskInfo Property Map
    Task Information.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    taskName String
    Task name.
    wedataIntegrationOfflineTaskId String
    ID of the resource.

    Supporting Types

    WedataIntegrationOfflineTaskTaskInfo, WedataIntegrationOfflineTaskTaskInfoArgs

    AppId string
    User App Id.
    Configs List<WedataIntegrationOfflineTaskTaskInfoConfig>
    Task configuration.
    CreateTime string
    Create time.
    CreatorUin string
    Creator User ID.
    DataProxyUrls List<string>
    Data proxy url.
    ExecuteContexts List<WedataIntegrationOfflineTaskTaskInfoExecuteContext>
    Execute context.
    ExecutorGroupName string
    Executor group name.
    ExecutorId string
    Executor resource ID.
    ExtConfigs List<WedataIntegrationOfflineTaskTaskInfoExtConfig>
    Node extension configuration information.
    HasVersion bool
    Whether the task been submitted.
    InLongManagerUrl string
    InLong manager url.
    InLongManagerVersion string
    InLong manager version.
    InLongStreamId string
    InLong stream id.
    Incharge string
    Incharge user.
    InputDatasourceType string
    Input datasource type.
    InstanceVersion double
    Instance version.
    LastRunTime string
    The last time the task was run.
    Locked bool
    Whether the task been locked.
    Locker string
    User locked task.
    Mappings List<WedataIntegrationOfflineTaskTaskInfoMapping>
    Node mapping.
    NumRecordsIn double
    Number of reads.
    NumRecordsOut double
    Number of writes.
    NumRestarts double
    Times of restarts.
    OfflineTaskAddEntity WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity
    Offline task scheduling configuration.
    OperatorUin string
    Operator User ID.
    OutputDatasourceType string
    Output datasource type.
    OwnerUin string
    Owner User ID.
    ReadPhase double
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    ReaderDelay double
    Read latency.
    RunningCu double
    The amount of resources consumed by real-time task.
    ScheduleTaskId string
    Task scheduling id (job id such as oceanus or us).
    Status double
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    StopTime string
    The time the task was stopped.
    Submit bool
    Whether the task version has been submitted for operation and maintenance.
    SwitchResource double
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    SyncType double
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    TaskAlarmRegularLists List<string>
    Task alarm regular.
    TaskGroupId string
    Inlong Task Group ID.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    UpdateTime string
    Update time.
    WorkflowId string
    The workflow id to which the task belongs.
    AppId string
    User App Id.
    Configs []WedataIntegrationOfflineTaskTaskInfoConfig
    Task configuration.
    CreateTime string
    Create time.
    CreatorUin string
    Creator User ID.
    DataProxyUrls []string
    Data proxy url.
    ExecuteContexts []WedataIntegrationOfflineTaskTaskInfoExecuteContext
    Execute context.
    ExecutorGroupName string
    Executor group name.
    ExecutorId string
    Executor resource ID.
    ExtConfigs []WedataIntegrationOfflineTaskTaskInfoExtConfig
    Node extension configuration information.
    HasVersion bool
    Whether the task been submitted.
    InLongManagerUrl string
    InLong manager url.
    InLongManagerVersion string
    InLong manager version.
    InLongStreamId string
    InLong stream id.
    Incharge string
    Incharge user.
    InputDatasourceType string
    Input datasource type.
    InstanceVersion float64
    Instance version.
    LastRunTime string
    The last time the task was run.
    Locked bool
    Whether the task been locked.
    Locker string
    User locked task.
    Mappings []WedataIntegrationOfflineTaskTaskInfoMapping
    Node mapping.
    NumRecordsIn float64
    Number of reads.
    NumRecordsOut float64
    Number of writes.
    NumRestarts float64
    Times of restarts.
    OfflineTaskAddEntity WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity
    Offline task scheduling configuration.
    OperatorUin string
    Operator User ID.
    OutputDatasourceType string
    Output datasource type.
    OwnerUin string
    Owner User ID.
    ReadPhase float64
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    ReaderDelay float64
    Read latency.
    RunningCu float64
    The amount of resources consumed by real-time task.
    ScheduleTaskId string
    Task scheduling id (job id such as oceanus or us).
    Status float64
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    StopTime string
    The time the task was stopped.
    Submit bool
    Whether the task version has been submitted for operation and maintenance.
    SwitchResource float64
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    SyncType float64
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    TaskAlarmRegularLists []string
    Task alarm regular.
    TaskGroupId string
    Inlong Task Group ID.
    TaskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    UpdateTime string
    Update time.
    WorkflowId string
    The workflow id to which the task belongs.
    appId String
    User App Id.
    configs List<WedataIntegrationOfflineTaskTaskInfoConfig>
    Task configuration.
    createTime String
    Create time.
    creatorUin String
    Creator User ID.
    dataProxyUrls List<String>
    Data proxy url.
    executeContexts List<WedataIntegrationOfflineTaskTaskInfoExecuteContext>
    Execute context.
    executorGroupName String
    Executor group name.
    executorId String
    Executor resource ID.
    extConfigs List<WedataIntegrationOfflineTaskTaskInfoExtConfig>
    Node extension configuration information.
    hasVersion Boolean
    Whether the task been submitted.
    inLongManagerUrl String
    InLong manager url.
    inLongManagerVersion String
    InLong manager version.
    inLongStreamId String
    InLong stream id.
    incharge String
    Incharge user.
    inputDatasourceType String
    Input datasource type.
    instanceVersion Double
    Instance version.
    lastRunTime String
    The last time the task was run.
    locked Boolean
    Whether the task been locked.
    locker String
    User locked task.
    mappings List<WedataIntegrationOfflineTaskTaskInfoMapping>
    Node mapping.
    numRecordsIn Double
    Number of reads.
    numRecordsOut Double
    Number of writes.
    numRestarts Double
    Times of restarts.
    offlineTaskAddEntity WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity
    Offline task scheduling configuration.
    operatorUin String
    Operator User ID.
    outputDatasourceType String
    Output datasource type.
    ownerUin String
    Owner User ID.
    readPhase Double
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    readerDelay Double
    Read latency.
    runningCu Double
    The amount of resources consumed by real-time task.
    scheduleTaskId String
    Task scheduling id (job id such as oceanus or us).
    status Double
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    stopTime String
    The time the task was stopped.
    submit Boolean
    Whether the task version has been submitted for operation and maintenance.
    switchResource Double
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    syncType Double
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    taskAlarmRegularLists List<String>
    Task alarm regular.
    taskGroupId String
    Inlong Task Group ID.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    updateTime String
    Update time.
    workflowId String
    The workflow id to which the task belongs.
    appId string
    User App Id.
    configs WedataIntegrationOfflineTaskTaskInfoConfig[]
    Task configuration.
    createTime string
    Create time.
    creatorUin string
    Creator User ID.
    dataProxyUrls string[]
    Data proxy url.
    executeContexts WedataIntegrationOfflineTaskTaskInfoExecuteContext[]
    Execute context.
    executorGroupName string
    Executor group name.
    executorId string
    Executor resource ID.
    extConfigs WedataIntegrationOfflineTaskTaskInfoExtConfig[]
    Node extension configuration information.
    hasVersion boolean
    Whether the task been submitted.
    inLongManagerUrl string
    InLong manager url.
    inLongManagerVersion string
    InLong manager version.
    inLongStreamId string
    InLong stream id.
    incharge string
    Incharge user.
    inputDatasourceType string
    Input datasource type.
    instanceVersion number
    Instance version.
    lastRunTime string
    The last time the task was run.
    locked boolean
    Whether the task been locked.
    locker string
    User locked task.
    mappings WedataIntegrationOfflineTaskTaskInfoMapping[]
    Node mapping.
    numRecordsIn number
    Number of reads.
    numRecordsOut number
    Number of writes.
    numRestarts number
    Times of restarts.
    offlineTaskAddEntity WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity
    Offline task scheduling configuration.
    operatorUin string
    Operator User ID.
    outputDatasourceType string
    Output datasource type.
    ownerUin string
    Owner User ID.
    readPhase number
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    readerDelay number
    Read latency.
    runningCu number
    The amount of resources consumed by real-time task.
    scheduleTaskId string
    Task scheduling id (job id such as oceanus or us).
    status number
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    stopTime string
    The time the task was stopped.
    submit boolean
    Whether the task version has been submitted for operation and maintenance.
    switchResource number
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    syncType number
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    taskAlarmRegularLists string[]
    Task alarm regular.
    taskGroupId string
    Inlong Task Group ID.
    taskMode string
    Task display mode, 0: canvas mode, 1: form mode.
    updateTime string
    Update time.
    workflowId string
    The workflow id to which the task belongs.
    app_id str
    User App Id.
    configs Sequence[WedataIntegrationOfflineTaskTaskInfoConfig]
    Task configuration.
    create_time str
    Create time.
    creator_uin str
    Creator User ID.
    data_proxy_urls Sequence[str]
    Data proxy url.
    execute_contexts Sequence[WedataIntegrationOfflineTaskTaskInfoExecuteContext]
    Execute context.
    executor_group_name str
    Executor group name.
    executor_id str
    Executor resource ID.
    ext_configs Sequence[WedataIntegrationOfflineTaskTaskInfoExtConfig]
    Node extension configuration information.
    has_version bool
    Whether the task been submitted.
    in_long_manager_url str
    InLong manager url.
    in_long_manager_version str
    InLong manager version.
    in_long_stream_id str
    InLong stream id.
    incharge str
    Incharge user.
    input_datasource_type str
    Input datasource type.
    instance_version float
    Instance version.
    last_run_time str
    The last time the task was run.
    locked bool
    Whether the task been locked.
    locker str
    User locked task.
    mappings Sequence[WedataIntegrationOfflineTaskTaskInfoMapping]
    Node mapping.
    num_records_in float
    Number of reads.
    num_records_out float
    Number of writes.
    num_restarts float
    Times of restarts.
    offline_task_add_entity WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity
    Offline task scheduling configuration.
    operator_uin str
    Operator User ID.
    output_datasource_type str
    Output datasource type.
    owner_uin str
    Owner User ID.
    read_phase float
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    reader_delay float
    Read latency.
    running_cu float
    The amount of resources consumed by real-time task.
    schedule_task_id str
    Task scheduling id (job id such as oceanus or us).
    status float
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    stop_time str
    The time the task was stopped.
    submit bool
    Whether the task version has been submitted for operation and maintenance.
    switch_resource float
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    sync_type float
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    task_alarm_regular_lists Sequence[str]
    Task alarm regular.
    task_group_id str
    Inlong Task Group ID.
    task_mode str
    Task display mode, 0: canvas mode, 1: form mode.
    update_time str
    Update time.
    workflow_id str
    The workflow id to which the task belongs.
    appId String
    User App Id.
    configs List<Property Map>
    Task configuration.
    createTime String
    Create time.
    creatorUin String
    Creator User ID.
    dataProxyUrls List<String>
    Data proxy url.
    executeContexts List<Property Map>
    Execute context.
    executorGroupName String
    Executor group name.
    executorId String
    Executor resource ID.
    extConfigs List<Property Map>
    Node extension configuration information.
    hasVersion Boolean
    Whether the task been submitted.
    inLongManagerUrl String
    InLong manager url.
    inLongManagerVersion String
    InLong manager version.
    inLongStreamId String
    InLong stream id.
    incharge String
    Incharge user.
    inputDatasourceType String
    Input datasource type.
    instanceVersion Number
    Instance version.
    lastRunTime String
    The last time the task was run.
    locked Boolean
    Whether the task been locked.
    locker String
    User locked task.
    mappings List<Property Map>
    Node mapping.
    numRecordsIn Number
    Number of reads.
    numRecordsOut Number
    Number of writes.
    numRestarts Number
    Times of restarts.
    offlineTaskAddEntity Property Map
    Offline task scheduling configuration.
    operatorUin String
    Operator User ID.
    outputDatasourceType String
    Output datasource type.
    ownerUin String
    Owner User ID.
    readPhase Number
    Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
    readerDelay Number
    Read latency.
    runningCu Number
    The amount of resources consumed by real-time task.
    scheduleTaskId String
    Task scheduling id (job id such as oceanus or us).
    status Number
    Task status 1. Not started | Task initialization, 2. Task starting, 3. Running, 4. Paused, 5. Task stopping, 6. Stopped, 7. Execution failed, 8. deleted, 9. Locked, 404. unknown status.
    stopTime String
    The time the task was stopped.
    submit Boolean
    Whether the task version has been submitted for operation and maintenance.
    switchResource Number
    Resource tiering status, 0: in progress, 1: successful, 2: failed.
    syncType Number
    Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
    taskAlarmRegularLists List<String>
    Task alarm regular.
    taskGroupId String
    Inlong Task Group ID.
    taskMode String
    Task display mode, 0: canvas mode, 1: form mode.
    updateTime String
    Update time.
    workflowId String
    The workflow id to which the task belongs.

    WedataIntegrationOfflineTaskTaskInfoConfig, WedataIntegrationOfflineTaskTaskInfoConfigArgs

    Name string
    Configuration name.
    Value string
    Configuration value.
    Name string
    Configuration name.
    Value string
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.
    name string
    Configuration name.
    value string
    Configuration value.
    name str
    Configuration name.
    value str
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.

    WedataIntegrationOfflineTaskTaskInfoExecuteContext, WedataIntegrationOfflineTaskTaskInfoExecuteContextArgs

    Name string
    Configuration name.
    Value string
    Configuration value.
    Name string
    Configuration name.
    Value string
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.
    name string
    Configuration name.
    value string
    Configuration value.
    name str
    Configuration name.
    value str
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.

    WedataIntegrationOfflineTaskTaskInfoExtConfig, WedataIntegrationOfflineTaskTaskInfoExtConfigArgs

    Name string
    Configuration name.
    Value string
    Configuration value.
    Name string
    Configuration name.
    Value string
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.
    name string
    Configuration name.
    value string
    Configuration value.
    name str
    Configuration name.
    value str
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.

    WedataIntegrationOfflineTaskTaskInfoMapping, WedataIntegrationOfflineTaskTaskInfoMappingArgs

    extConfigs List<Property Map>
    Node extension configuration information.
    schemaMappings List<Property Map>
    Schema mapping information.
    sinkId String
    Sink node ID.
    sourceId String
    Source node ID.
    sourceSchemas List<Property Map>
    Source node schema information.

    WedataIntegrationOfflineTaskTaskInfoMappingExtConfig, WedataIntegrationOfflineTaskTaskInfoMappingExtConfigArgs

    Name string
    Configuration name.
    Value string
    Configuration value.
    Name string
    Configuration name.
    Value string
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.
    name string
    Configuration name.
    value string
    Configuration value.
    name str
    Configuration name.
    value str
    Configuration value.
    name String
    Configuration name.
    value String
    Configuration value.

    WedataIntegrationOfflineTaskTaskInfoMappingSchemaMapping, WedataIntegrationOfflineTaskTaskInfoMappingSchemaMappingArgs

    SinkSchemaId string
    Schema ID from sink node.
    SourceSchemaId string
    Schema ID from source node.
    SinkSchemaId string
    Schema ID from sink node.
    SourceSchemaId string
    Schema ID from source node.
    sinkSchemaId String
    Schema ID from sink node.
    sourceSchemaId String
    Schema ID from source node.
    sinkSchemaId string
    Schema ID from sink node.
    sourceSchemaId string
    Schema ID from source node.
    sink_schema_id str
    Schema ID from sink node.
    source_schema_id str
    Schema ID from source node.
    sinkSchemaId String
    Schema ID from sink node.
    sourceSchemaId String
    Schema ID from source node.

    WedataIntegrationOfflineTaskTaskInfoMappingSourceSchema, WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaArgs

    Id string
    Schema ID.
    Name string
    Schema name.
    Type string
    Schema type.
    Alias string
    Schema alias.
    Comment string
    Schema comment.
    Properties List<WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty>
    Schema extended attributes.
    Value string
    Schema value.
    Id string
    Schema ID.
    Name string
    Schema name.
    Type string
    Schema type.
    Alias string
    Schema alias.
    Comment string
    Schema comment.
    Properties []WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty
    Schema extended attributes.
    Value string
    Schema value.
    id String
    Schema ID.
    name String
    Schema name.
    type String
    Schema type.
    alias String
    Schema alias.
    comment String
    Schema comment.
    properties List<WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty>
    Schema extended attributes.
    value String
    Schema value.
    id string
    Schema ID.
    name string
    Schema name.
    type string
    Schema type.
    alias string
    Schema alias.
    comment string
    Schema comment.
    properties WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty[]
    Schema extended attributes.
    value string
    Schema value.
    id str
    Schema ID.
    name str
    Schema name.
    type str
    Schema type.
    alias str
    Schema alias.
    comment str
    Schema comment.
    properties Sequence[WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty]
    Schema extended attributes.
    value str
    Schema value.
    id String
    Schema ID.
    name String
    Schema name.
    type String
    Schema type.
    alias String
    Schema alias.
    comment String
    Schema comment.
    properties List<Property Map>
    Schema extended attributes.
    value String
    Schema value.

    WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaProperty, WedataIntegrationOfflineTaskTaskInfoMappingSourceSchemaPropertyArgs

    Name string
    Attributes name.
    Value string
    Attributes value.
    Name string
    Attributes name.
    Value string
    Attributes value.
    name String
    Attributes name.
    value String
    Attributes value.
    name string
    Attributes name.
    value string
    Attributes value.
    name str
    Attributes name.
    value str
    Attributes value.
    name String
    Attributes name.
    value String
    Attributes value.

    WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity, WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs

    CrontabExpression string
    Crontab expression.
    CycleType double
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    ExecutionEndTime string
    Scheduling execution end time.
    ExecutionStartTime string
    Scheduling execution start time.
    Retriable double
    Whether to retry.
    RetryWait double
    Retry waiting time, unit is minutes.
    SelfDepend double
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    TryLimit double
    Number of retries.
    CrontabExpression string
    Crontab expression.
    CycleType float64
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    ExecutionEndTime string
    Scheduling execution end time.
    ExecutionStartTime string
    Scheduling execution start time.
    Retriable float64
    Whether to retry.
    RetryWait float64
    Retry waiting time, unit is minutes.
    SelfDepend float64
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    TryLimit float64
    Number of retries.
    crontabExpression String
    Crontab expression.
    cycleType Double
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    executionEndTime String
    Scheduling execution end time.
    executionStartTime String
    Scheduling execution start time.
    retriable Double
    Whether to retry.
    retryWait Double
    Retry waiting time, unit is minutes.
    selfDepend Double
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    tryLimit Double
    Number of retries.
    crontabExpression string
    Crontab expression.
    cycleType number
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    executionEndTime string
    Scheduling execution end time.
    executionStartTime string
    Scheduling execution start time.
    retriable number
    Whether to retry.
    retryWait number
    Retry waiting time, unit is minutes.
    selfDepend number
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    tryLimit number
    Number of retries.
    crontab_expression str
    Crontab expression.
    cycle_type float
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    execution_end_time str
    Scheduling execution end time.
    execution_start_time str
    Scheduling execution start time.
    retriable float
    Whether to retry.
    retry_wait float
    Retry waiting time, unit is minutes.
    self_depend float
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    try_limit float
    Number of retries.
    crontabExpression String
    Crontab expression.
    cycleType Number
    Scheduling type, 0: crontab type, 1: minutes, 2: hours, 3: days, 4: weeks, 5: months, 6: one-time, 7: user-driven, 10: elastic period (week), 11: elastic period (month), 12: year, 13: instant trigger.
    executionEndTime String
    Scheduling execution end time.
    executionStartTime String
    Scheduling execution start time.
    retriable Number
    Whether to retry.
    retryWait Number
    Retry waiting time, unit is minutes.
    selfDepend Number
    Self-dependent rules, 1: Ordered serial one at a time, queued execution, 2: Unordered serial one at a time, not queued execution, 3: Parallel, multiple at once.
    tryLimit Number
    Number of retries.

    Import

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

    $ pulumi import tencentcloud:index/wedataIntegrationOfflineTask:WedataIntegrationOfflineTask example 1612982498218618880#20231102200955095
    

    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.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack