tencentcloud.WedataIntegrationRealtimeTask
Explore with Pulumi AI
Provides a resource to create a wedata integration_realtime_task
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.WedataIntegrationRealtimeTask("example", {
description: "description.",
projectId: "1612982498218618880",
syncType: 1,
taskInfo: {
configs: [
{
name: "concurrency",
value: "1",
},
{
name: "TaskManager",
value: "1",
},
{
name: "JobManager",
value: "1",
},
{
name: "TolerateDirtyData",
value: "0",
},
{
name: "CheckpointingInterval",
value: "1",
},
{
name: "CheckpointingIntervalUnit",
value: "min",
},
{
name: "RestartStrategyFixedDelayAttempts",
value: "-1",
},
{
name: "ResourceAllocationType",
value: "0",
},
{
name: "TaskAlarmRegularList",
value: "35",
},
],
executorId: "20230313175748567418",
incharge: "100028439226",
},
taskMode: "1",
taskName: "tf_example",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.WedataIntegrationRealtimeTask("example",
description="description.",
project_id="1612982498218618880",
sync_type=1,
task_info={
"configs": [
{
"name": "concurrency",
"value": "1",
},
{
"name": "TaskManager",
"value": "1",
},
{
"name": "JobManager",
"value": "1",
},
{
"name": "TolerateDirtyData",
"value": "0",
},
{
"name": "CheckpointingInterval",
"value": "1",
},
{
"name": "CheckpointingIntervalUnit",
"value": "min",
},
{
"name": "RestartStrategyFixedDelayAttempts",
"value": "-1",
},
{
"name": "ResourceAllocationType",
"value": "0",
},
{
"name": "TaskAlarmRegularList",
"value": "35",
},
],
"executor_id": "20230313175748567418",
"incharge": "100028439226",
},
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.NewWedataIntegrationRealtimeTask(ctx, "example", &tencentcloud.WedataIntegrationRealtimeTaskArgs{
Description: pulumi.String("description."),
ProjectId: pulumi.String("1612982498218618880"),
SyncType: pulumi.Float64(1),
TaskInfo: &tencentcloud.WedataIntegrationRealtimeTaskTaskInfoArgs{
Configs: tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArray{
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("concurrency"),
Value: pulumi.String("1"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("TaskManager"),
Value: pulumi.String("1"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("JobManager"),
Value: pulumi.String("1"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("TolerateDirtyData"),
Value: pulumi.String("0"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("CheckpointingInterval"),
Value: pulumi.String("1"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("CheckpointingIntervalUnit"),
Value: pulumi.String("min"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("RestartStrategyFixedDelayAttempts"),
Value: pulumi.String("-1"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("ResourceAllocationType"),
Value: pulumi.String("0"),
},
&tencentcloud.WedataIntegrationRealtimeTaskTaskInfoConfigArgs{
Name: pulumi.String("TaskAlarmRegularList"),
Value: pulumi.String("35"),
},
},
ExecutorId: pulumi.String("20230313175748567418"),
Incharge: pulumi.String("100028439226"),
},
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.WedataIntegrationRealtimeTask("example", new()
{
Description = "description.",
ProjectId = "1612982498218618880",
SyncType = 1,
TaskInfo = new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoArgs
{
Configs = new[]
{
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "concurrency",
Value = "1",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "TaskManager",
Value = "1",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "JobManager",
Value = "1",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "TolerateDirtyData",
Value = "0",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "CheckpointingInterval",
Value = "1",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "CheckpointingIntervalUnit",
Value = "min",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "RestartStrategyFixedDelayAttempts",
Value = "-1",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "ResourceAllocationType",
Value = "0",
},
new Tencentcloud.Inputs.WedataIntegrationRealtimeTaskTaskInfoConfigArgs
{
Name = "TaskAlarmRegularList",
Value = "35",
},
},
ExecutorId = "20230313175748567418",
Incharge = "100028439226",
},
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.WedataIntegrationRealtimeTask;
import com.pulumi.tencentcloud.WedataIntegrationRealtimeTaskArgs;
import com.pulumi.tencentcloud.inputs.WedataIntegrationRealtimeTaskTaskInfoArgs;
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 WedataIntegrationRealtimeTask("example", WedataIntegrationRealtimeTaskArgs.builder()
.description("description.")
.projectId("1612982498218618880")
.syncType(1)
.taskInfo(WedataIntegrationRealtimeTaskTaskInfoArgs.builder()
.configs(
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("concurrency")
.value("1")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("TaskManager")
.value("1")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("JobManager")
.value("1")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("TolerateDirtyData")
.value("0")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("CheckpointingInterval")
.value("1")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("CheckpointingIntervalUnit")
.value("min")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("RestartStrategyFixedDelayAttempts")
.value("-1")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("ResourceAllocationType")
.value("0")
.build(),
WedataIntegrationRealtimeTaskTaskInfoConfigArgs.builder()
.name("TaskAlarmRegularList")
.value("35")
.build())
.executorId("20230313175748567418")
.incharge("100028439226")
.build())
.taskMode("1")
.taskName("tf_example")
.build());
}
}
resources:
example:
type: tencentcloud:WedataIntegrationRealtimeTask
properties:
description: description.
projectId: '1612982498218618880'
syncType: 1
taskInfo:
configs:
- name: concurrency
value: '1'
- name: TaskManager
value: '1'
- name: JobManager
value: '1'
- name: TolerateDirtyData
value: '0'
- name: CheckpointingInterval
value: '1'
- name: CheckpointingIntervalUnit
value: min
- name: RestartStrategyFixedDelayAttempts
value: '-1'
- name: ResourceAllocationType
value: '0'
- name: TaskAlarmRegularList
value: '35'
executorId: '20230313175748567418'
incharge: '100028439226'
taskMode: '1'
taskName: tf_example
Create WedataIntegrationRealtimeTask Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WedataIntegrationRealtimeTask(name: string, args: WedataIntegrationRealtimeTaskArgs, opts?: CustomResourceOptions);
@overload
def WedataIntegrationRealtimeTask(resource_name: str,
args: WedataIntegrationRealtimeTaskArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WedataIntegrationRealtimeTask(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
sync_type: Optional[float] = None,
task_info: Optional[WedataIntegrationRealtimeTaskTaskInfoArgs] = None,
task_mode: Optional[str] = None,
task_name: Optional[str] = None,
description: Optional[str] = None,
wedata_integration_realtime_task_id: Optional[str] = None)
func NewWedataIntegrationRealtimeTask(ctx *Context, name string, args WedataIntegrationRealtimeTaskArgs, opts ...ResourceOption) (*WedataIntegrationRealtimeTask, error)
public WedataIntegrationRealtimeTask(string name, WedataIntegrationRealtimeTaskArgs args, CustomResourceOptions? opts = null)
public WedataIntegrationRealtimeTask(String name, WedataIntegrationRealtimeTaskArgs args)
public WedataIntegrationRealtimeTask(String name, WedataIntegrationRealtimeTaskArgs args, CustomResourceOptions options)
type: tencentcloud:WedataIntegrationRealtimeTask
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 WedataIntegrationRealtimeTaskArgs
- 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 WedataIntegrationRealtimeTaskArgs
- 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 WedataIntegrationRealtimeTaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WedataIntegrationRealtimeTaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WedataIntegrationRealtimeTaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
WedataIntegrationRealtimeTask 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 WedataIntegrationRealtimeTask resource accepts the following input properties:
- Project
Id string - Project ID.
- Sync
Type double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Info WedataIntegration Realtime Task Task Info - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Description string
- Description information.
- Wedata
Integration stringRealtime Task Id - ID of the resource.
- Project
Id string - Project ID.
- Sync
Type float64 - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Info WedataIntegration Realtime Task Task Info Args - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Description string
- Description information.
- Wedata
Integration stringRealtime Task Id - ID of the resource.
- project
Id String - Project ID.
- sync
Type Double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Info WedataIntegration Realtime Task Task Info - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- description String
- Description information.
- wedata
Integration StringRealtime Task Id - ID of the resource.
- project
Id string - Project ID.
- sync
Type number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Info WedataIntegration Realtime Task Task Info - Task Information.
- task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- task
Name string - Task name.
- description string
- Description information.
- wedata
Integration stringRealtime Task Id - ID of the resource.
- project_
id str - Project ID.
- sync_
type float - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task_
info WedataIntegration Realtime Task Task Info Args - Task Information.
- task_
mode str - Task display mode, 0: canvas mode, 1: form mode.
- task_
name str - Task name.
- description str
- Description information.
- wedata_
integration_ strrealtime_ task_ id - ID of the resource.
- project
Id String - Project ID.
- sync
Type Number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Info Property Map - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- description String
- Description information.
- wedata
Integration StringRealtime Task Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the WedataIntegrationRealtimeTask resource produces the following output properties:
Look up Existing WedataIntegrationRealtimeTask Resource
Get an existing WedataIntegrationRealtimeTask 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?: WedataIntegrationRealtimeTaskState, opts?: CustomResourceOptions): WedataIntegrationRealtimeTask
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
project_id: Optional[str] = None,
sync_type: Optional[float] = None,
task_id: Optional[str] = None,
task_info: Optional[WedataIntegrationRealtimeTaskTaskInfoArgs] = None,
task_mode: Optional[str] = None,
task_name: Optional[str] = None,
wedata_integration_realtime_task_id: Optional[str] = None) -> WedataIntegrationRealtimeTask
func GetWedataIntegrationRealtimeTask(ctx *Context, name string, id IDInput, state *WedataIntegrationRealtimeTaskState, opts ...ResourceOption) (*WedataIntegrationRealtimeTask, error)
public static WedataIntegrationRealtimeTask Get(string name, Input<string> id, WedataIntegrationRealtimeTaskState? state, CustomResourceOptions? opts = null)
public static WedataIntegrationRealtimeTask get(String name, Output<String> id, WedataIntegrationRealtimeTaskState state, CustomResourceOptions options)
resources: _: type: tencentcloud:WedataIntegrationRealtimeTask 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.
- Description string
- Description information.
- Project
Id string - Project ID.
- Sync
Type double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Id string - Task ID.
- Task
Info WedataIntegration Realtime Task Task Info - Task Information.
- Task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- Task
Name string - Task name.
- Wedata
Integration stringRealtime Task Id - ID of the resource.
- Description string
- Description information.
- Project
Id string - Project ID.
- Sync
Type float64 - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- Task
Id string - Task ID.
- Task
Info WedataIntegration Realtime 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 stringRealtime Task Id - ID of the resource.
- description String
- Description information.
- project
Id String - Project ID.
- sync
Type Double - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Id String - Task ID.
- task
Info WedataIntegration Realtime Task Task Info - Task Information.
- task
Mode String - Task display mode, 0: canvas mode, 1: form mode.
- task
Name String - Task name.
- wedata
Integration StringRealtime Task Id - ID of the resource.
- description string
- Description information.
- project
Id string - Project ID.
- sync
Type number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task
Id string - Task ID.
- task
Info WedataIntegration Realtime Task Task Info - Task Information.
- task
Mode string - Task display mode, 0: canvas mode, 1: form mode.
- task
Name string - Task name.
- wedata
Integration stringRealtime Task Id - ID of the resource.
- description str
- Description information.
- project_
id str - Project ID.
- sync_
type float - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- task_
id str - Task ID.
- task_
info WedataIntegration Realtime 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_ strrealtime_ task_ id - ID of the resource.
- description String
- Description information.
- project
Id String - Project ID.
- sync
Type Number - Synchronization type: 1. Whole database synchronization, 2. Single table synchronization.
- 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 StringRealtime Task Id - ID of the resource.
Supporting Types
WedataIntegrationRealtimeTaskTaskInfo, WedataIntegrationRealtimeTaskTaskInfoArgs
- App
Id string - User App Id.
- Configs
List<Wedata
Integration Realtime 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 Realtime Task Task Info Execute Context> - Execute context.
- Executor
Group stringName - Executor group name.
- Executor
Id string - Executor resource ID.
- Ext
Configs List<WedataIntegration Realtime 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 Realtime Task Task Info Mapping> - Node mapping.
- Nodes
List<Wedata
Integration Realtime Task Task Info Node> - Task Node Information.
- Num
Records doubleIn - Number of reads.
- Num
Records doubleOut - Number of writes.
- Num
Restarts double - Times of restarts.
- 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.
- Task
Alarm List<string>Regular Lists - Task alarm regular.
- Task
Group stringId - Inlong Task Group ID.
- 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 Realtime 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 Realtime Task Task Info Execute Context - Execute context.
- Executor
Group stringName - Executor group name.
- Executor
Id string - Executor resource ID.
- Ext
Configs []WedataIntegration Realtime 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 Realtime Task Task Info Mapping - Node mapping.
- Nodes
[]Wedata
Integration Realtime Task Task Info Node - Task Node Information.
- Num
Records float64In - Number of reads.
- Num
Records float64Out - Number of writes.
- Num
Restarts float64 - Times of restarts.
- 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.
- Task
Alarm []stringRegular Lists - Task alarm regular.
- Task
Group stringId - Inlong Task Group ID.
- 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 Realtime 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 Realtime Task Task Info Execute Context> - Execute context.
- executor
Group StringName - Executor group name.
- executor
Id String - Executor resource ID.
- ext
Configs List<WedataIntegration Realtime 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 Realtime Task Task Info Mapping> - Node mapping.
- nodes
List<Wedata
Integration Realtime Task Task Info Node> - Task Node Information.
- num
Records DoubleIn - Number of reads.
- num
Records DoubleOut - Number of writes.
- num
Restarts Double - Times of restarts.
- 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.
- task
Alarm List<String>Regular Lists - Task alarm regular.
- task
Group StringId - Inlong Task Group ID.
- 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 Realtime 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 Realtime Task Task Info Execute Context[] - Execute context.
- executor
Group stringName - Executor group name.
- executor
Id string - Executor resource ID.
- ext
Configs WedataIntegration Realtime 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 Realtime Task Task Info Mapping[] - Node mapping.
- nodes
Wedata
Integration Realtime Task Task Info Node[] - Task Node Information.
- num
Records numberIn - Number of reads.
- num
Records numberOut - Number of writes.
- num
Restarts number - Times of restarts.
- 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.
- task
Alarm string[]Regular Lists - Task alarm regular.
- task
Group stringId - Inlong Task Group ID.
- 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 Realtime 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 Realtime Task Task Info Execute Context] - Execute context.
- executor_
group_ strname - Executor group name.
- executor_
id str - Executor resource ID.
- ext_
configs Sequence[WedataIntegration Realtime 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 Realtime Task Task Info Mapping] - Node mapping.
- nodes
Sequence[Wedata
Integration Realtime Task Task Info Node] - Task Node Information.
- num_
records_ floatin - Number of reads.
- num_
records_ floatout - Number of writes.
- num_
restarts float - Times of restarts.
- 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.
- task_
alarm_ Sequence[str]regular_ lists - Task alarm regular.
- task_
group_ strid - Inlong Task Group ID.
- 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.
- nodes List<Property Map>
- Task Node Information.
- num
Records NumberIn - Number of reads.
- num
Records NumberOut - Number of writes.
- num
Restarts Number - Times of restarts.
- 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.
- task
Alarm List<String>Regular Lists - Task alarm regular.
- task
Group StringId - Inlong Task Group ID.
- update
Time String - Update time.
- workflow
Id String - The workflow id to which the task belongs.
WedataIntegrationRealtimeTaskTaskInfoConfig, WedataIntegrationRealtimeTaskTaskInfoConfigArgs
WedataIntegrationRealtimeTaskTaskInfoExecuteContext, WedataIntegrationRealtimeTaskTaskInfoExecuteContextArgs
WedataIntegrationRealtimeTaskTaskInfoExtConfig, WedataIntegrationRealtimeTaskTaskInfoExtConfigArgs
WedataIntegrationRealtimeTaskTaskInfoMapping, WedataIntegrationRealtimeTaskTaskInfoMappingArgs
- Ext
Configs List<WedataIntegration Realtime Task Task Info Mapping Ext Config> - Node extension configuration information.
- Schema
Mappings List<WedataIntegration Realtime 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 Realtime Task Task Info Mapping Source Schema> - Source node schema information.
- Ext
Configs []WedataIntegration Realtime Task Task Info Mapping Ext Config - Node extension configuration information.
- Schema
Mappings []WedataIntegration Realtime Task Task Info Mapping Schema Mapping - Schema mapping information.
- Sink
Id string - Sink node ID.
- Source
Id string - Source node ID.
- Source
Schemas []WedataIntegration Realtime Task Task Info Mapping Source Schema - Source node schema information.
- ext
Configs List<WedataIntegration Realtime Task Task Info Mapping Ext Config> - Node extension configuration information.
- schema
Mappings List<WedataIntegration Realtime 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 Realtime Task Task Info Mapping Source Schema> - Source node schema information.
- ext
Configs WedataIntegration Realtime Task Task Info Mapping Ext Config[] - Node extension configuration information.
- schema
Mappings WedataIntegration Realtime Task Task Info Mapping Schema Mapping[] - Schema mapping information.
- sink
Id string - Sink node ID.
- source
Id string - Source node ID.
- source
Schemas WedataIntegration Realtime Task Task Info Mapping Source Schema[] - Source node schema information.
- ext_
configs Sequence[WedataIntegration Realtime Task Task Info Mapping Ext Config] - Node extension configuration information.
- schema_
mappings Sequence[WedataIntegration Realtime 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 Realtime 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.
WedataIntegrationRealtimeTaskTaskInfoMappingExtConfig, WedataIntegrationRealtimeTaskTaskInfoMappingExtConfigArgs
WedataIntegrationRealtimeTaskTaskInfoMappingSchemaMapping, WedataIntegrationRealtimeTaskTaskInfoMappingSchemaMappingArgs
- 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.
WedataIntegrationRealtimeTaskTaskInfoMappingSourceSchema, WedataIntegrationRealtimeTaskTaskInfoMappingSourceSchemaArgs
- Id string
- Schema ID.
- Name string
- Schema name.
- Type string
- Schema type.
- Alias string
- Schema alias.
- Comment string
- Schema comment.
- Properties
List<Wedata
Integration Realtime 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 Realtime 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 Realtime 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 Realtime 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 Realtime 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.
WedataIntegrationRealtimeTaskTaskInfoMappingSourceSchemaProperty, WedataIntegrationRealtimeTaskTaskInfoMappingSourceSchemaPropertyArgs
WedataIntegrationRealtimeTaskTaskInfoNode, WedataIntegrationRealtimeTaskTaskInfoNodeArgs
- App
Id string - User App Id.
- Configs
List<Wedata
Integration Realtime Task Task Info Node Config> - Node configuration information.
- Create
Time string - Create time.
- Creator
Uin string - Creator User ID.
- Data
Source stringType - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- Datasource
Id string - Datasource ID.
- Description string
- Node Description.
- Ext
Configs List<WedataIntegration Realtime Task Task Info Node Ext Config> - Node extension configuration information.
- Id string
- Schema ID.
- Name string
- Schema name.
- Node
Mapping WedataIntegration Realtime Task Task Info Node Node Mapping - Node mapping.
- Node
Type string - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- Operator
Uin string - Operator User ID.
- Owner
Uin string - Owner User ID.
- Project
Id string - Project ID.
- Schemas
List<Wedata
Integration Realtime Task Task Info Node Schema> - Schema information.
- Task
Id string - The task id to which the node belongs.
- Update
Time string - Update time.
- App
Id string - User App Id.
- Configs
[]Wedata
Integration Realtime Task Task Info Node Config - Node configuration information.
- Create
Time string - Create time.
- Creator
Uin string - Creator User ID.
- Data
Source stringType - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- Datasource
Id string - Datasource ID.
- Description string
- Node Description.
- Ext
Configs []WedataIntegration Realtime Task Task Info Node Ext Config - Node extension configuration information.
- Id string
- Schema ID.
- Name string
- Schema name.
- Node
Mapping WedataIntegration Realtime Task Task Info Node Node Mapping - Node mapping.
- Node
Type string - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- Operator
Uin string - Operator User ID.
- Owner
Uin string - Owner User ID.
- Project
Id string - Project ID.
- Schemas
[]Wedata
Integration Realtime Task Task Info Node Schema - Schema information.
- Task
Id string - The task id to which the node belongs.
- Update
Time string - Update time.
- app
Id String - User App Id.
- configs
List<Wedata
Integration Realtime Task Task Info Node Config> - Node configuration information.
- create
Time String - Create time.
- creator
Uin String - Creator User ID.
- data
Source StringType - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- datasource
Id String - Datasource ID.
- description String
- Node Description.
- ext
Configs List<WedataIntegration Realtime Task Task Info Node Ext Config> - Node extension configuration information.
- id String
- Schema ID.
- name String
- Schema name.
- node
Mapping WedataIntegration Realtime Task Task Info Node Node Mapping - Node mapping.
- node
Type String - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- operator
Uin String - Operator User ID.
- owner
Uin String - Owner User ID.
- project
Id String - Project ID.
- schemas
List<Wedata
Integration Realtime Task Task Info Node Schema> - Schema information.
- task
Id String - The task id to which the node belongs.
- update
Time String - Update time.
- app
Id string - User App Id.
- configs
Wedata
Integration Realtime Task Task Info Node Config[] - Node configuration information.
- create
Time string - Create time.
- creator
Uin string - Creator User ID.
- data
Source stringType - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- datasource
Id string - Datasource ID.
- description string
- Node Description.
- ext
Configs WedataIntegration Realtime Task Task Info Node Ext Config[] - Node extension configuration information.
- id string
- Schema ID.
- name string
- Schema name.
- node
Mapping WedataIntegration Realtime Task Task Info Node Node Mapping - Node mapping.
- node
Type string - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- operator
Uin string - Operator User ID.
- owner
Uin string - Owner User ID.
- project
Id string - Project ID.
- schemas
Wedata
Integration Realtime Task Task Info Node Schema[] - Schema information.
- task
Id string - The task id to which the node belongs.
- update
Time string - Update time.
- app_
id str - User App Id.
- configs
Sequence[Wedata
Integration Realtime Task Task Info Node Config] - Node configuration information.
- create_
time str - Create time.
- creator_
uin str - Creator User ID.
- data_
source_ strtype - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- datasource_
id str - Datasource ID.
- description str
- Node Description.
- ext_
configs Sequence[WedataIntegration Realtime Task Task Info Node Ext Config] - Node extension configuration information.
- id str
- Schema ID.
- name str
- Schema name.
- node_
mapping WedataIntegration Realtime Task Task Info Node Node Mapping - Node mapping.
- node_
type str - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- operator_
uin str - Operator User ID.
- owner_
uin str - Owner User ID.
- project_
id str - Project ID.
- schemas
Sequence[Wedata
Integration Realtime Task Task Info Node Schema] - Schema information.
- task_
id str - The task id to which the node belongs.
- update_
time str - Update time.
- app
Id String - User App Id.
- configs List<Property Map>
- Node configuration information.
- create
Time String - Create time.
- creator
Uin String - Creator User ID.
- data
Source StringType - Data source type: MYSQL, POSTGRE, ORACLE, SQLSERVER, FTP, HIVE, HDFS, ICEBERG, KAFKA, HBASE, SPARK, TBASE, DB2, DM, GAUSSDB, GBASE, IMPALA, ES, S3_DATAINSIGHT, GREENPLUM, PHOENIX, SAP_HANA, SFTP, OCEANBASE, CLICKHOUSE, KUDU, VERTICA, REDIS, COS, DLC, DORIS, CKAFKA, DTS_KAFKA, S3, CDW, TDSQLC, TDSQL, MONGODB, SYBASE, REST_API, StarRocks, TCHOUSE_X.
- datasource
Id String - Datasource ID.
- description String
- Node Description.
- ext
Configs List<Property Map> - Node extension configuration information.
- id String
- Schema ID.
- name String
- Schema name.
- node
Mapping Property Map - Node mapping.
- node
Type String - Node type: INPUT,OUTPUT,JOIN,FILTER,TRANSFORM.
- operator
Uin String - Operator User ID.
- owner
Uin String - Owner User ID.
- project
Id String - Project ID.
- schemas List<Property Map>
- Schema information.
- task
Id String - The task id to which the node belongs.
- update
Time String - Update time.
WedataIntegrationRealtimeTaskTaskInfoNodeConfig, WedataIntegrationRealtimeTaskTaskInfoNodeConfigArgs
WedataIntegrationRealtimeTaskTaskInfoNodeExtConfig, WedataIntegrationRealtimeTaskTaskInfoNodeExtConfigArgs
WedataIntegrationRealtimeTaskTaskInfoNodeNodeMapping, WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingArgs
- Ext
Configs List<WedataIntegration Realtime Task Task Info Node Node Mapping Ext Config> - Node extension configuration information.
- Schema
Mappings List<WedataIntegration Realtime Task Task Info Node Node Mapping Schema Mapping> - Schema mapping information.
- Sink
Id string - Sink node ID.
- Source
Id string - Source node ID.
- Source
Schemas List<WedataIntegration Realtime Task Task Info Node Node Mapping Source Schema> - Source node schema information.
- Ext
Configs []WedataIntegration Realtime Task Task Info Node Node Mapping Ext Config - Node extension configuration information.
- Schema
Mappings []WedataIntegration Realtime Task Task Info Node Node Mapping Schema Mapping - Schema mapping information.
- Sink
Id string - Sink node ID.
- Source
Id string - Source node ID.
- Source
Schemas []WedataIntegration Realtime Task Task Info Node Node Mapping Source Schema - Source node schema information.
- ext
Configs List<WedataIntegration Realtime Task Task Info Node Node Mapping Ext Config> - Node extension configuration information.
- schema
Mappings List<WedataIntegration Realtime Task Task Info Node Node Mapping Schema Mapping> - Schema mapping information.
- sink
Id String - Sink node ID.
- source
Id String - Source node ID.
- source
Schemas List<WedataIntegration Realtime Task Task Info Node Node Mapping Source Schema> - Source node schema information.
- ext
Configs WedataIntegration Realtime Task Task Info Node Node Mapping Ext Config[] - Node extension configuration information.
- schema
Mappings WedataIntegration Realtime Task Task Info Node Node Mapping Schema Mapping[] - Schema mapping information.
- sink
Id string - Sink node ID.
- source
Id string - Source node ID.
- source
Schemas WedataIntegration Realtime Task Task Info Node Node Mapping Source Schema[] - Source node schema information.
- ext_
configs Sequence[WedataIntegration Realtime Task Task Info Node Node Mapping Ext Config] - Node extension configuration information.
- schema_
mappings Sequence[WedataIntegration Realtime Task Task Info Node Node Mapping Schema Mapping] - Schema mapping information.
- sink_
id str - Sink node ID.
- source_
id str - Source node ID.
- source_
schemas Sequence[WedataIntegration Realtime Task Task Info Node Node 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.
WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingExtConfig, WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingExtConfigArgs
WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSchemaMapping, WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSchemaMappingArgs
- 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.
WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSourceSchema, WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSourceSchemaArgs
- Id string
- Schema ID.
- Name string
- Schema name.
- Type string
- Schema type.
- Alias string
- Schema alias.
- Comment string
- Schema comment.
- Properties
List<Wedata
Integration Realtime Task Task Info Node Node 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 Realtime Task Task Info Node Node 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 Realtime Task Task Info Node Node 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 Realtime Task Task Info Node Node 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 Realtime Task Task Info Node Node 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.
WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSourceSchemaProperty, WedataIntegrationRealtimeTaskTaskInfoNodeNodeMappingSourceSchemaPropertyArgs
WedataIntegrationRealtimeTaskTaskInfoNodeSchema, WedataIntegrationRealtimeTaskTaskInfoNodeSchemaArgs
- Id string
- Schema ID.
- Name string
- Schema name.
- Type string
- Schema type.
- Alias string
- Schema alias.
- Comment string
- Schema comment.
- Properties
List<Wedata
Integration Realtime Task Task Info Node 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 Realtime Task Task Info Node 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 Realtime Task Task Info Node 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 Realtime Task Task Info Node 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 Realtime Task Task Info Node 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.
WedataIntegrationRealtimeTaskTaskInfoNodeSchemaProperty, WedataIntegrationRealtimeTaskTaskInfoNodeSchemaPropertyArgs
Import
wedata integration_realtime_task can be imported using the id, e.g.
$ pulumi import tencentcloud:index/wedataIntegrationRealtimeTask:WedataIntegrationRealtimeTask example 1776563389209296896#h9d39630a-ae45-4460-90b2-0b093cbfef5d
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.