tccli 3.0.1137.1__py2.py3-none-any.whl → 3.0.1139.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/command.py +1 -1
  3. tccli/help_command.py +1 -1
  4. tccli/services/__init__.py +3 -0
  5. tccli/services/aiart/aiart_client.py +53 -0
  6. tccli/services/aiart/v20221229/api.json +98 -0
  7. tccli/services/aiart/v20221229/examples.json +8 -0
  8. tccli/services/asr/v20190614/api.json +9 -0
  9. tccli/services/cbs/v20170312/api.json +5 -8
  10. tccli/services/cdwch/v20200915/api.json +1 -1
  11. tccli/services/ckafka/v20190819/api.json +25 -25
  12. tccli/services/ckafka/v20190819/examples.json +18 -18
  13. tccli/services/cls/v20201016/api.json +44 -5
  14. tccli/services/cls/v20201016/examples.json +1 -1
  15. tccli/services/cwp/cwp_client.py +61 -114
  16. tccli/services/cwp/v20180228/api.json +0 -70
  17. tccli/services/cwp/v20180228/examples.json +0 -8
  18. tccli/services/domain/v20180808/api.json +36 -0
  19. tccli/services/emr/v20190103/api.json +534 -15
  20. tccli/services/emr/v20190103/examples.json +4 -4
  21. tccli/services/ess/v20201111/api.json +4 -4
  22. tccli/services/ess/v20201111/examples.json +2 -2
  23. tccli/services/essbasic/v20210526/api.json +3 -3
  24. tccli/services/essbasic/v20210526/examples.json +2 -2
  25. tccli/services/ims/v20201229/api.json +2 -2
  26. tccli/services/ioa/v20220601/api.json +132 -92
  27. tccli/services/iotexplorer/v20190423/api.json +11 -0
  28. tccli/services/mps/v20190612/api.json +163 -115
  29. tccli/services/mps/v20190612/examples.json +11 -11
  30. tccli/services/ocr/v20181119/api.json +19 -0
  31. tccli/services/redis/v20180412/api.json +23 -23
  32. tccli/services/rum/v20210622/api.json +1 -0
  33. tccli/services/scf/v20180416/examples.json +1 -1
  34. tccli/services/ssl/ssl_client.py +53 -0
  35. tccli/services/ssl/v20191205/api.json +251 -5
  36. tccli/services/ssl/v20191205/examples.json +9 -1
  37. tccli/services/tdmq/v20200217/api.json +171 -22
  38. tccli/services/tdmq/v20200217/examples.json +6 -6
  39. tccli/services/thpc/v20230321/api.json +42 -21
  40. tccli/services/tke/v20180525/api.json +149 -71
  41. tccli/services/tke/v20180525/examples.json +69 -57
  42. tccli/services/trtc/v20190722/api.json +1 -1
  43. tccli/services/tsf/v20180326/api.json +1 -1
  44. tccli/services/vclm/__init__.py +4 -0
  45. tccli/services/vclm/v20240523/api.json +695 -0
  46. tccli/services/vclm/v20240523/examples.json +73 -0
  47. tccli/services/vclm/vclm_client.py +513 -0
  48. tccli/services/vdb/v20230616/api.json +20 -0
  49. {tccli-3.0.1137.1.dist-info → tccli-3.0.1139.1.dist-info}/METADATA +2 -2
  50. {tccli-3.0.1137.1.dist-info → tccli-3.0.1139.1.dist-info}/RECORD +53 -49
  51. {tccli-3.0.1137.1.dist-info → tccli-3.0.1139.1.dist-info}/WHEEL +0 -0
  52. {tccli-3.0.1137.1.dist-info → tccli-3.0.1139.1.dist-info}/entry_points.txt +0 -0
  53. {tccli-3.0.1137.1.dist-info → tccli-3.0.1139.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1137.1'
1
+ __version__ = '3.0.1139.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
- % (service_name, version, " ".join(available_version_list)))
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
- % (service_name, version, " ".join(available_version_list)))
32
+ % (version, service_name, " ".join(available_version_list)))
33
33
  self._version = version
