tccli 3.0.1137.1__py2.py3-none-any.whl → 3.0.1138.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/command.py +1 -1
- tccli/help_command.py +1 -1
- tccli/services/asr/v20190614/api.json +9 -0
- tccli/services/cdwch/v20200915/api.json +1 -1
- tccli/services/ckafka/v20190819/api.json +25 -25
- tccli/services/ckafka/v20190819/examples.json +18 -18
- tccli/services/cls/v20201016/api.json +24 -5
- tccli/services/cls/v20201016/examples.json +1 -1
- tccli/services/domain/v20180808/api.json +36 -0
- tccli/services/ess/v20201111/api.json +2 -2
- tccli/services/ess/v20201111/examples.json +2 -2
- tccli/services/essbasic/v20210526/api.json +2 -2
- tccli/services/essbasic/v20210526/examples.json +2 -2
- tccli/services/iotexplorer/v20190423/api.json +11 -0
- tccli/services/redis/v20180412/api.json +23 -23
- tccli/services/ssl/v20191205/api.json +171 -5
- tccli/services/ssl/v20191205/examples.json +1 -1
- tccli/services/tdmq/v20200217/api.json +7 -5
- tccli/services/thpc/v20230321/api.json +42 -21
- tccli/services/tke/v20180525/api.json +149 -71
- tccli/services/tke/v20180525/examples.json +69 -57
- tccli/services/trtc/v20190722/api.json +1 -1
- tccli/services/tsf/v20180326/api.json +1 -1
- {tccli-3.0.1137.1.dist-info → tccli-3.0.1138.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1137.1.dist-info → tccli-3.0.1138.1.dist-info}/RECORD +29 -29
- {tccli-3.0.1137.1.dist-info → tccli-3.0.1138.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1137.1.dist-info → tccli-3.0.1138.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1137.1.dist-info → tccli-3.0.1138.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1138.1'
|
tccli/command.py
CHANGED
@@ -157,7 +157,7 @@ class ServiceCommand(BaseCommand):
|
|
157
157
|
raise Exception("Version: %s is invalid in service: %s, available versions: %s. \n"
|
158
158
|
"Please check your command or configure file to find out "
|
159
159
|
"if version setting is correct."
|
160
|
-
% (
|
160
|
+
% (version, service_name, " ".join(available_version_list)))
|
161
161
|
self._version = version
|
162
162
|
self._command_map = None
|
163
163
|
self._service_model = None
|
tccli/help_command.py
CHANGED
@@ -29,7 +29,7 @@ class BaseHelpCommand(object):
|
|
29
29
|
raise Exception("Version: %s is invalid in service: %s, available versions: %s. \n"
|
30
30
|
"Please check your command or configure file to find out "
|
31
31
|
"if version setting is correct."
|
32
|
-
% (
|
32
|
+
% (version, service_name, " ".join(available_version_list)))
|
33
33
|
self._version = version
|
34
34
|
|
35
35
|
def __call__(self, args, parsed_globals):
|
@@ -712,6 +712,15 @@
|
|
712
712
|
"name": "Extra",
|
713
713
|
"required": false,
|
714
714
|
"type": "string"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"disabled": false,
|
718
|
+
"document": "临时热词表:该参数用于提升识别准确率。\n\n- 单个热词限制:\"热词|权重\",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或“ASR|11”;\n\n- 临时热词表限制:多个热词用英文逗号分割,最多支持128个热词,如:“腾讯云|10,语音识别|5,ASR|11”;\n\n- 参数 hotword_id(热词表) 与 hotword_list(临时热词表) 区别:\n\n - hotword_id:热词表。需要先在控制台或接口创建热词表,获得对应hotword_id传入参数来使用热词功能;\n\n - hotword_list:临时热词表。每次请求时直接传入临时热词表来使用热词功能,云端不保留临时热词表。适用于有极大量热词需求的用户;\n\n注意:\n\n- 如果同时传入了 hotword_id 和 hotword_list,会优先使用 hotword_list;\n\n- 热词权重设置为11时,当前热词将升级为超级热词,建议仅将重要且必须生效的热词设置到11,设置过多权重为11的热词将影响整体字准率。\n\n- 热词权重设置为100时,当前热词开启热词增强同音替换功能(仅支持8k_zh,16k_zh),举例:热词配置“蜜制|100”时,与“蜜制”同拼音(mizhi)的“秘制”的识别结果会被强制替换成“蜜制”。因此建议客户根据自己的实际情况开启该功能。建议仅将重要且必须生效的热词设置到100,设置过多权重为100的热词将影响整体字准率。",
|
719
|
+
"example": "无",
|
720
|
+
"member": "string",
|
721
|
+
"name": "HotwordList",
|
722
|
+
"required": false,
|
723
|
+
"type": "string"
|
715
724
|
}
|
716
725
|
],
|
717
726
|
"type": "object"
|
@@ -193,7 +193,7 @@
|
|
193
193
|
"metadata": {
|
194
194
|
"apiVersion": "2020-09-15",
|
195
195
|
"api_brief": "云数据仓库 ClickHouse(CDWCH)是腾讯云提供的云上 ClickHouse 托管服务,为用户提供便捷的 ClickHouse 集群部署、软件安装、配置修改、监控告警、弹性伸缩等功能,为企业及用户提供安全稳定的大数据处理解决方案。",
|
196
|
-
"serviceNameCN": "
|
196
|
+
"serviceNameCN": "腾讯云数据仓库TCHouse-C",
|
197
197
|
"serviceShortName": "cdwch"
|
198
198
|
},
|
199
199
|
"objects": {
|
@@ -85,9 +85,9 @@
|
|
85
85
|
"status": "online"
|
86
86
|
},
|
87
87
|
"CreateDatahubTopic": {
|
88
|
-
"document": "创建
|
88
|
+
"document": "创建DIP主题",
|
89
89
|
"input": "CreateDatahubTopicRequest",
|
90
|
-
"name": "创建
|
90
|
+
"name": "创建DIP主题",
|
91
91
|
"output": "CreateDatahubTopicResponse",
|
92
92
|
"status": "online"
|
93
93
|
},
|
@@ -183,9 +183,9 @@
|
|
183
183
|
"status": "online"
|
184
184
|
},
|
185
185
|
"DeleteDatahubTask": {
|
186
|
-
"document": "删除
|
186
|
+
"document": "删除Dip任务",
|
187
187
|
"input": "DeleteDatahubTaskRequest",
|
188
|
-
"name": "删除
|
188
|
+
"name": "删除Dip任务",
|
189
189
|
"output": "DeleteDatahubTaskResponse",
|
190
190
|
"status": "online"
|
191
191
|
},
|
@@ -323,9 +323,9 @@
|
|
323
323
|
"status": "online"
|
324
324
|
},
|
325
325
|
"DescribeDatahubTopic": {
|
326
|
-
"document": "获取
|
326
|
+
"document": "获取DIP主题属性",
|
327
327
|
"input": "DescribeDatahubTopicRequest",
|
328
|
-
"name": "获取
|
328
|
+
"name": "获取DIP主题属性",
|
329
329
|
"output": "DescribeDatahubTopicResponse",
|
330
330
|
"status": "online"
|
331
331
|
},
|
@@ -526,9 +526,9 @@
|
|
526
526
|
"status": "online"
|
527
527
|
},
|
528
528
|
"ModifyDatahubTopic": {
|
529
|
-
"document": "修改
|
529
|
+
"document": "修改DIP主题属性",
|
530
530
|
"input": "ModifyDatahubTopicRequest",
|
531
|
-
"name": "修改
|
531
|
+
"name": "修改DIP主题属性",
|
532
532
|
"output": "ModifyDatahubTopicResponse",
|
533
533
|
"status": "online"
|
534
534
|
},
|
@@ -1025,7 +1025,7 @@
|
|
1025
1025
|
"example": "0",
|
1026
1026
|
"member": "int64",
|
1027
1027
|
"name": "Result",
|
1028
|
-
"
|
1028
|
+
"output_required": true,
|
1029
1029
|
"type": "int",
|
1030
1030
|
"value_allowed_null": true
|
1031
1031
|
},
|
@@ -2831,7 +2831,7 @@
|
|
2831
2831
|
"example": "1",
|
2832
2832
|
"member": "int64",
|
2833
2833
|
"name": "Result",
|
2834
|
-
"
|
2834
|
+
"output_required": true,
|
2835
2835
|
"type": "int",
|
2836
2836
|
"value_allowed_null": false
|
2837
2837
|
},
|
@@ -3311,7 +3311,7 @@
|
|
3311
3311
|
"members": [
|
3312
3312
|
{
|
3313
3313
|
"disabled": false,
|
3314
|
-
"document": "名称,是一个不超过 128
|
3314
|
+
"document": "名称,是一个不超过 128 个字符的字符串,必须以“AppId-”为首字符,剩余部分可以包含字母、数字和横划线(-)",
|
3315
3315
|
"example": "xxx",
|
3316
3316
|
"member": "string",
|
3317
3317
|
"name": "Name",
|
@@ -3366,7 +3366,7 @@
|
|
3366
3366
|
"example": "无",
|
3367
3367
|
"member": "DatahubTopicResp",
|
3368
3368
|
"name": "Result",
|
3369
|
-
"
|
3369
|
+
"output_required": true,
|
3370
3370
|
"type": "object",
|
3371
3371
|
"value_allowed_null": false
|
3372
3372
|
},
|
@@ -4247,7 +4247,7 @@
|
|
4247
4247
|
"example": "data",
|
4248
4248
|
"member": "PrometheusResult",
|
4249
4249
|
"name": "Result",
|
4250
|
-
"
|
4250
|
+
"output_required": true,
|
4251
4251
|
"type": "object",
|
4252
4252
|
"value_allowed_null": false
|
4253
4253
|
},
|
@@ -4274,7 +4274,7 @@
|
|
4274
4274
|
},
|
4275
4275
|
{
|
4276
4276
|
"disabled": false,
|
4277
|
-
"document": "路由网络类型(3:vpc路由;
|
4277
|
+
"document": "路由网络类型(3:vpc路由;7:内部支撑路由)",
|
4278
4278
|
"example": "1",
|
4279
4279
|
"member": "int64",
|
4280
4280
|
"name": "VipType",
|
@@ -4402,7 +4402,7 @@
|
|
4402
4402
|
"example": "904b75130b4b4102bdeb071a7f48523a",
|
4403
4403
|
"member": "string",
|
4404
4404
|
"name": "Result",
|
4405
|
-
"
|
4405
|
+
"output_required": true,
|
4406
4406
|
"type": "string",
|
4407
4407
|
"value_allowed_null": true
|
4408
4408
|
},
|
@@ -5515,7 +5515,7 @@
|
|
5515
5515
|
"example": "无",
|
5516
5516
|
"member": "int64",
|
5517
5517
|
"name": "Result",
|
5518
|
-
"
|
5518
|
+
"output_required": true,
|
5519
5519
|
"type": "int",
|
5520
5520
|
"value_allowed_null": false
|
5521
5521
|
},
|
@@ -5552,7 +5552,7 @@
|
|
5552
5552
|
"example": "xxx",
|
5553
5553
|
"member": "ConnectResourceResourceIdResp",
|
5554
5554
|
"name": "Result",
|
5555
|
-
"
|
5555
|
+
"output_required": true,
|
5556
5556
|
"type": "object",
|
5557
5557
|
"value_allowed_null": false
|
5558
5558
|
},
|
@@ -5589,7 +5589,7 @@
|
|
5589
5589
|
"example": "xxx",
|
5590
5590
|
"member": "DatahubTaskIdRes",
|
5591
5591
|
"name": "Result",
|
5592
|
-
"
|
5592
|
+
"output_required": true,
|
5593
5593
|
"type": "object",
|
5594
5594
|
"value_allowed_null": true
|
5595
5595
|
},
|
@@ -6736,7 +6736,7 @@
|
|
6736
6736
|
"example": "xxx",
|
6737
6737
|
"member": "DescribeConnectResourceResp",
|
6738
6738
|
"name": "Result",
|
6739
|
-
"
|
6739
|
+
"output_required": true,
|
6740
6740
|
"type": "object",
|
6741
6741
|
"value_allowed_null": true
|
6742
6742
|
},
|
@@ -6981,7 +6981,7 @@
|
|
6981
6981
|
"example": "无",
|
6982
6982
|
"member": "GroupOffsetResponse",
|
6983
6983
|
"name": "Result",
|
6984
|
-
"
|
6984
|
+
"output_required": true,
|
6985
6985
|
"type": "object",
|
6986
6986
|
"value_allowed_null": false
|
6987
6987
|
},
|
@@ -7174,7 +7174,7 @@
|
|
7174
7174
|
"example": "xxx",
|
7175
7175
|
"member": "DescribeDatahubTaskRes",
|
7176
7176
|
"name": "Result",
|
7177
|
-
"
|
7177
|
+
"output_required": true,
|
7178
7178
|
"type": "object",
|
7179
7179
|
"value_allowed_null": false
|
7180
7180
|
},
|
@@ -7434,7 +7434,7 @@
|
|
7434
7434
|
"example": "无",
|
7435
7435
|
"member": "DescribeDatahubTopicResp",
|
7436
7436
|
"name": "Result",
|
7437
|
-
"
|
7437
|
+
"output_required": true,
|
7438
7438
|
"type": "object",
|
7439
7439
|
"value_allowed_null": false
|
7440
7440
|
},
|
@@ -9938,7 +9938,7 @@
|
|
9938
9938
|
"example": "无",
|
9939
9939
|
"member": "ConsumerRecord",
|
9940
9940
|
"name": "Result",
|
9941
|
-
"
|
9941
|
+
"output_required": true,
|
9942
9942
|
"type": "list",
|
9943
9943
|
"value_allowed_null": false
|
9944
9944
|
},
|
@@ -12974,7 +12974,7 @@
|
|
12974
12974
|
"example": "xxx",
|
12975
12975
|
"member": "DatahubTaskIdRes",
|
12976
12976
|
"name": "Result",
|
12977
|
-
"
|
12977
|
+
"output_required": true,
|
12978
12978
|
"type": "object",
|
12979
12979
|
"value_allowed_null": true
|
12980
12980
|
},
|
@@ -13038,7 +13038,7 @@
|
|
13038
13038
|
"example": "无",
|
13039
13039
|
"member": "JgwOperateResponse",
|
13040
13040
|
"name": "Result",
|
13041
|
-
"
|
13041
|
+
"output_required": true,
|
13042
13042
|
"type": "object",
|
13043
13043
|
"value_allowed_null": false
|
13044
13044
|
},
|
@@ -123,8 +123,8 @@
|
|
123
123
|
"CreateDatahubTopic": [
|
124
124
|
{
|
125
125
|
"document": "",
|
126
|
-
"input": "
|
127
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"TopicName\": \"
|
126
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDatahubTopic\n<公共请求参数>\n\n{\n \"Name\": \"12345-test\",\n \"PartitionNum\": \"1\",\n \"RetentionMs\": \"3600000\"\n}",
|
127
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"TopicName\": \"abc\",\n \"TopicId\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
|
128
128
|
"title": "创建主题"
|
129
129
|
}
|
130
130
|
],
|
@@ -181,8 +181,8 @@
|
|
181
181
|
"CreatePrometheus": [
|
182
182
|
{
|
183
183
|
"document": "",
|
184
|
-
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreatePrometheus\n<公共请求参数>\n\n{\n \"InstanceId\": \"
|
185
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"
|
184
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreatePrometheus\n<公共请求参数>\n\n{\n \"InstanceId\": \"abc\",\n \"VpcId\": \"abc\",\n \"SubnetId\": \"abc\"\n}",
|
185
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ReturnCode\": \"abc\",\n \"ReturnMessage\": \"abc\",\n \"Data\": {\n \"FlowId\": 0,\n \"RouteDTO\": {\n \"RouteId\": 0\n }\n }\n },\n \"RequestId\": \"abc\"\n }\n}",
|
186
186
|
"title": "打通普罗米修斯监控"
|
187
187
|
}
|
188
188
|
],
|
@@ -246,15 +246,15 @@
|
|
246
246
|
{
|
247
247
|
"document": "",
|
248
248
|
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteConnectResource\n<公共请求参数>\n\n{\n \"ResourceId\": \"reource-xxx\"\n}",
|
249
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"ResourceId\": \"
|
249
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ResourceId\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
|
250
250
|
"title": "删除Datahub连接源"
|
251
251
|
}
|
252
252
|
],
|
253
253
|
"DeleteDatahubTask": [
|
254
254
|
{
|
255
255
|
"document": "",
|
256
|
-
"input": "
|
257
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"TaskId\": \"
|
256
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteDatahubTask\n<公共请求参数>\n\n{\n \"TaskId\": \"abc\"\n}",
|
257
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"TaskId\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
|
258
258
|
"title": "删除Datahub任务"
|
259
259
|
}
|
260
260
|
],
|
@@ -366,7 +366,7 @@
|
|
366
366
|
{
|
367
367
|
"document": "",
|
368
368
|
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeConnectResource\n<公共请求参数>\n\n{\n \"ResourceId\": \"reource-xxx\"\n}",
|
369
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"
|
369
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ResourceId\": \"abc\",\n \"ResourceName\": \"abc\",\n \"Description\": \"abc\",\n \"Type\": \"abc\",\n \"Status\": 0,\n \"CreateTime\": \"abc\",\n \"ErrorMessage\": \"abc\",\n \"CurrentStep\": \"abc\",\n \"StepList\": [\n \"abc\"\n ],\n \"MySQLConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"IsUpdate\": true,\n \"ClusterId\": \"abc\",\n \"SelfBuilt\": true\n },\n \"PostgreSQLConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"ClusterId\": \"abc\",\n \"IsUpdate\": true,\n \"SelfBuilt\": true\n },\n \"DtsConnectParam\": {\n \"Port\": 0,\n \"GroupId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"IsUpdate\": true,\n \"Topic\": \"abc\"\n },\n \"MongoDBConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"IsUpdate\": true\n },\n \"EsConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"IsUpdate\": true\n },\n \"ClickHouseConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"IsUpdate\": true\n },\n \"MariaDBConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"IsUpdate\": true\n },\n \"SQLServerConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"IsUpdate\": true\n },\n \"CtsdbConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\"\n },\n \"DorisConnectParam\": {\n \"Port\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"IsUpdate\": true,\n \"SelfBuilt\": true,\n \"BePort\": 0\n },\n \"KafkaConnectParam\": {\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"IsUpdate\": true,\n \"BrokerAddress\": \"abc\",\n \"Region\": \"abc\"\n },\n \"MqttConnectParam\": {\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Resource\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"SelfBuilt\": true,\n \"IsUpdate\": true,\n \"Region\": \"abc\"\n }\n },\n \"RequestId\": \"abc\"\n }\n}",
|
370
370
|
"title": "查询Datahub连接源"
|
371
371
|
}
|
372
372
|
],
|
@@ -389,7 +389,7 @@
|
|
389
389
|
"DescribeDatahubGroupOffsets": [
|
390
390
|
{
|
391
391
|
"document": "",
|
392
|
-
"input": "
|
392
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatahubGroupOffsets\n<公共请求参数>\n\n{\n \"Group\": \"\\\"group\\\"\",\n \"Name\": \"xxx\"\n}",
|
393
393
|
"output": "{\n \"Response\": {\n \"Result\": {\n \"TotalCount\": 1,\n \"TopicList\": [\n {\n \"Topic\": \"test\",\n \"Partitions\": [\n {\n \"Partition\": 0,\n \"Offset\": 22689638,\n \"Metadata\": \"\",\n \"ErrorCode\": 0,\n \"LogEndOffset\": 207927929,\n \"Lag\": 185238291\n }\n ]\n }\n ]\n },\n \"RequestId\": \"fd9afa97-cc0f-4ea7-9da8-63914a0877e1\"\n }\n}",
|
394
394
|
"title": "获取消费分组offset"
|
395
395
|
}
|
@@ -397,8 +397,8 @@
|
|
397
397
|
"DescribeDatahubTask": [
|
398
398
|
{
|
399
399
|
"document": "",
|
400
|
-
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatahubTask\n<公共请求参数>\n\n{\n \"TaskId\": \"
|
401
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"Status\": 0,\n \"TransformsParam\": {\n \"KeepMetadata\": true,\n \"OutputFormat\": \"xx\",\n \"SourceType\": \"xx\",\n \"FilterParam\": [\n {\n \"MatchMode\": \"xx\",\n \"Type\": \"xx\",\n \"Value\": \"xx\",\n \"Key\": \"xx\"\n }\n ],\n \"FailureParam\": {\n \"RetryInterval\": 1,\n \"TopicParam\": {\n \"TopicId\": \"xx\",\n \"OffsetType\": \"xx\",\n \"Resource\": \"xx\",\n \"StartTime\": 1\n },\n \"KafkaParam\": {\n \"TopicId\": \"xx\",\n \"Resource\": \"xx\",\n \"PartitionNum\": 0,\n \"QpsLimit\": 1,\n \"EnableToleration\": true,\n \"SelfBuilt\": true,\n \"Topic\": \"xx\",\n \"OffsetType\": \"xx\",\n \"StartTime\": 1,\n \"UseTableMapping\": true,\n \"ResourceName\": \"xx\",\n \"ZoneId\": 0,\n \"TableMappings\": [\n {\n \"Topic\": \"xx\",\n \"Table\": \"xx\",\n \"TopicId\": \"xx\",\n \"Database\": \"xx\"\n }\n ]\n },\n \"MaxRetryAttempts\": 1,\n \"Type\": \"xx\",\n \"DlqType\": \"xx\"\n },\n \"Content\": \"xx\",\n \"Result\": \"xx\",\n \"FieldChain\": [\n {\n \"AnalyseJsonResult\": \"xx\",\n \"SecondaryAnalyseJsonResult\": \"xx\",\n \"Analyse\": {\n \"Regex\": \"xx\",\n \"InputValueType\": \"xx\",\n \"InputValue\": \"xx\",\n \"Format\": \"xx\"\n },\n \"SMT\": [\n {\n \"ValueOperates\": [\n {\n \"Result\": \"xx\",\n \"Replace\": {\n \"NewValue\": \"xx\",\n \"OldValue\": \"xx\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Split\": {\n \"Regex\": \"xx\"\n },\n \"KV\": {\n \"Regex\": \"xx\",\n \"KeepOriginalKey\": \"xx\",\n \"Delimiter\": \"xx\"\n },\n \"Date\": {\n \"TargetType\": \"xx\",\n \"TimeZone\": \"xx\",\n \"Format\": \"xx\"\n },\n \"Type\": \"xx\",\n \"RegexReplace\": {\n \"Regex\": \"xx\",\n \"NewValue\": \"xx\"\n }\n }\n ],\n \"Value\": \"xx\",\n \"SchemeType\": \"xx\",\n \"OriginalValue\": \"xx\",\n \"Key\": \"xx\",\n \"Operate\": \"xx\",\n \"ValueOperate\": {\n \"Result\": \"xx\",\n \"Replace\": {\n \"NewValue\": \"xx\",\n \"OldValue\": \"xx\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Split\": {\n \"Regex\": \"xx\"\n },\n \"KV\": {\n \"Regex\": \"xx\",\n \"KeepOriginalKey\": \"xx\",\n \"Delimiter\": \"xx\"\n },\n \"Date\": {\n \"TargetType\": \"xx\",\n \"TimeZone\": \"xx\",\n \"Format\": \"xx\"\n },\n \"Type\": \"xx\",\n \"RegexReplace\": {\n \"Regex\": \"xx\",\n \"NewValue\": \"xx\"\n }\n }\n }\n ],\n \"SecondaryAnalyseResult\": [\n {\n \"ValueOperates\": [\n {\n \"Result\": \"xx\",\n \"Replace\": {\n \"NewValue\": \"xx\",\n \"OldValue\": \"xx\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Split\": {\n \"Regex\": \"xx\"\n },\n \"KV\": {\n \"Regex\": \"xx\",\n \"KeepOriginalKey\": \"xx\",\n \"Delimiter\": \"xx\"\n },\n \"Date\": {\n \"TargetType\": \"xx\",\n \"TimeZone\": \"xx\",\n \"Format\": \"xx\"\n },\n \"Type\": \"xx\",\n \"RegexReplace\": {\n \"Regex\": \"xx\",\n \"NewValue\": \"xx\"\n }\n }\n ],\n \"Value\": \"xx\",\n \"SchemeType\": \"xx\",\n \"OriginalValue\": \"xx\",\n \"Key\": \"xx\",\n \"Operate\": \"xx\"\n }\n ],\n \"SecondaryAnalyse\": {\n \"Regex\": \"xx\"\n },\n \"Result\": \"xx\",\n \"AnalyseResult\": [\n {\n \"OriginalValue\": \"xx\",\n \"Operate\": \"xx\",\n \"Value\": \"xx\",\n \"Key\": \"xx\",\n \"SchemeType\": \"xx\"\n }\n ]\n }\n ],\n \"RowParam\": {\n \"RowContent\": \"xx\",\n \"KeyValueDelimiter\": \"xx\",\n \"EntryDelimiter\": \"xx\"\n }\n },\n \"Tags\": [\n {\n \"TagKey\": \"xx\",\n \"TagValue\": \"xx\"\n }\n ],\n \"SchemaId\": \"xx\",\n \"ErrorMessage\": \"xx\",\n \"TargetResource\": {\n \"EventBusParam\": {\n \"Resource\": \"xx\",\n \"FunctionName\": \"xx\",\n \"Namespace\": \"xx\",\n \"SelfBuilt\": true,\n \"Type\": \"xx\",\n \"Qualifier\": \"xx\"\n },\n \"ClickHouseParam\": {\n \"UserName\": \"xx\",\n \"Resource\": \"xx\",\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsTopicId\": \"xx\",\n \"DropClsRegion\": \"xx\",\n \"DropClsLogSet\": \"xx\",\n \"DropClsOwneruin\": \"xx\"\n },\n \"UniqVpcId\": \"xx\",\n \"Database\": \"xx\",\n \"Ip\": \"xx\",\n \"DropInvalidMessage\": true,\n \"SelfBuilt\": true,\n \"Cluster\": \"xx\",\n \"ServiceVip\": \"xx\",\n \"Table\": \"xx\",\n \"Password\": \"xx\",\n \"Type\": \"xx\",\n \"Port\": 0,\n \"Schema\": [\n {\n \"ColumnName\": \"xx\",\n \"Type\": \"xx\",\n \"JsonKey\": \"xx\",\n \"AllowNull\": true\n }\n ]\n },\n \"CtsdbParam\": {\n \"Resource\": \"xx\",\n \"CtsdbMetric\": \"xx\"\n },\n \"TdwParam\": {\n \"Tid\": \"xx\",\n \"Bid\": \"xx\",\n \"TdwHost\": \"xx\",\n \"IsDomestic\": true,\n \"TdwPort\": 0\n },\n \"MySQLParam\": {\n \"OutputFormat\": \"xx\",\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsTopicId\": \"xx\",\n \"DropClsRegion\": \"xx\",\n \"DropClsLogSet\": \"xx\",\n \"DropClsOwneruin\": \"xx\"\n },\n \"DataSourceIncrementMode\": \"xx\",\n \"DataSourceMonitorMode\": \"xx\",\n \"IncludeContentChanges\": \"xx\",\n \"DataTargetPrimaryKeyField\": \"xx\",\n \"TopicReplacement\": \"xx\",\n \"TopicRegex\": \"xx\",\n \"DataTargetInsertMode\": \"xx\",\n \"DataSourceIncrementColumn\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"DdlTopic\": \"xx\",\n \"IncludeQuery\": true,\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"xx\",\n \"ColumnName\": \"xx\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"xx\",\n \"ExtraInfo\": \"xx\",\n \"AllowNull\": true,\n \"ColumnSize\": \"xx\",\n \"Type\": \"xx\",\n \"DecimalDigits\": \"xx\"\n }\n ],\n \"DataSourceMonitorResource\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"RecordWithSchema\": true,\n \"DropInvalidMessage\": true,\n \"SnapshotMode\": \"xx\",\n \"IsTablePrefix\": true,\n \"Table\": \"xx\",\n \"DataSourceStartFrom\": \"xx\"\n },\n \"CosParam\": {\n \"FormatOutputType\": \"xx\",\n \"DirectoryTimeFormat\": \"xx\",\n \"ObjectKey\": \"xx\",\n \"BucketName\": \"xx\",\n \"AggregateBatchSize\": 1,\n \"ObjectKeyPrefix\": \"xx\",\n \"Region\": \"xx\",\n \"AggregateInterval\": 1\n },\n \"TopicParam\": {\n \"TopicId\": \"xx\",\n \"OffsetType\": \"xx\",\n \"Resource\": \"xx\",\n \"StartTime\": 1\n },\n \"KafkaParam\": {\n \"TopicId\": \"xx\",\n \"Resource\": \"xx\",\n \"PartitionNum\": 0,\n \"QpsLimit\": 1,\n \"EnableToleration\": true,\n \"SelfBuilt\": true,\n \"Topic\": \"xx\",\n \"OffsetType\": \"xx\",\n \"StartTime\": 1,\n \"UseTableMapping\": true,\n \"ResourceName\": \"xx\",\n \"ZoneId\": 0,\n \"TableMappings\": [\n {\n \"Topic\": \"xx\",\n \"Table\": \"xx\",\n \"TopicId\": \"xx\",\n \"Database\": \"xx\"\n }\n ]\n },\n \"EsParam\": {\n \"UserName\": \"xx\",\n \"Index\": \"xx\",\n \"Resource\": \"xx\",\n \"IndexType\": \"xx\",\n \"UniqVpcId\": \"xx\",\n \"DropInvalidMessage\": true,\n \"DateFormat\": \"xx\",\n \"SelfBuilt\": true,\n \"DropInvalidJsonMessage\": true,\n \"ServiceVip\": \"xx\",\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsTopicId\": \"xx\",\n \"DropClsRegion\": \"xx\",\n \"DropClsLogSet\": \"xx\",\n \"DropClsOwneruin\": \"xx\"\n },\n \"Password\": \"xx\",\n \"Port\": 0,\n \"DatabasePrimaryKey\": \"xx\",\n \"ContentKey\": \"xx\",\n \"DocumentIdField\": \"xx\"\n },\n \"DtsParam\": {\n \"Resource\": \"xx\",\n \"Ip\": \"xx\",\n \"TranSql\": true,\n \"GroupId\": \"xx\",\n \"Topic\": \"xx\",\n \"GroupUser\": \"xx\",\n \"GroupPassword\": \"xx\",\n \"Port\": 0\n },\n \"MongoDBParam\": {\n \"UserName\": \"xx\",\n \"CopyExisting\": true,\n \"Pipeline\": \"xx\",\n \"ListeningEvent\": \"xx\",\n \"Resource\": \"xx\",\n \"ReadPreference\": \"xx\",\n \"Database\": \"xx\",\n \"Ip\": \"xx\",\n \"Collection\": \"xx\",\n \"SelfBuilt\": true,\n \"Password\": \"xx\",\n \"Port\": 0\n },\n \"PostgreSQLParam\": {\n \"DataTargetInsertMode\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"DropInvalidMessage\": true,\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"xx\",\n \"ColumnName\": \"xx\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"xx\",\n \"ExtraInfo\": \"xx\",\n \"AllowNull\": true,\n \"ColumnSize\": \"xx\",\n \"Type\": \"xx\",\n \"DecimalDigits\": \"xx\"\n }\n ],\n \"SnapshotMode\": \"xx\",\n \"PluginName\": \"xx\",\n \"DataFormat\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"RecordWithSchema\": true,\n \"DataTargetPrimaryKeyField\": \"xx\",\n \"Table\": \"xx\",\n \"IsTableRegular\": true\n },\n \"SQLServerParam\": {\n \"Table\": \"xx\",\n \"SnapshotMode\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\"\n },\n \"MariaDBParam\": {\n \"OutputFormat\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"IncludeQuery\": true,\n \"SnapshotMode\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"IsTablePrefix\": true,\n \"IncludeContentChanges\": \"xx\",\n \"Table\": \"xx\",\n \"RecordWithSchema\": true\n },\n \"Type\": \"xx\",\n \"ClsParam\": {\n \"LogSet\": \"xx\",\n \"TimeField\": \"xx\",\n \"Resource\": \"xx\",\n \"ContentKey\": \"xx\",\n \"DecodeJson\": true\n }\n },\n \"TaskType\": \"xx\",\n \"Connections\": [\n {\n \"TopicId\": \"xx\",\n \"TopicName\": \"xx\",\n \"GroupId\": \"xx\"\n }\n ],\n \"TransformParam\": {\n \"Regex\": \"xx\",\n \"OutputFormat\": \"xx\",\n \"SourceType\": \"xx\",\n \"FilterParam\": [\n {\n \"MatchMode\": \"xx\",\n \"Type\": \"xx\",\n \"Value\": \"xx\",\n \"Key\": \"xx\"\n }\n ],\n \"UseEventBus\": true,\n \"FailureParam\": {\n \"RetryInterval\": 1,\n \"TopicParam\": {\n \"TopicId\": \"xx\",\n \"OffsetType\": \"xx\",\n \"Resource\": \"xx\",\n \"StartTime\": 1\n },\n \"KafkaParam\": {\n \"TopicId\": \"xx\",\n \"Resource\": \"xx\",\n \"PartitionNum\": 0,\n \"QpsLimit\": 1,\n \"EnableToleration\": true,\n \"SelfBuilt\": true,\n \"Topic\": \"xx\",\n \"OffsetType\": \"xx\",\n \"StartTime\": 1,\n \"UseTableMapping\": true,\n \"ResourceName\": \"xx\",\n \"ZoneId\": 0,\n \"TableMappings\": [\n {\n \"Topic\": \"xx\",\n \"Table\": \"xx\",\n \"TopicId\": \"xx\",\n \"Database\": \"xx\"\n }\n ]\n },\n \"MaxRetryAttempts\": 1,\n \"Type\": \"xx\",\n \"DlqType\": \"xx\"\n },\n \"Content\": \"xx\",\n \"AnalysisFormat\": \"xx\",\n \"MapParam\": [\n {\n \"Type\": \"xx\",\n \"Value\": \"xx\",\n \"Key\": \"xx\"\n }\n ],\n \"AnalyseResult\": [\n {\n \"Type\": \"xx\",\n \"Value\": \"xx\",\n \"Key\": \"xx\"\n }\n ],\n \"Result\": \"xx\"\n },\n \"TaskId\": \"xx\",\n \"DatahubId\": \"xx\",\n \"SourceResource\": {\n \"EventBusParam\": {\n \"Resource\": \"xx\",\n \"FunctionName\": \"xx\",\n \"Namespace\": \"xx\",\n \"SelfBuilt\": true,\n \"Type\": \"xx\",\n \"Qualifier\": \"xx\"\n },\n \"ClickHouseParam\": {\n \"UserName\": \"xx\",\n \"Resource\": \"xx\",\n \"UniqVpcId\": \"xx\",\n \"Database\": \"xx\",\n \"Ip\": \"xx\",\n \"DropInvalidMessage\": true,\n \"SelfBuilt\": true,\n \"Cluster\": \"xx\",\n \"ServiceVip\": \"xx\",\n \"Table\": \"xx\",\n \"Password\": \"xx\",\n \"Type\": \"xx\",\n \"Port\": 0,\n \"Schema\": [\n {\n \"ColumnName\": \"xx\",\n \"Type\": \"xx\",\n \"JsonKey\": \"xx\",\n \"AllowNull\": true\n }\n ]\n },\n \"CtsdbParam\": {\n \"Resource\": \"xx\",\n \"CtsdbMetric\": \"xx\"\n },\n \"TdwParam\": {\n \"Tid\": \"xx\",\n \"Bid\": \"xx\",\n \"TdwHost\": \"xx\",\n \"IsDomestic\": true,\n \"TdwPort\": 0\n },\n \"MySQLParam\": {\n \"OutputFormat\": \"xx\",\n \"DataSourceIncrementMode\": \"xx\",\n \"DataSourceMonitorMode\": \"xx\",\n \"IncludeContentChanges\": \"xx\",\n \"DataTargetPrimaryKeyField\": \"xx\",\n \"TopicReplacement\": \"xx\",\n \"TopicRegex\": \"xx\",\n \"DataTargetInsertMode\": \"xx\",\n \"DataSourceIncrementColumn\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"DdlTopic\": \"xx\",\n \"IncludeQuery\": true,\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"xx\",\n \"ColumnName\": \"xx\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"xx\",\n \"ExtraInfo\": \"xx\",\n \"AllowNull\": true,\n \"ColumnSize\": \"xx\",\n \"Type\": \"xx\",\n \"DecimalDigits\": \"xx\"\n }\n ],\n \"DataSourceMonitorResource\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"RecordWithSchema\": true,\n \"DropInvalidMessage\": true,\n \"SnapshotMode\": \"xx\",\n \"IsTablePrefix\": true,\n \"Table\": \"xx\",\n \"DataSourceStartFrom\": \"xx\"\n },\n \"CosParam\": {\n \"FormatOutputType\": \"xx\",\n \"DirectoryTimeFormat\": \"xx\",\n \"ObjectKey\": \"xx\",\n \"BucketName\": \"xx\",\n \"AggregateBatchSize\": 1,\n \"ObjectKeyPrefix\": \"xx\",\n \"Region\": \"xx\",\n \"AggregateInterval\": 1\n },\n \"EsParam\": {\n \"UserName\": \"xx\",\n \"Index\": \"xx\",\n \"Resource\": \"xx\",\n \"IndexType\": \"xx\",\n \"UniqVpcId\": \"xx\",\n \"DropInvalidMessage\": true,\n \"DateFormat\": \"xx\",\n \"SelfBuilt\": true,\n \"ServiceVip\": \"xx\",\n \"DatabasePrimaryKey\": \"xx\",\n \"Password\": \"xx\",\n \"DropInvalidJsonMessage\": true,\n \"Port\": 0,\n \"ContentKey\": \"xx\",\n \"DocumentIdField\": \"xx\"\n },\n \"DtsParam\": {\n \"Resource\": \"xx\",\n \"Ip\": \"xx\",\n \"TranSql\": true,\n \"GroupId\": \"xx\",\n \"Topic\": \"xx\",\n \"GroupUser\": \"xx\",\n \"GroupPassword\": \"xx\",\n \"Port\": 0\n },\n \"MongoDBParam\": {\n \"UserName\": \"xx\",\n \"CopyExisting\": true,\n \"Pipeline\": \"xx\",\n \"ListeningEvent\": \"xx\",\n \"Resource\": \"xx\",\n \"ReadPreference\": \"xx\",\n \"Database\": \"xx\",\n \"Ip\": \"xx\",\n \"Collection\": \"xx\",\n \"SelfBuilt\": true,\n \"Password\": \"xx\",\n \"Port\": 0\n },\n \"PostgreSQLParam\": {\n \"DataTargetInsertMode\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"DropInvalidMessage\": true,\n \"SnapshotMode\": \"xx\",\n \"PluginName\": \"xx\",\n \"DataFormat\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"RecordWithSchema\": true,\n \"DataTargetPrimaryKeyField\": \"xx\",\n \"Table\": \"xx\",\n \"IsTableRegular\": true\n },\n \"SQLServerParam\": {\n \"Table\": \"xx\",\n \"SnapshotMode\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\"\n },\n \"MariaDBParam\": {\n \"OutputFormat\": \"xx\",\n \"Resource\": \"xx\",\n \"Database\": \"xx\",\n \"IncludeQuery\": true,\n \"SnapshotMode\": \"xx\",\n \"KeyColumns\": \"xx\",\n \"IsTablePrefix\": true,\n \"IncludeContentChanges\": \"xx\",\n \"Table\": \"xx\",\n \"RecordWithSchema\": true\n },\n \"Type\": \"xx\",\n \"ClsParam\": {\n \"LogSet\": \"xx\",\n \"TimeField\": \"xx\",\n \"Resource\": \"xx\",\n \"ContentKey\": \"xx\",\n \"DecodeJson\": true\n }\n },\n \"SchemaName\": \"xx\",\n \"TaskName\": \"xx\",\n \"CreateTime\": \"xx\"\n },\n \"RequestId\": \"xx\"\n }\n}",
|
400
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatahubTask\n<公共请求参数>\n\n{\n \"TaskId\": \"abc\"\n}",
|
401
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"TaskId\": \"abc\",\n \"TaskName\": \"abc\",\n \"TaskType\": \"abc\",\n \"Status\": 0,\n \"SourceResource\": {\n \"Type\": \"abc\",\n \"KafkaParam\": {\n \"SelfBuilt\": true,\n \"Resource\": \"abc\",\n \"Topic\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"ResourceName\": \"abc\",\n \"ZoneId\": 0,\n \"TopicId\": \"abc\",\n \"PartitionNum\": 0,\n \"EnableToleration\": true,\n \"QpsLimit\": 1,\n \"TableMappings\": [\n {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Topic\": \"abc\",\n \"TopicId\": \"abc\"\n }\n ],\n \"UseTableMapping\": true,\n \"UseAutoCreateTopic\": true,\n \"CompressionType\": \"abc\",\n \"MsgMultiple\": 0,\n \"ConnectorSyncType\": \"abc\",\n \"KeepPartition\": true\n },\n \"EventBusParam\": {\n \"Type\": \"abc\",\n \"SelfBuilt\": true,\n \"Resource\": \"abc\",\n \"Namespace\": \"abc\",\n \"FunctionName\": \"abc\",\n \"Qualifier\": \"abc\"\n },\n \"MongoDBParam\": {\n \"Database\": \"abc\",\n \"Collection\": \"abc\",\n \"CopyExisting\": true,\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"ListeningEvent\": \"abc\",\n \"ReadPreference\": \"abc\",\n \"Pipeline\": \"abc\",\n \"SelfBuilt\": true\n },\n \"EsParam\": {\n \"Resource\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"SelfBuilt\": true,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"DropInvalidMessage\": true,\n \"Index\": \"abc\",\n \"DateFormat\": \"abc\",\n \"ContentKey\": \"abc\",\n \"DropInvalidJsonMessage\": true,\n \"DocumentIdField\": \"abc\",\n \"IndexType\": \"abc\",\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsRegion\": \"abc\",\n \"DropClsOwneruin\": \"abc\",\n \"DropClsTopicId\": \"abc\",\n \"DropClsLogSet\": \"abc\"\n },\n \"DatabasePrimaryKey\": \"abc\",\n \"DropDlq\": {\n \"Type\": \"abc\",\n \"KafkaParam\": {\n \"SelfBuilt\": true,\n \"Resource\": \"abc\",\n \"Topic\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"ResourceName\": \"abc\",\n \"ZoneId\": 0,\n \"TopicId\": \"abc\",\n \"PartitionNum\": 0,\n \"EnableToleration\": true,\n \"QpsLimit\": 1,\n \"TableMappings\": [\n {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Topic\": \"abc\",\n \"TopicId\": \"abc\"\n }\n ],\n \"UseTableMapping\": true,\n \"UseAutoCreateTopic\": true,\n \"CompressionType\": \"abc\",\n \"MsgMultiple\": 0,\n \"ConnectorSyncType\": \"abc\",\n \"KeepPartition\": true\n },\n \"RetryInterval\": 1,\n \"MaxRetryAttempts\": 1,\n \"TopicParam\": {\n \"Resource\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"TopicId\": \"abc\",\n \"CompressionType\": \"abc\",\n \"UseAutoCreateTopic\": true,\n \"MsgMultiple\": 0\n },\n \"DlqType\": \"abc\"\n },\n \"RecordMappingList\": [\n {\n \"ColumnName\": \"abc\",\n \"JsonKey\": \"abc\"\n }\n ],\n \"DateField\": \"abc\",\n \"RecordMappingMode\": \"abc\"\n },\n \"TdwParam\": {\n \"Bid\": \"abc\",\n \"Tid\": \"abc\",\n \"IsDomestic\": true,\n \"TdwHost\": \"abc\",\n \"TdwPort\": 0\n },\n \"DtsParam\": {\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"Topic\": \"abc\",\n \"GroupId\": \"abc\",\n \"GroupUser\": \"abc\",\n \"GroupPassword\": \"abc\",\n \"TranSql\": true\n },\n \"ClickHouseParam\": {\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Cluster\": \"abc\",\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Schema\": [\n {\n \"ColumnName\": \"abc\",\n \"JsonKey\": \"abc\",\n \"Type\": \"abc\",\n \"AllowNull\": true\n }\n ],\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"DropInvalidMessage\": true,\n \"Type\": \"abc\",\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsRegion\": \"abc\",\n \"DropClsOwneruin\": \"abc\",\n \"DropClsTopicId\": \"abc\",\n \"DropClsLogSet\": \"abc\"\n },\n \"BatchSize\": 0,\n \"ConsumerFetchMinBytes\": 0,\n \"ConsumerFetchMaxWaitMs\": 0\n },\n \"ClsParam\": {\n \"DecodeJson\": true,\n \"Resource\": \"abc\",\n \"LogSet\": \"abc\",\n \"ContentKey\": \"abc\",\n \"TimeField\": \"abc\"\n },\n \"CosParam\": {\n \"BucketName\": \"abc\",\n \"Region\": \"abc\",\n \"ObjectKey\": \"abc\",\n \"AggregateBatchSize\": 1,\n \"AggregateInterval\": 1,\n \"FormatOutputType\": \"abc\",\n \"ObjectKeyPrefix\": \"abc\",\n \"DirectoryTimeFormat\": \"abc\"\n },\n \"MySQLParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"DdlTopic\": \"abc\",\n \"DataSourceMonitorMode\": \"abc\",\n \"DataSourceMonitorResource\": \"abc\",\n \"DataSourceIncrementMode\": \"abc\",\n \"DataSourceIncrementColumn\": \"abc\",\n \"DataSourceStartFrom\": \"abc\",\n \"DataTargetInsertMode\": \"abc\",\n \"DataTargetPrimaryKeyField\": \"abc\",\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"abc\",\n \"Type\": \"abc\",\n \"AllowNull\": true,\n \"ColumnName\": \"abc\",\n \"ExtraInfo\": \"abc\",\n \"ColumnSize\": \"abc\",\n \"DecimalDigits\": \"abc\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"abc\"\n }\n ],\n \"TopicRegex\": \"abc\",\n \"TopicReplacement\": \"abc\",\n \"KeyColumns\": \"abc\",\n \"DropInvalidMessage\": true,\n \"DropCls\": {\n \"DropInvalidMessageToCls\": true,\n \"DropClsRegion\": \"abc\",\n \"DropClsOwneruin\": \"abc\",\n \"DropClsTopicId\": \"abc\",\n \"DropClsLogSet\": \"abc\"\n },\n \"OutputFormat\": \"abc\",\n \"IsTablePrefix\": true,\n \"IncludeContentChanges\": \"abc\",\n \"IncludeQuery\": true,\n \"RecordWithSchema\": true,\n \"SignalDatabase\": \"abc\",\n \"IsTableRegular\": true,\n \"SignalTable\": \"abc\",\n \"DateTimeZone\": \"abc\",\n \"SelfBuilt\": true\n },\n \"PostgreSQLParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"PluginName\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"DataFormat\": \"abc\",\n \"DataTargetInsertMode\": \"abc\",\n \"DataTargetPrimaryKeyField\": \"abc\",\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"abc\",\n \"Type\": \"abc\",\n \"AllowNull\": true,\n \"ColumnName\": \"abc\",\n \"ExtraInfo\": \"abc\",\n \"ColumnSize\": \"abc\",\n \"DecimalDigits\": \"abc\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"abc\"\n }\n ],\n \"DropInvalidMessage\": true,\n \"IsTableRegular\": true,\n \"KeyColumns\": \"abc\",\n \"RecordWithSchema\": true\n },\n \"TopicParam\": {\n \"Resource\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"TopicId\": \"abc\",\n \"CompressionType\": \"abc\",\n \"UseAutoCreateTopic\": true,\n \"MsgMultiple\": 0\n },\n \"MariaDBParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"KeyColumns\": \"abc\",\n \"IsTablePrefix\": true,\n \"OutputFormat\": \"abc\",\n \"IncludeContentChanges\": \"abc\",\n \"IncludeQuery\": true,\n \"RecordWithSchema\": true\n },\n \"SQLServerParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\"\n },\n \"CtsdbParam\": {\n \"Resource\": \"abc\",\n \"CtsdbMetric\": \"abc\"\n },\n \"ScfParam\": {\n \"FunctionName\": \"abc\",\n \"Namespace\": \"abc\",\n \"Qualifier\": \"abc\",\n \"BatchSize\": 0,\n \"MaxRetries\": 0\n },\n \"MqttParam\": {\n \"Topics\": \"abc\",\n \"CleanSession\": true,\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Qos\": 0,\n \"MaxTasks\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"SelfBuilt\": true\n }\n },\n \"TargetResource\": {\n \"Type\": \"abc\",\n \"KafkaParam\": {\n \"SelfBuilt\": true,\n \"Resource\": \"abc\",\n \"Topic\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"ResourceName\": \"abc\",\n \"ZoneId\": 0,\n \"TopicId\": \"abc\",\n \"PartitionNum\": 0,\n \"EnableToleration\": true,\n \"QpsLimit\": 1,\n \"TableMappings\": [\n {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Topic\": \"abc\",\n \"TopicId\": \"abc\"\n }\n ],\n \"UseTableMapping\": true,\n \"UseAutoCreateTopic\": true,\n \"CompressionType\": \"abc\",\n \"MsgMultiple\": 0,\n \"ConnectorSyncType\": \"abc\",\n \"KeepPartition\": true\n },\n \"EventBusParam\": {\n \"Type\": \"abc\",\n \"SelfBuilt\": true,\n \"Resource\": \"abc\",\n \"Namespace\": \"abc\",\n \"FunctionName\": \"abc\",\n \"Qualifier\": \"abc\"\n },\n \"MongoDBParam\": {\n \"Database\": \"abc\",\n \"Collection\": \"abc\",\n \"CopyExisting\": true,\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"ListeningEvent\": \"abc\",\n \"ReadPreference\": \"abc\",\n \"Pipeline\": \"abc\",\n \"SelfBuilt\": true\n },\n \"EsParam\": {\n \"Resource\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"SelfBuilt\": true,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"DropInvalidMessage\": true,\n \"Index\": \"abc\",\n \"DateFormat\": \"abc\",\n \"ContentKey\": \"abc\",\n \"DropInvalidJsonMessage\": true,\n \"DocumentIdField\": \"abc\",\n \"IndexType\": \"abc\",\n \"DatabasePrimaryKey\": \"abc\",\n \"DropDlq\": {\n \"Type\": \"abc\",\n \"RetryInterval\": 1,\n \"MaxRetryAttempts\": 1,\n \"TopicParam\": {\n \"Resource\": \"abc\",\n \"OffsetType\": \"abc\",\n \"StartTime\": 1,\n \"TopicId\": \"abc\",\n \"CompressionType\": \"abc\",\n \"UseAutoCreateTopic\": true,\n \"MsgMultiple\": 0\n },\n \"DlqType\": \"abc\"\n },\n \"RecordMappingList\": [\n {\n \"ColumnName\": \"abc\",\n \"JsonKey\": \"abc\"\n }\n ],\n \"DateField\": \"abc\",\n \"RecordMappingMode\": \"abc\"\n },\n \"TdwParam\": {\n \"Bid\": \"abc\",\n \"Tid\": \"abc\",\n \"IsDomestic\": true,\n \"TdwHost\": \"abc\",\n \"TdwPort\": 0\n },\n \"DtsParam\": {\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"Topic\": \"abc\",\n \"GroupId\": \"abc\",\n \"GroupUser\": \"abc\",\n \"GroupPassword\": \"abc\",\n \"TranSql\": true\n },\n \"ClickHouseParam\": {\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Cluster\": \"abc\",\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Schema\": [\n {\n \"ColumnName\": \"abc\",\n \"JsonKey\": \"abc\",\n \"Type\": \"abc\",\n \"AllowNull\": true\n }\n ],\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"Resource\": \"abc\",\n \"SelfBuilt\": true,\n \"DropInvalidMessage\": true,\n \"Type\": \"abc\",\n \"BatchSize\": 0,\n \"ConsumerFetchMinBytes\": 0,\n \"ConsumerFetchMaxWaitMs\": 0\n },\n \"ClsParam\": {\n \"DecodeJson\": true,\n \"Resource\": \"abc\",\n \"LogSet\": \"abc\",\n \"ContentKey\": \"abc\",\n \"TimeField\": \"abc\"\n },\n \"CosParam\": {\n \"BucketName\": \"abc\",\n \"Region\": \"abc\",\n \"ObjectKey\": \"abc\",\n \"AggregateBatchSize\": 1,\n \"AggregateInterval\": 1,\n \"FormatOutputType\": \"abc\",\n \"ObjectKeyPrefix\": \"abc\",\n \"DirectoryTimeFormat\": \"abc\"\n },\n \"MySQLParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"DdlTopic\": \"abc\",\n \"DataSourceMonitorMode\": \"abc\",\n \"DataSourceMonitorResource\": \"abc\",\n \"DataSourceIncrementMode\": \"abc\",\n \"DataSourceIncrementColumn\": \"abc\",\n \"DataSourceStartFrom\": \"abc\",\n \"DataTargetInsertMode\": \"abc\",\n \"DataTargetPrimaryKeyField\": \"abc\",\n \"DataTargetRecordMapping\": [\n {\n \"JsonKey\": \"abc\",\n \"Type\": \"abc\",\n \"AllowNull\": true,\n \"ColumnName\": \"abc\",\n \"ExtraInfo\": \"abc\",\n \"ColumnSize\": \"abc\",\n \"DecimalDigits\": \"abc\",\n \"AutoIncrement\": true,\n \"DefaultValue\": \"abc\"\n }\n ],\n \"TopicRegex\": \"abc\",\n \"TopicReplacement\": \"abc\",\n \"KeyColumns\": \"abc\",\n \"DropInvalidMessage\": true,\n \"OutputFormat\": \"abc\",\n \"IsTablePrefix\": true,\n \"IncludeContentChanges\": \"abc\",\n \"IncludeQuery\": true,\n \"RecordWithSchema\": true,\n \"SignalDatabase\": \"abc\",\n \"IsTableRegular\": true,\n \"SignalTable\": \"abc\",\n \"DateTimeZone\": \"abc\",\n \"SelfBuilt\": true\n },\n \"PostgreSQLParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"PluginName\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"DataFormat\": \"abc\",\n \"DataTargetInsertMode\": \"abc\",\n \"DataTargetPrimaryKeyField\": \"abc\",\n \"DropInvalidMessage\": true,\n \"IsTableRegular\": true,\n \"KeyColumns\": \"abc\",\n \"RecordWithSchema\": true\n },\n \"MariaDBParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\",\n \"KeyColumns\": \"abc\",\n \"IsTablePrefix\": true,\n \"OutputFormat\": \"abc\",\n \"IncludeContentChanges\": \"abc\",\n \"IncludeQuery\": true,\n \"RecordWithSchema\": true\n },\n \"SQLServerParam\": {\n \"Database\": \"abc\",\n \"Table\": \"abc\",\n \"Resource\": \"abc\",\n \"SnapshotMode\": \"abc\"\n },\n \"CtsdbParam\": {\n \"Resource\": \"abc\",\n \"CtsdbMetric\": \"abc\"\n },\n \"ScfParam\": {\n \"FunctionName\": \"abc\",\n \"Namespace\": \"abc\",\n \"Qualifier\": \"abc\",\n \"BatchSize\": 0,\n \"MaxRetries\": 0\n },\n \"MqttParam\": {\n \"Topics\": \"abc\",\n \"CleanSession\": true,\n \"Resource\": \"abc\",\n \"Ip\": \"abc\",\n \"Port\": 0,\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Qos\": 0,\n \"MaxTasks\": 0,\n \"ServiceVip\": \"abc\",\n \"UniqVpcId\": \"abc\",\n \"SelfBuilt\": true\n }\n },\n \"Connections\": [\n {\n \"TopicName\": \"abc\",\n \"GroupId\": \"abc\",\n \"TopicId\": \"abc\"\n }\n ],\n \"CreateTime\": \"abc\",\n \"TransformParam\": {\n \"AnalysisFormat\": \"abc\",\n \"Regex\": \"abc\",\n \"MapParam\": [\n {\n \"Key\": \"abc\",\n \"Type\": \"abc\",\n \"Value\": \"abc\"\n }\n ],\n \"FilterParam\": [\n {\n \"Key\": \"abc\",\n \"Type\": \"abc\",\n \"MatchMode\": \"abc\",\n \"Value\": \"abc\"\n }\n ],\n \"OutputFormat\": \"abc\",\n \"FailureParam\": {\n \"Type\": \"abc\",\n \"RetryInterval\": 1,\n \"MaxRetryAttempts\": 1,\n \"DlqType\": \"abc\",\n \"KafkaParam\": {\n \"SelfBuilt\": true,\n \"Resource\": \"ccc\",\n \"Topic\": \"ac\",\n \"OffsetType\": \"c\",\n \"StartTime\": 1703990000,\n \"ResourceName\": \"cnnnc\",\n \"ZoneId\": 120399,\n \"TopicId\": \"corooco\",\n \"PartitionNum\": 1,\n \"EnableToleration\": true,\n \"QpsLimit\": 133,\n \"TableMappings\": [],\n \"UseTableMapping\": true,\n \"UseAutoCreateTopic\": true,\n \"CompressionType\": \"\",\n \"MsgMultiple\": 1,\n \"ConnectorSyncType\": \"\",\n \"KeepPartition\": true\n },\n \"TopicParam\": {\n \"Resource\": \"\",\n \"OffsetType\": \"\",\n \"StartTime\": 139001030,\n \"CompressionType\": \"cc\",\n \"UseAutoCreateTopic\": true,\n \"MsgMultiple\": 1\n }\n },\n \"Content\": \"abc\",\n \"SourceType\": \"abc\",\n \"Result\": \"abc\",\n \"AnalyseResult\": [\n {\n \"Key\": \"abc\",\n \"Type\": \"abc\",\n \"Value\": \"abc\"\n }\n ],\n \"UseEventBus\": true\n },\n \"DatahubId\": \"abc\",\n \"SchemaId\": \"abc\",\n \"SchemaName\": \"abc\",\n \"TransformsParam\": {\n \"Content\": \"abc\",\n \"FailureParam\": {\n \"Type\": \"abc\",\n \"RetryInterval\": 1,\n \"MaxRetryAttempts\": 1,\n \"DlqType\": \"abc\",\n \"KafkaParam\": {\n \"SelfBuilt\": true,\n \"Resource\": \"ccc\",\n \"Topic\": \"ac\",\n \"OffsetType\": \"c\",\n \"StartTime\": 1703990000,\n \"ResourceName\": \"cnnnc\",\n \"ZoneId\": 120399,\n \"TopicId\": \"corooco\",\n \"PartitionNum\": 1,\n \"EnableToleration\": true,\n \"QpsLimit\": 133,\n \"TableMappings\": [],\n \"UseTableMapping\": true,\n \"UseAutoCreateTopic\": true,\n \"CompressionType\": \"\",\n \"MsgMultiple\": 1,\n \"ConnectorSyncType\": \"\",\n \"KeepPartition\": true\n },\n \"TopicParam\": {\n \"Resource\": \"\",\n \"OffsetType\": \"\",\n \"StartTime\": 139001030,\n \"CompressionType\": \"cc\",\n \"UseAutoCreateTopic\": true,\n \"MsgMultiple\": 1\n }\n },\n \"FieldChain\": [\n {\n \"Analyse\": {\n \"Format\": \"abc\",\n \"Regex\": \"abc\",\n \"InputValueType\": \"abc\",\n \"InputValue\": \"abc\"\n },\n \"SecondaryAnalyse\": {\n \"Regex\": \"abc\"\n },\n \"SMT\": [\n {\n \"Key\": \"abc\",\n \"Operate\": \"abc\",\n \"SchemeType\": \"abc\",\n \"Value\": \"abc\",\n \"ValueOperate\": {\n \"Type\": \"abc\",\n \"Replace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Date\": {\n \"Format\": \"abc\",\n \"TargetType\": \"abc\",\n \"TimeZone\": \"abc\"\n },\n \"RegexReplace\": {\n \"Regex\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Split\": {\n \"Regex\": \"abc\"\n },\n \"KV\": {\n \"Delimiter\": \"abc\",\n \"Regex\": \"abc\",\n \"KeepOriginalKey\": \"abc\"\n },\n \"Result\": \"abc\",\n \"JsonPathReplace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"UrlDecode\": {\n \"CharsetName\": \"abc\"\n },\n \"Lowercase\": {}\n },\n \"OriginalValue\": \"abc\",\n \"ValueOperates\": [\n {\n \"Type\": \"abc\",\n \"Replace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Date\": {\n \"Format\": \"abc\",\n \"TargetType\": \"abc\",\n \"TimeZone\": \"abc\"\n },\n \"RegexReplace\": {\n \"Regex\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Split\": {\n \"Regex\": \"abc\"\n },\n \"KV\": {\n \"Delimiter\": \"abc\",\n \"Regex\": \"abc\",\n \"KeepOriginalKey\": \"abc\"\n },\n \"Result\": \"abc\",\n \"JsonPathReplace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"UrlDecode\": {\n \"CharsetName\": \"abc\"\n },\n \"Lowercase\": {}\n }\n ]\n }\n ],\n \"Result\": \"abc\",\n \"AnalyseResult\": [\n {\n \"Key\": \"abc\",\n \"Operate\": \"abc\",\n \"SchemeType\": \"abc\",\n \"Value\": \"abc\",\n \"ValueOperate\": {\n \"Type\": \"abc\",\n \"Replace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Substr\": {\n \"Start\": 0,\n \"End\": 0\n },\n \"Date\": {\n \"Format\": \"abc\",\n \"TargetType\": \"abc\",\n \"TimeZone\": \"abc\"\n },\n \"RegexReplace\": {\n \"Regex\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"Split\": {\n \"Regex\": \"abc\"\n },\n \"KV\": {\n \"Delimiter\": \"abc\",\n \"Regex\": \"abc\",\n \"KeepOriginalKey\": \"abc\"\n },\n \"Result\": \"abc\",\n \"JsonPathReplace\": {\n \"OldValue\": \"abc\",\n \"NewValue\": \"abc\"\n },\n \"UrlDecode\": {\n \"CharsetName\": \"abc\"\n },\n \"Lowercase\": {}\n },\n \"OriginalValue\": \"abc\"\n }\n ],\n \"SecondaryAnalyseResult\": [\n {\n \"Key\": \"abc\",\n \"Operate\": \"abc\",\n \"SchemeType\": \"abc\",\n \"Value\": \"abc\",\n \"OriginalValue\": \"abc\"\n }\n ],\n \"AnalyseJsonResult\": \"abc\",\n \"SecondaryAnalyseJsonResult\": \"abc\"\n }\n ],\n \"FilterParam\": [\n {\n \"Key\": \"abc\",\n \"Type\": \"abc\",\n \"MatchMode\": \"abc\",\n \"Value\": \"abc\"\n }\n ],\n \"Result\": \"abc\",\n \"SourceType\": \"abc\",\n \"OutputFormat\": \"abc\",\n \"RowParam\": {\n \"RowContent\": \"abc\",\n \"KeyValueDelimiter\": \"abc\",\n \"EntryDelimiter\": \"abc\"\n },\n \"KeepMetadata\": true,\n \"BatchAnalyse\": {\n \"Format\": \"abc\"\n }\n },\n \"ErrorMessage\": \"abc\",\n \"Tags\": [\n {\n \"TagKey\": \"abc\",\n \"TagValue\": \"abc\"\n }\n ]\n },\n \"RequestId\": \"abc\"\n }\n}",
|
402
402
|
"title": "查询Datahub任务信息"
|
403
403
|
}
|
404
404
|
],
|
@@ -413,8 +413,8 @@
|
|
413
413
|
"DescribeDatahubTopic": [
|
414
414
|
{
|
415
415
|
"document": "",
|
416
|
-
"input": "
|
417
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"
|
416
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDatahubTopic\n<公共请求参数>\n\n{\n \"Name\": \"xxx\"\n}",
|
417
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"Name\": \"abc\",\n \"TopicName\": \"abc\",\n \"TopicId\": \"abc\",\n \"PartitionNum\": 1,\n \"RetentionMs\": 1,\n \"Note\": \"abc\",\n \"UserName\": \"abc\",\n \"Password\": \"abc\",\n \"Status\": 1,\n \"Address\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
|
418
418
|
"title": "获取主题属性"
|
419
419
|
}
|
420
420
|
],
|
@@ -582,7 +582,7 @@
|
|
582
582
|
{
|
583
583
|
"document": "",
|
584
584
|
"input": "https://ckafka.tencentcloudapi.com/?Action=FetchLatestDatahubMessageList\n&Name=xxx\n&Partition=1\n&Offset=1\n&MessageCount=20\n&<公共请求参数>",
|
585
|
-
"output": "{\n \"Response\": {\n \"Result\": [\n {\n \"Topic\": \"
|
585
|
+
"output": "{\n \"Response\": {\n \"Result\": [\n {\n \"Topic\": \"abc\",\n \"Partition\": 0,\n \"Offset\": 0,\n \"Key\": \"abc\",\n \"Value\": \"abc\",\n \"Timestamp\": 0,\n \"Headers\": \"abc\"\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
586
586
|
"title": "根据offset查询消息"
|
587
587
|
}
|
588
588
|
],
|
@@ -637,16 +637,16 @@
|
|
637
637
|
"ModifyDatahubTask": [
|
638
638
|
{
|
639
639
|
"document": "",
|
640
|
-
"input": "
|
641
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"TaskId\": \"
|
640
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyDatahubTask\n<公共请求参数>\n\n{\n \"TaskId\": \"abc\",\n \"TaskName\": \"abc\"\n}",
|
641
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"TaskId\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
|
642
642
|
"title": "修改Datahub任务"
|
643
643
|
}
|
644
644
|
],
|
645
645
|
"ModifyDatahubTopic": [
|
646
646
|
{
|
647
647
|
"document": "",
|
648
|
-
"input": "
|
649
|
-
"output": "{\n \"Response\": {\n \"Result\": {\n \"
|
648
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyDatahubTopic\n<公共请求参数>\n\n{\n \"Note\": \"xxx\",\n \"Name\": \"xxx\",\n \"RetentionMs\": \"3600000\"\n}",
|
649
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ReturnCode\": \"abc\",\n \"ReturnMessage\": \"abc\",\n \"Data\": {\n \"FlowId\": 0,\n \"RouteDTO\": {\n \"RouteId\": 0\n }\n }\n },\n \"RequestId\": \"abc\"\n }\n}",
|
650
650
|
"title": "设置主题属性"
|
651
651
|
}
|
652
652
|
],
|