tencentcloud.WedataIntegrationOfflineTask
Explore with Pulumi AI
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:
- Cycle
Step double - Interval time of scheduling, the minimum value: 1.
- Delay
Time 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.
- End
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- Notes string
- Description information.
- Project
Id string - Project ID.
- Start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- Task
Action 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.
- Task
Info WedataIntegration Offline Task Task Info - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Wedata
Integration stringOffline Task Id - ID of the resource.
- Cycle
Step float64 - Interval time of scheduling, the minimum value: 1.
- Delay
Time 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.
- End
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- Notes string
- Description information.
- Project
Id string - Project ID.
- Start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- Task
Action 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.
- Task
Info WedataIntegration Offline Task Task Info Args - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Wedata
Integration stringOffline Task Id - ID of the resource.
- cycle
Step Double - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time String - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes String
- Description information.
- project
Id String - Project ID.
- start
Time String - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Info WedataIntegration Offline Task Task Info - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- wedata
Integration StringOffline Task Id - ID of the resource.
- cycle
Step number - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes string
- Description information.
- project
Id string - Project ID.
- start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Info WedataIntegration Offline Task Task Info - Task Information.
- task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- task
Name string - Task name.
- wedata
Integration stringOffline Task Id - 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 WedataIntegration Offline Task Task Info Args - Task Information.
- task_
mode str - Task display mode, 0: canvas mode, 1: form mode.
- task_
name str - Task name.
- wedata_
integration_ stroffline_ task_ id - ID of the resource.
- cycle
Step Number - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time String - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes String
- Description information.
- project
Id String - Project ID.
- start
Time String - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Info Property Map - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- wedata
Integration StringOffline Task Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the WedataIntegrationOfflineTask resource produces the following output properties:
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.
- Cycle
Step double - Interval time of scheduling, the minimum value: 1.
- Delay
Time 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.
- End
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- Notes string
- Description information.
- Project
Id string - Project ID.
- Start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- Task
Action 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.
- Task
Id string - Task ID.
- Task
Info WedataIntegration Offline Task Task Info - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Wedata
Integration stringOffline Task Id - ID of the resource.
- Cycle
Step float64 - Interval time of scheduling, the minimum value: 1.
- Delay
Time 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.
- End
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- Notes string
- Description information.
- Project
Id string - Project ID.
- Start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- Task
Action 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.
- Task
Id string - Task ID.
- Task
Info WedataIntegration Offline Task Task Info Args - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Wedata
Integration stringOffline Task Id - ID of the resource.
- cycle
Step Double - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time String - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes String
- Description information.
- project
Id String - Project ID.
- start
Time String - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Id String - Task ID.
- task
Info WedataIntegration Offline Task Task Info - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- wedata
Integration StringOffline Task Id - ID of the resource.
- cycle
Step number - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time string - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes string
- Description information.
- project
Id string - Project ID.
- start
Time string - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Id string - Task ID.
- task
Info WedataIntegration Offline Task Task Info - Task Information.
- task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- task
Name string - Task name.
- wedata
Integration stringOffline Task Id - 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 WedataIntegration Offline Task Task Info Args - Task Information.
- task_
mode str - Task display mode, 0: canvas mode, 1: form mode.
- task_
name str - Task name.
- wedata_
integration_ stroffline_ task_ id - ID of the resource.
- cycle
Step Number - Interval time of scheduling, the minimum value: 1.
- delay
Time 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.
- end
Time String - Effective end time, the format is yyyy-MM-dd HH:mm:ss.
- notes String
- Description information.
- project
Id String - Project ID.
- start
Time String - Effective start time, the format is yyyy-MM-dd HH:mm:ss.
- task
Action 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.
- task
Id String - Task ID.
- task
Info Property Map - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- wedata
Integration StringOffline Task Id - ID of the resource.
Supporting Types
WedataIntegrationOfflineTaskTaskInfo, WedataIntegrationOfflineTaskTaskInfoArgs
- App
Id string - User App Id.
- Configs
List<Wedata
Integration Offline Task Task Info Config> - Task configuration.
- Create
Time string - Create time.
- Creator
Uin string - Creator User ID.
- Data
Proxy List<string>Urls - Data proxy url.
- Execute
Contexts List<WedataIntegration Offline Task Task Info Execute Context> - Execute context.
- Executor
Group stringName - Executor group name.
- Executor
Id string - Executor resource ID.
- Ext
Configs List<WedataIntegration Offline Task Task Info Ext Config> - Node extension configuration information.
- Has
Version bool - Whether the task been submitted.
- In
Long stringManager Url - InLong manager url.
- In
Long stringManager Version - InLong manager version.
- In
Long stringStream Id - InLong stream id.
- Incharge string
- Incharge user.
- Input
Datasource stringType - Input datasource type.
- Instance
Version double - Instance version.
- Last
Run stringTime - The last time the task was run.
- Locked bool
- Whether the task been locked.
- Locker string
- User locked task.
- Mappings
List<Wedata
Integration Offline Task Task Info Mapping> - Node mapping.
- Num
Records doubleIn - Number of reads.
- Num
Records doubleOut - Number of writes.
- Num
Restarts double - Times of restarts.
- Offline
Task WedataAdd Entity Integration Offline Task Task Info Offline Task Add Entity - Offline task scheduling configuration.
- Operator
Uin string - Operator User ID.
- Output
Datasource stringType - Output datasource type.
- Owner
Uin string - Owner User ID.
- Read
Phase double - Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
- Reader
Delay double - Read latency.
- Running
Cu double - The amount of resources consumed by real-time task.
- Schedule
Task stringId - 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.
- Stop
Time string - The time the task was stopped.
- Submit bool
- Whether the task version has been submitted for operation and maintenance.
- Switch
Resource double - Resource tiering status, 0: in progress, 1: successful, 2: failed.
- Sync
Type double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Alarm List<string>Regular Lists - Task alarm regular.
- Task
Group stringId - Inlong Task Group ID.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Update
Time string - Update time.
- Workflow
Id string - The workflow id to which the task belongs.
- App
Id string - User App Id.
- Configs
[]Wedata
Integration Offline Task Task Info Config - Task configuration.
- Create
Time string - Create time.
- Creator
Uin string - Creator User ID.
- Data
Proxy []stringUrls - Data proxy url.
- Execute
Contexts []WedataIntegration Offline Task Task Info Execute Context - Execute context.
- Executor
Group stringName - Executor group name.
- Executor
Id string - Executor resource ID.
- Ext
Configs []WedataIntegration Offline Task Task Info Ext Config - Node extension configuration information.
- Has
Version bool - Whether the task been submitted.
- In
Long stringManager Url - InLong manager url.
- In
Long stringManager Version - InLong manager version.
- In
Long stringStream Id - InLong stream id.
- Incharge string
- Incharge user.
- Input
Datasource stringType - Input datasource type.
- Instance
Version float64 - Instance version.
- Last
Run stringTime - The last time the task was run.
- Locked bool
- Whether the task been locked.
- Locker string
- User locked task.
- Mappings
[]Wedata
Integration Offline Task Task Info Mapping - Node mapping.
- Num
Records float64In - Number of reads.
- Num
Records float64Out - Number of writes.
- Num
Restarts float64 - Times of restarts.
- Offline
Task WedataAdd Entity Integration Offline Task Task Info Offline Task Add Entity - Offline task scheduling configuration.
- Operator
Uin string - Operator User ID.
- Output
Datasource stringType - Output datasource type.
- Owner
Uin string - Owner User ID.
- Read
Phase float64 - Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
- Reader
Delay float64 - Read latency.
- Running
Cu float64 - The amount of resources consumed by real-time task.
- Schedule
Task stringId - 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.
- Stop
Time string - The time the task was stopped.
- Submit bool
- Whether the task version has been submitted for operation and maintenance.
- Switch
Resource float64 - Resource tiering status, 0: in progress, 1: successful, 2: failed.
- Sync
Type float64 - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Alarm []stringRegular Lists - Task alarm regular.
- Task
Group stringId - Inlong Task Group ID.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Update
Time string - Update time.
- Workflow
Id string - The workflow id to which the task belongs.
- app
Id String - User App Id.
- configs
List<Wedata
Integration Offline Task Task Info Config> - Task configuration.
- create
Time String - Create time.
- creator
Uin String - Creator User ID.
- data
Proxy List<String>Urls - Data proxy url.
- execute
Contexts List<WedataIntegration Offline Task Task Info Execute Context> - Execute context.
- executor
Group StringName - Executor group name.
- executor
Id String - Executor resource ID.
- ext
Configs List<WedataIntegration Offline Task Task Info Ext Config> - Node extension configuration information.
- has
Version Boolean - Whether the task been submitted.
- in
Long StringManager Url - InLong manager url.
- in
Long StringManager Version - InLong manager version.
- in
Long StringStream Id - InLong stream id.
- incharge String
- Incharge user.
- input
Datasource StringType - Input datasource type.
- instance
Version Double - Instance version.
- last
Run StringTime - The last time the task was run.
- locked Boolean
- Whether the task been locked.
- locker String
- User locked task.
- mappings
List<Wedata
Integration Offline Task Task Info Mapping> - Node mapping.
- num
Records DoubleIn - Number of reads.
- num
Records DoubleOut - Number of writes.
- num
Restarts Double - Times of restarts.
- offline
Task WedataAdd Entity Integration Offline Task Task Info Offline Task Add Entity - Offline task scheduling configuration.
- operator
Uin String - Operator User ID.
- output
Datasource StringType - Output datasource type.
- owner
Uin String - Owner User ID.
- read
Phase Double - Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
- reader
Delay Double - Read latency.
- running
Cu Double - The amount of resources consumed by real-time task.
- schedule
Task StringId - 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.
- stop
Time String - The time the task was stopped.
- submit Boolean
- Whether the task version has been submitted for operation and maintenance.
- switch
Resource Double - Resource tiering status, 0: in progress, 1: successful, 2: failed.
- sync
Type Double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Alarm List<String>Regular Lists - Task alarm regular.
- task
Group StringId - Inlong Task Group ID.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- update
Time String - Update time.
- workflow
Id String - The workflow id to which the task belongs.
- app
Id string - User App Id.
- configs
Wedata
Integration Offline Task Task Info Config[] - Task configuration.
- create
Time string - Create time.
- creator
Uin string - Creator User ID.
- data
Proxy string[]Urls - Data proxy url.
- execute
Contexts WedataIntegration Offline Task Task Info Execute Context[] - Execute context.
- executor
Group stringName - Executor group name.
- executor
Id string - Executor resource ID.
- ext
Configs WedataIntegration Offline Task Task Info Ext Config[] - Node extension configuration information.
- has
Version boolean - Whether the task been submitted.
- in
Long stringManager Url - InLong manager url.
- in
Long stringManager Version - InLong manager version.
- in
Long stringStream Id - InLong stream id.
- incharge string
- Incharge user.
- input
Datasource stringType - Input datasource type.
- instance
Version number - Instance version.
- last
Run stringTime - The last time the task was run.
- locked boolean
- Whether the task been locked.
- locker string
- User locked task.
- mappings
Wedata
Integration Offline Task Task Info Mapping[] - Node mapping.
- num
Records numberIn - Number of reads.
- num
Records numberOut - Number of writes.
- num
Restarts number - Times of restarts.
- offline
Task WedataAdd Entity Integration Offline Task Task Info Offline Task Add Entity - Offline task scheduling configuration.
- operator
Uin string - Operator User ID.
- output
Datasource stringType - Output datasource type.
- owner
Uin string - Owner User ID.
- read
Phase number - Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
- reader
Delay number - Read latency.
- running
Cu number - The amount of resources consumed by real-time task.
- schedule
Task stringId - 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.
- stop
Time string - The time the task was stopped.
- submit boolean
- Whether the task version has been submitted for operation and maintenance.
- switch
Resource number - Resource tiering status, 0: in progress, 1: successful, 2: failed.
- sync
Type number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Alarm string[]Regular Lists - Task alarm regular.
- task
Group stringId - Inlong Task Group ID.
- task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- update
Time string - Update time.
- workflow
Id string - The workflow id to which the task belongs.
- app_
id str - User App Id.
- configs
Sequence[Wedata
Integration Offline Task Task Info Config] - Task configuration.
- create_
time str - Create time.
- creator_
uin str - Creator User ID.
- data_
proxy_ Sequence[str]urls - Data proxy url.
- execute_
contexts Sequence[WedataIntegration Offline Task Task Info Execute Context] - Execute context.
- executor_
group_ strname - Executor group name.
- executor_
id str - Executor resource ID.
- ext_
configs Sequence[WedataIntegration Offline Task Task Info Ext Config] - Node extension configuration information.
- has_
version bool - Whether the task been submitted.
- in_
long_ strmanager_ url - InLong manager url.
- in_
long_ strmanager_ version - InLong manager version.
- in_
long_ strstream_ id - InLong stream id.
- incharge str
- Incharge user.
- input_
datasource_ strtype - Input datasource type.
- instance_
version float - Instance version.
- last_
run_ strtime - The last time the task was run.
- locked bool
- Whether the task been locked.
- locker str
- User locked task.
- mappings
Sequence[Wedata
Integration Offline Task Task Info Mapping] - Node mapping.
- num_
records_ floatin - Number of reads.
- num_
records_ floatout - Number of writes.
- num_
restarts float - Times of restarts.
- offline_
task_ Wedataadd_ entity Integration Offline Task Task Info Offline Task Add Entity - Offline task scheduling configuration.
- operator_
uin str - Operator User ID.
- output_
datasource_ strtype - 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_ strid - 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_ Sequence[str]regular_ lists - Task alarm regular.
- task_
group_ strid - 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.
- app
Id String - User App Id.
- configs List<Property Map>
- Task configuration.
- create
Time String - Create time.
- creator
Uin String - Creator User ID.
- data
Proxy List<String>Urls - Data proxy url.
- execute
Contexts List<Property Map> - Execute context.
- executor
Group StringName - Executor group name.
- executor
Id String - Executor resource ID.
- ext
Configs List<Property Map> - Node extension configuration information.
- has
Version Boolean - Whether the task been submitted.
- in
Long StringManager Url - InLong manager url.
- in
Long StringManager Version - InLong manager version.
- in
Long StringStream Id - InLong stream id.
- incharge String
- Incharge user.
- input
Datasource StringType - Input datasource type.
- instance
Version Number - Instance version.
- last
Run StringTime - 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.
- num
Records NumberIn - Number of reads.
- num
Records NumberOut - Number of writes.
- num
Restarts Number - Times of restarts.
- offline
Task Property MapAdd Entity - Offline task scheduling configuration.
- operator
Uin String - Operator User ID.
- output
Datasource StringType - Output datasource type.
- owner
Uin String - Owner User ID.
- read
Phase Number - Reading stage, 0: full amount, 1: partial full amount, 2: all incremental.
- reader
Delay Number - Read latency.
- running
Cu Number - The amount of resources consumed by real-time task.
- schedule
Task StringId - 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.
- stop
Time String - The time the task was stopped.
- submit Boolean
- Whether the task version has been submitted for operation and maintenance.
- switch
Resource Number - Resource tiering status, 0: in progress, 1: successful, 2: failed.
- sync
Type Number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Alarm List<String>Regular Lists - Task alarm regular.
- task
Group StringId - Inlong Task Group ID.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- update
Time String - Update time.
- workflow
Id String - The workflow id to which the task belongs.
WedataIntegrationOfflineTaskTaskInfoConfig, WedataIntegrationOfflineTaskTaskInfoConfigArgs
WedataIntegrationOfflineTaskTaskInfoExecuteContext, WedataIntegrationOfflineTaskTaskInfoExecuteContextArgs
WedataIntegrationOfflineTaskTaskInfoExtConfig, WedataIntegrationOfflineTaskTaskInfoExtConfigArgs
WedataIntegrationOfflineTaskTaskInfoMapping, WedataIntegrationOfflineTaskTaskInfoMappingArgs
- Ext
Configs List<WedataIntegration Offline Task Task Info Mapping Ext Config> - Node extension configuration information.
- Schema
Mappings List<WedataIntegration Offline Task Task Info Mapping Schema Mapping> - Schema mapping information.
- Sink
Id string - Sink node ID.
- Source
Id string - Source node ID.
- Source
Schemas List<WedataIntegration Offline Task Task Info Mapping Source Schema> - Source node schema information.
- Ext
Configs []WedataIntegration Offline Task Task Info Mapping Ext Config - Node extension configuration information.
- Schema
Mappings []WedataIntegration Offline Task Task Info Mapping Schema Mapping - Schema mapping information.
- Sink
Id string - Sink node ID.
- Source
Id string - Source node ID.
- Source
Schemas []WedataIntegration Offline Task Task Info Mapping Source Schema - Source node schema information.
- ext
Configs List<WedataIntegration Offline Task Task Info Mapping Ext Config> - Node extension configuration information.
- schema
Mappings List<WedataIntegration Offline Task Task Info Mapping Schema Mapping> - Schema mapping information.
- sink
Id String - Sink node ID.
- source
Id String - Source node ID.
- source
Schemas List<WedataIntegration Offline Task Task Info Mapping Source Schema> - Source node schema information.
- ext
Configs WedataIntegration Offline Task Task Info Mapping Ext Config[] - Node extension configuration information.
- schema
Mappings WedataIntegration Offline Task Task Info Mapping Schema Mapping[] - Schema mapping information.
- sink
Id string - Sink node ID.
- source
Id string - Source node ID.
- source
Schemas WedataIntegration Offline Task Task Info Mapping Source Schema[] - Source node schema information.
- ext_
configs Sequence[WedataIntegration Offline Task Task Info Mapping Ext Config] - Node extension configuration information.
- schema_
mappings Sequence[WedataIntegration Offline Task Task Info Mapping Schema Mapping] - Schema mapping information.
- sink_
id str - Sink node ID.
- source_
id str - Source node ID.
- source_
schemas Sequence[WedataIntegration Offline Task Task Info Mapping Source Schema] - Source node schema information.
- ext
Configs List<Property Map> - Node extension configuration information.
- schema
Mappings List<Property Map> - Schema mapping information.
- sink
Id String - Sink node ID.
- source
Id String - Source node ID.
- source
Schemas List<Property Map> - Source node schema information.
WedataIntegrationOfflineTaskTaskInfoMappingExtConfig, WedataIntegrationOfflineTaskTaskInfoMappingExtConfigArgs
WedataIntegrationOfflineTaskTaskInfoMappingSchemaMapping, WedataIntegrationOfflineTaskTaskInfoMappingSchemaMappingArgs
- Sink
Schema stringId - Schema ID from sink node.
- Source
Schema stringId - Schema ID from source node.
- Sink
Schema stringId - Schema ID from sink node.
- Source
Schema stringId - Schema ID from source node.
- sink
Schema StringId - Schema ID from sink node.
- source
Schema StringId - Schema ID from source node.
- sink
Schema stringId - Schema ID from sink node.
- source
Schema stringId - Schema ID from source node.
- sink_
schema_ strid - Schema ID from sink node.
- source_
schema_ strid - Schema ID from source node.
- sink
Schema StringId - Schema ID from sink node.
- source
Schema StringId - 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<Wedata
Integration Offline Task Task Info Mapping Source Schema Property> - 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
[]Wedata
Integration Offline Task Task Info Mapping Source Schema Property - 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<Wedata
Integration Offline Task Task Info Mapping Source Schema Property> - 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
Wedata
Integration Offline Task Task Info Mapping Source Schema Property[] - 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[Wedata
Integration Offline Task Task Info Mapping Source Schema Property] - 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
WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntity, WedataIntegrationOfflineTaskTaskInfoOfflineTaskAddEntityArgs
- Crontab
Expression string - Crontab expression.
- Cycle
Type 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.
- Execution
End stringTime - Scheduling execution end time.
- Execution
Start stringTime - Scheduling execution start time.
- Retriable double
- Whether to retry.
- Retry
Wait double - Retry waiting time, unit is minutes.
- Self
Depend 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.
- Try
Limit double - Number of retries.
- Crontab
Expression string - Crontab expression.
- Cycle
Type 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.
- Execution
End stringTime - Scheduling execution end time.
- Execution
Start stringTime - Scheduling execution start time.
- Retriable float64
- Whether to retry.
- Retry
Wait float64 - Retry waiting time, unit is minutes.
- Self
Depend 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.
- Try
Limit float64 - Number of retries.
- crontab
Expression String - Crontab expression.
- cycle
Type 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.
- execution
End StringTime - Scheduling execution end time.
- execution
Start StringTime - Scheduling execution start time.
- retriable Double
- Whether to retry.
- retry
Wait Double - Retry waiting time, unit is minutes.
- self
Depend 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.
- try
Limit Double - Number of retries.
- crontab
Expression string - Crontab expression.
- cycle
Type 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.
- execution
End stringTime - Scheduling execution end time.
- execution
Start stringTime - Scheduling execution start time.
- retriable number
- Whether to retry.
- retry
Wait number - Retry waiting time, unit is minutes.
- self
Depend 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.
- try
Limit 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_ strtime - Scheduling execution end time.
- execution_
start_ strtime - 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.
- crontab
Expression String - Crontab expression.
- cycle
Type 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.
- execution
End StringTime - Scheduling execution end time.
- execution
Start StringTime - Scheduling execution start time.
- retriable Number
- Whether to retry.
- retry
Wait Number - Retry waiting time, unit is minutes.
- self
Depend 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.
- try
Limit 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.