34
34
 
35
35
  def __call__(self, args, parsed_globals):
@@ -749,6 +749,9 @@ SERVICE_VERSIONS = {
749
749
  "vcg": [
750
750
  "2024-04-04"
751
751
  ],
752
+ "vclm": [
753
+ "2024-05-23"
754
+ ],
752
755
  "vdb": [
753
756
  "2023-06-16"
754
757
  ],
@@ -173,6 +173,58 @@ def doQueryTextToImageProJob(args, parsed_globals):
173
173
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
174
174
 
175
175
 
176
+ def doGenerateAvatar(args, parsed_globals):
177
+ g_param = parse_global_arg(parsed_globals)
178
+
179
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
180
+ cred = credential.CVMRoleCredential()
181
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
182
+ cred = credential.STSAssumeRoleCredential(
183
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
184
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
185
+ )
186
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
187
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
188
+ else:
189
+ cred = credential.Credential(
190
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
191
+ )
192
+ http_profile = HttpProfile(
193
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
194
+ reqMethod="POST",
195
+ endpoint=g_param[OptionsDefine.Endpoint],
196
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
197
+ )
198
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
199
+ if g_param[OptionsDefine.Language]:
200
+ profile.language = g_param[OptionsDefine.Language]
201
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
202
+ client = mod.AiartClient(cred, g_param[OptionsDefine.Region], profile)
203
+ client._sdkVersion += ("_CLI_" + __version__)
204
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
205
+ model = models.GenerateAvatarRequest()
206
+ model.from_json_string(json.dumps(args))
207
+ start_time = time.time()
208
+ while True:
209
+ rsp = client.GenerateAvatar(model)
210
+ result = rsp.to_json_string()
211
+ try:
212
+ json_obj = json.loads(result)
213
+ except TypeError as e:
214
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
215
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
216
+ break
217
+ cur_time = time.time()
218
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
219
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
220
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
221
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
222
+ else:
223
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
224
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
225
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
226
+
227
+
176
228
  def doQueryTrainPortraitModelJob(args, parsed_globals):
177
229
  g_param = parse_global_arg(parsed_globals)
178
230
 
@@ -499,6 +551,7 @@ ACTION_MAP = {
499
551
  "SubmitTextToImageProJob": doSubmitTextToImageProJob,
500
552
  "SubmitTrainPortraitModelJob": doSubmitTrainPortraitModelJob,
501
553
  "QueryTextToImageProJob": doQueryTextToImageProJob,
554
+ "GenerateAvatar": doGenerateAvatar,
502
555
  "QueryTrainPortraitModelJob": doQueryTrainPortraitModelJob,
503
556
  "UploadTrainPortraitImages": doUploadTrainPortraitImages,
504
557
  "QueryDrawPortraitJob": doQueryDrawPortraitJob,
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "actions": {
3
+ "GenerateAvatar": {
4
+ "document": "百变头像接口将根据输入的人像照片,生成风格百变的头像。\n百变头像默认提供1个并发任务数,代表最多能同时处理1个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。",
5
+ "input": "GenerateAvatarRequest",
6
+ "name": "百变头像",
7
+ "output": "GenerateAvatarResponse",
8
+ "status": "online"
9
+ },
3
10
  "ImageToImage": {
4
11
  "document": "图像风格化(图生图)接口提供生成式的图生图风格转化能力,将根据输入的图像及文本描述,智能生成风格转化后的图像。建议避免输入人像过小、姿势复杂、人数较多的人像图片。\n图像风格化(图生图)默认提供3个并发任务数,代表最多能同时处理3个已提交的任务,上一个任务处理完毕后才能开始处理下一个任务。",
5
12
  "input": "ImageToImageRequest",
@@ -104,6 +111,97 @@
104
111
  ],
105
112
  "usage": "in"
106
113
  },
114
+ "GenerateAvatarRequest": {
115
+ "document": "GenerateAvatar请求参数结构体",
116
+ "members": [
117
+ {
118
+ "disabled": false,
119
+ "document": "头像风格。\n请在 [百变头像风格列表](https://cloud.tencent.com/document/product/1668/107741) 中选择期望的风格,必须传入风格编号。",
120
+ "example": "无",
121
+ "member": "string",
122
+ "name": "Style",
123
+ "required": true,
124
+ "type": "string"
125
+ },
126
+ {
127
+ "disabled": false,
128
+ "document": "输入图 Base64 数据。\n算法将根据输入的图片,结合文本描述智能生成与之相关的图像。\nBase64 和 Url 必须提供一个,如果都提供以 Base64 为准。\n图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 6MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。",
129
+ "example": "无",
130
+ "member": "string",
131
+ "name": "InputImage",
132
+ "required": false,
133
+ "type": "string"
134
+ },
135
+ {
136
+ "disabled": false,
137
+ "document": "输入图 Url。\n算法将根据输入的图片,结合文本描述智能生成与之相关的图像。\nBase64 和 Url 必须提供一个,如果都提供以 Base64 为准。\n图片限制:单边分辨率小于5000,转成 Base64 字符串后小于 6MB,格式支持 jpg、jpeg、png、bmp、tiff、webp。",
138
+ "example": "无",
139
+ "member": "string",
140
+ "name": "InputUrl",
141
+ "required": false,
142
+ "type": "string"
143
+ },
144
+ {
145
+ "disabled": false,
146
+ "document": "输入图像质量检测开关,默认开启。\n1:开启\n0:关闭\n建议开启检测,可提升生成效果,关闭检测可能因输入图像质量较差导致生成效果受损。\n开启后,将增强对输入图像的质量要求,如果输入图像单边分辨率<500、图像中人脸占比较小、存在多人、没有检测到人脸、人脸不完整、人脸遮挡等,将被拦截。\n关闭后,将降低对输入图像的质量要求,如果图像中没有检测到人脸或人脸占比过小等,将被拦截。",
147
+ "example": "无",
148
+ "member": "int64",
149
+ "name": "Filter",
150
+ "required": false,
151
+ "type": "int"
152
+ },
153
+ {
154
+ "disabled": false,
155
+ "document": "为生成结果图添加标识的开关,默认为1。\n1:添加标识。\n0:不添加标识。\n其他数值:默认按1处理。\n建议您使用显著标识来提示结果图是 AI 生成的图片。",
156
+ "example": "无",
157
+ "member": "int64",
158
+ "name": "LogoAdd",
159
+ "required": false,
160
+ "type": "int"
161
+ },
162
+ {
163
+ "disabled": false,
164
+ "document": "标识内容设置。\n默认在生成结果图右下角添加“图片由 AI 生成”字样,您可根据自身需要替换为其他的标识图片。",
165
+ "example": "无",
166
+ "member": "LogoParam",
167
+ "name": "LogoParam",
168
+ "required": false,
169
+ "type": "object"
170
+ },
171
+ {
172
+ "disabled": false,
173
+ "document": "返回图像方式(base64 或 url) ,二选一,默认为 base64。url 有效期为1小时。",
174
+ "example": "base64",
175
+ "member": "string",
176
+ "name": "RspImgType",
177
+ "required": false,
178
+ "type": "string"
179
+ }
180
+ ],
181
+ "type": "object"
182
+ },
183
+ "GenerateAvatarResponse": {
184
+ "document": "GenerateAvatar返回参数结构体",
185
+ "members": [
186
+ {
187
+ "disabled": false,
188
+ "document": "根据入参 RspImgType 填入不同,返回不同的内容。\n如果传入 base64 则返回生成图 Base64 编码。\n如果传入 url 则返回的生成图 URL , 有效期1小时,请及时保存。",
189
+ "example": "无",
190
+ "member": "string",
191
+ "name": "ResultImage",
192
+ "output_required": true,
193
+ "type": "string",
194
+ "value_allowed_null": false
195
+ },
196
+ {
197
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
198
+ "member": "string",
199
+ "name": "RequestId",
200
+ "type": "string"
201
+ }
202
+ ],
203
+ "type": "object"
204
+ },
107
205
  "ImageToImageRequest": {
108
206
  "document": "ImageToImage请求参数结构体",
109
207
  "members": [
@@ -1,5 +1,13 @@
1
1
  {
2
2
  "actions": {
3
+ "GenerateAvatar": [
4
+ {
5
+ "document": "",
6
+ "input": "POST / HTTP/1.1\nHost: aiart.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GenerateAvatar\n<公共请求参数>\n\n{\n \"InputUrl\": \"http://url\",\n \"Style\": \"water\"\n}",
7
+ "output": "{\n \"Response\": {\n \"ResultImage\": \"url or base64\",\n \"RequestId\": \"301bfc25-61ca-4ece-b03e-f6aefb547969\"\n }\n}",
8
+ "title": "调用成功示例"
9
+ }
10
+ ],
3
11
  "ImageToImage": [
4
12
  {
5
13
  "document": "调用成功示例",
@@ -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"
@@ -531,8 +531,7 @@
531
531
  "member": "string",
532
532
  "name": "InstanceId",
533
533
  "required": true,
534
- "type": "list",
535
- "value_allowed_null": false
534
+ "type": "list"
536
535
  },
537
536
  {
538
537
  "disabled": false,
@@ -540,9 +539,8 @@
540
539
  "example": "[\"/mnt/datadisk0\"]",
541
540
  "member": "string",
542
541
  "name": "MountPoint",
543
- "required": true,
544
- "type": "list",
545
- "value_allowed_null": false
542
+ "required": false,
543
+ "type": "list"
546
544
  },
547
545
  {
548
546
  "disabled": false,
@@ -550,9 +548,8 @@
550
548
  "example": "ext4",
551
549
  "member": "string",
552
550
  "name": "FileSystemType",
553
- "required": true,
554
- "type": "string",
555
- "value_allowed_null": false
551
+ "required": false,
552
+ "type": "string"
556
553
  }
557
554
  ],
558
555
  "usage": "in"
@@ -193,7 +193,7 @@
193
193
  "metadata": {
194
194
  "apiVersion": "2020-09-15",
195
195
  "api_brief": "云数据仓库 ClickHouse(CDWCH)是腾讯云提供的云上 ClickHouse 托管服务,为用户提供便捷的 ClickHouse 集群部署、软件安装、配置修改、监控告警、弹性伸缩等功能,为企业及用户提供安全稳定的大数据处理解决方案。",
196
- "serviceNameCN": "云数据仓库 ClickHouse",
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": "创建Datahub主题",
88
+ "document": "创建DIP主题",
89
89
  "input": "CreateDatahubTopicRequest",
90
- "name": "创建Datahub主题",
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": "删除Datahub任务",
186
+ "document": "删除Dip任务",
187
187
  "input": "DeleteDatahubTaskRequest",
188
- "name": "删除Datahub任务",
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": "获取Datahub主题属性",
326
+ "document": "获取DIP主题属性",
327
327
  "input": "DescribeDatahubTopicRequest",
328
- "name": "获取Datahub主题属性",
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": "修改Datahub主题属性",
529
+ "document": "修改DIP主题属性",
530
530
  "input": "ModifyDatahubTopicRequest",
531
- "name": "修改Datahub主题属性",
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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路由;4:标准版支撑路由;7:专业版支撑路由)",
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
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
- "required": true,
13041
+ "output_required": true,
13042
13042
  "type": "object",
13043
13043
  "value_allowed_null": false
13044
13044
  },