tccli 3.0.1136.1__py2.py3-none-any.whl → 3.0.1137.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 (37) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/command.py +4 -1
  3. tccli/help_command.py +4 -1
  4. tccli/services/cdb/v20170320/api.json +3 -3
  5. tccli/services/cls/v20201016/api.json +93 -0
  6. tccli/services/cwp/cwp_client.py +0 -53
  7. tccli/services/cwp/v20180228/api.json +0 -43
  8. tccli/services/cwp/v20180228/examples.json +0 -8
  9. tccli/services/cynosdb/v20190107/api.json +10 -0
  10. tccli/services/dlc/v20210125/api.json +23 -23
  11. tccli/services/dlc/v20210125/examples.json +6 -6
  12. tccli/services/dts/v20211206/api.json +3 -3
  13. tccli/services/essbasic/v20210526/api.json +2 -2
  14. tccli/services/faceid/v20180301/api.json +1 -1
  15. tccli/services/ioa/ioa_client.py +159 -0
  16. tccli/services/ioa/v20220601/api.json +897 -80
  17. tccli/services/ioa/v20220601/examples.json +24 -0
  18. tccli/services/iotexplorer/iotexplorer_client.py +178 -19
  19. tccli/services/iotexplorer/v20190423/api.json +199 -0
  20. tccli/services/iotexplorer/v20190423/examples.json +24 -0
  21. tccli/services/live/v20180801/api.json +12 -6
  22. tccli/services/ocr/v20181119/api.json +2 -2
  23. tccli/services/partners/v20180321/api.json +26 -16
  24. tccli/services/tcr/v20190924/api.json +57 -35
  25. tccli/services/tcr/v20190924/examples.json +4 -4
  26. tccli/services/tcss/v20201101/api.json +123 -13
  27. tccli/services/tcss/v20201101/examples.json +3 -3
  28. tccli/services/tke/v20180525/api.json +13 -3
  29. tccli/services/tts/v20190823/api.json +2 -2
  30. tccli/services/wedata/v20210820/api.json +377 -0
  31. tccli/services/wedata/v20210820/examples.json +8 -0
  32. tccli/services/wedata/wedata_client.py +61 -8
  33. {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/METADATA +2 -2
  34. {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/RECORD +37 -37
  35. {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/WHEEL +0 -0
  36. {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/entry_points.txt +0 -0
  37. {tccli-3.0.1136.1.dist-info → tccli-3.0.1137.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1136.1'
1
+ __version__ = '3.0.1137.1'
tccli/command.py CHANGED
@@ -154,7 +154,10 @@ class ServiceCommand(BaseCommand):
154
154
  version = self._cli_data.get_service_default_version(service_name)
155
155
  available_version_list = self._cli_data.get_available_services()[service_name]
156
156
  if version not in available_version_list:
157
- raise Exception("available versions: %s" % " ".join(available_version_list))
157
+ raise Exception("Version: %s is invalid in service: %s, available versions: %s. \n"
158
+ "Please check your command or configure file to find out "
159
+ "if version setting is correct."
160
+ % (service_name, version, " ".join(available_version_list)))
158
161
  self._version = version
159
162
  self._command_map = None
160
163
  self._service_model = None
tccli/help_command.py CHANGED
@@ -26,7 +26,10 @@ class BaseHelpCommand(object):
26
26
  version = self._cli_data.get_service_default_version(service_name)
27
27
  available_version_list = self._cli_data.get_available_services()[service_name]
28
28
  if version not in available_version_list:
29
- raise Exception("available versions: %s" % " ".join(available_version_list))
29
+ raise Exception("Version: %s is invalid in service: %s, available versions: %s. \n"
30
+ "Please check your command or configure file to find out "
31
+ "if version setting is correct."
32
+ % (service_name, version, " ".join(available_version_list)))
30
33
  self._version = version
31
34
 
32
35
  def __call__(self, args, parsed_globals):
@@ -7178,7 +7178,7 @@
7178
7178
  "example": "2",
7179
7179
  "member": "int64",
7180
7180
  "name": "TotalCount",
7181
- "required": true,
7181
+ "output_required": true,
7182
7182
  "type": "int",
7183
7183
  "value_allowed_null": false
7184
7184
  },
@@ -7188,7 +7188,7 @@
7188
7188
  "example": "无",
7189
7189
  "member": "AccountInfo",
7190
7190
  "name": "Items",
7191
- "required": true,
7191
+ "output_required": true,
7192
7192
  "type": "list",
7193
7193
  "value_allowed_null": false
7194
7194
  },
@@ -7198,7 +7198,7 @@
7198
7198
  "example": "10240",
7199
7199
  "member": "int64",
7200
7200
  "name": "MaxUserConnections",
7201
- "required": true,
7201
+ "output_required": true,
7202
7202
  "type": "int",
7203
7203
  "value_allowed_null": false
7204
7204
  },
@@ -1596,6 +1596,34 @@
1596
1596
  ],
1597
1597
  "usage": "both"
1598
1598
  },
1599
+ "AnonymousInfo": {
1600
+ "document": "免鉴权信息",
1601
+ "members": [
1602
+ {
1603
+ "disabled": false,
1604
+ "document": "操作列表,支持trackLog(JS/HTTP上传日志 )和realtimeProducer(kafka协议上传日志)",
1605
+ "example": "无",
1606
+ "member": "string",
1607
+ "name": "Operations",
1608
+ "output_required": false,
1609
+ "required": false,
1610
+ "type": "list",
1611
+ "value_allowed_null": false
1612
+ },
1613
+ {
1614
+ "disabled": false,
1615
+ "document": "条件列表",
1616
+ "example": "无",
1617
+ "member": "ConditionInfo",
1618
+ "name": "Conditions",
1619
+ "output_required": false,
1620
+ "required": false,
1621
+ "type": "list",
1622
+ "value_allowed_null": false
1623
+ }
1624
+ ],
1625
+ "usage": "both"
1626
+ },
1599
1627
  "ApplyConfigToMachineGroupRequest": {
1600
1628
  "document": "ApplyConfigToMachineGroup请求参数结构体",
1601
1629
  "members": [
@@ -1984,6 +2012,45 @@
1984
2012
  ],
1985
2013
  "usage": "both"
1986
2014
  },
2015
+ "ConditionInfo": {
2016
+ "document": "免鉴权条件信息",
2017
+ "members": [
2018
+ {
2019
+ "disabled": false,
2020
+ "document": "条件属性,目前只支持VpcID",
2021
+ "example": "VpcID",
2022
+ "member": "string",
2023
+ "name": "Attributes",
2024
+ "output_required": false,
2025
+ "required": false,
2026
+ "type": "string",
2027
+ "value_allowed_null": false
2028
+ },
2029
+ {
2030
+ "disabled": false,
2031
+ "document": "条件规则,1:等于,2:不等于",
2032
+ "example": "1",
2033
+ "member": "uint64",
2034
+ "name": "Rule",
2035
+ "output_required": false,
2036
+ "required": false,
2037
+ "type": "int",
2038
+ "value_allowed_null": false
2039
+ },
2040
+ {
2041
+ "disabled": false,
2042
+ "document": "对应条件属性的值",
2043
+ "example": "vpc-6jfhit1t",
2044
+ "member": "string",
2045
+ "name": "ConditionValue",
2046
+ "output_required": false,
2047
+ "required": false,
2048
+ "type": "string",
2049
+ "value_allowed_null": false
2050
+ }
2051
+ ],
2052
+ "usage": "both"
2053
+ },
1987
2054
  "ConfigExtraInfo": {
1988
2055
  "document": "特殊采集规则配置信息",
1989
2056
  "members": [
@@ -4759,6 +4826,15 @@
4759
4826
  "name": "IsWebTracking",
4760
4827
  "required": false,
4761
4828
  "type": "bool"
4829
+ },
4830
+ {
4831
+ "disabled": false,
4832
+ "document": "日志主题扩展信息",
4833
+ "example": "无",
4834
+ "member": "TopicExtendInfo",
4835
+ "name": "Extends",
4836
+ "required": false,
4837
+ "type": "object"
4762
4838
  }
4763
4839
  ],
4764
4840
  "type": "object"
@@ -13441,6 +13517,23 @@
13441
13517
  ],
13442
13518
  "usage": "both"
13443
13519
  },
13520
+ "TopicExtendInfo": {
13521
+ "document": "日志主题扩展信息",
13522
+ "members": [
13523
+ {
13524
+ "disabled": false,
13525
+ "document": "日志主题免鉴权配置信息\n注意:此字段可能返回 null,表示取不到有效值。",
13526
+ "example": "无",
13527
+ "member": "AnonymousInfo",
13528
+ "name": "AnonymousAccess",
13529
+ "output_required": false,
13530
+ "required": false,
13531
+ "type": "object",
13532
+ "value_allowed_null": true
13533
+ }
13534
+ ],
13535
+ "usage": "both"
13536
+ },
13444
13537
  "TopicIdAndRegion": {
13445
13538
  "document": "仪表盘 topic与地域信息",
13446
13539
  "members": [
@@ -21129,58 +21129,6 @@ def doDescribeAssetTypes(args, parsed_globals):
21129
21129
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
21130
21130
 
21131
21131
 
21132
- def doDeleteAttackLogs(args, parsed_globals):
21133
- g_param = parse_global_arg(parsed_globals)
21134
-
21135
- if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
21136
- cred = credential.CVMRoleCredential()
21137
- elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
21138
- cred = credential.STSAssumeRoleCredential(
21139
- g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
21140
- g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
21141
- )
21142
- 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):
21143
- cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
21144
- else:
21145
- cred = credential.Credential(
21146
- g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
21147
- )
21148
- http_profile = HttpProfile(
21149
- reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
21150
- reqMethod="POST",
21151
- endpoint=g_param[OptionsDefine.Endpoint],
21152
- proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
21153
- )
21154
- profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
21155
- if g_param[OptionsDefine.Language]:
21156
- profile.language = g_param[OptionsDefine.Language]
21157
- mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
21158
- client = mod.CwpClient(cred, g_param[OptionsDefine.Region], profile)
21159
- client._sdkVersion += ("_CLI_" + __version__)
21160
- models = MODELS_MAP[g_param[OptionsDefine.Version]]
21161
- model = models.DeleteAttackLogsRequest()
21162
- model.from_json_string(json.dumps(args))
21163
- start_time = time.time()
21164
- while True:
21165
- rsp = client.DeleteAttackLogs(model)
21166
- result = rsp.to_json_string()
21167
- try:
21168
- json_obj = json.loads(result)
21169
- except TypeError as e:
21170
- json_obj = json.loads(result.decode('utf-8')) # python3.3
21171
- if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
21172
- break
21173
- cur_time = time.time()
21174
- if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
21175
- raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
21176
- (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
21177
- search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
21178
- else:
21179
- print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
21180
- time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
21181
- FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
21182
-
21183
-
21184
21132
  def doDescribeVulLabels(args, parsed_globals):
21185
21133
  g_param = parse_global_arg(parsed_globals)
21186
21134
 
@@ -27318,7 +27266,6 @@ ACTION_MAP = {
27318
27266
  "DescribeAssetSystemPackageList": doDescribeAssetSystemPackageList,
27319
27267
  "DescribeSecurityBroadcasts": doDescribeSecurityBroadcasts,
27320
27268
  "DescribeAssetTypes": doDescribeAssetTypes,
27321
- "DeleteAttackLogs": doDeleteAttackLogs,
27322
27269
  "DescribeVulLabels": doDescribeVulLabels,
27323
27270
  "DescribeHistoryService": doDescribeHistoryService,
27324
27271
  "StopBaselineDetect": doStopBaselineDetect,
@@ -203,13 +203,6 @@
203
203
  "output": "DeleteAllJavaMemShellsResponse",
204
204
  "status": "online"
205
205
  },
206
- "DeleteAttackLogs": {
207
- "document": "ModifyEventAttackStatus 接口替代\n\n删除网络攻击日志",
208
- "input": "DeleteAttackLogsRequest",
209
- "name": "删除网络攻击日志",
210
- "output": "DeleteAttackLogsResponse",
211
- "status": "deprecated"
212
- },
213
206
  "DeleteBanWhiteList": {
214
207
  "document": "删除阻断白名单列表",
215
208
  "input": "DeleteBanWhiteListRequest",
@@ -15429,42 +15422,6 @@
15429
15422
  ],
15430
15423
  "type": "object"
15431
15424
  },
15432
- "DeleteAttackLogsRequest": {
15433
- "document": "DeleteAttackLogs请求参数结构体",
15434
- "members": [
15435
- {
15436
- "disabled": false,
15437
- "document": "日志ID数组,最大100条。",
15438
- "example": "[]",
15439
- "member": "uint64",
15440
- "name": "Ids",
15441
- "required": false,
15442
- "type": "list"
15443
- },
15444
- {
15445
- "disabled": false,
15446
- "document": "是否全部删除",
15447
- "example": "true",
15448
- "member": "bool",
15449
- "name": "IsAll",
15450
- "required": false,
15451
- "type": "bool"
15452
- }
15453
- ],
15454
- "type": "object"
15455
- },
15456
- "DeleteAttackLogsResponse": {
15457
- "document": "DeleteAttackLogs返回参数结构体",
15458
- "members": [
15459
- {
15460
- "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
15461
- "member": "string",
15462
- "name": "RequestId",
15463
- "type": "string"
15464
- }
15465
- ],
15466
- "type": "object"
15467
- },
15468
15425
  "DeleteBanWhiteListRequest": {
15469
15426
  "document": "DeleteBanWhiteList请求参数结构体",
15470
15427
  "members": [
@@ -238,14 +238,6 @@
238
238
  "title": "删除全部java内存马事件"
239
239
  }
240
240
  ],
241
- "DeleteAttackLogs": [
242
- {
243
- "document": "删除网络攻击日志",
244
- "input": "POST / HTTP/1.1\nHost: cwp.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteAttackLogs\n<公共请求参数>\n\n{\n \"Ids\": [\n \"2\",\n \"1\"\n ]\n}",
245
- "output": "{\n \"Response\": {\n \"RequestId\": \"354f4ac3-8546-4516-8c8a-69e3ab73aa8a\"\n }\n}",
246
- "title": "删除网络攻击日志"
247
- }
248
- ],
249
241
  "DeleteBanWhiteList": [
250
242
  {
251
243
  "document": "",
@@ -1821,6 +1821,16 @@
1821
1821
  "output_required": false,
1822
1822
  "type": "list",
1823
1823
  "value_allowed_null": true
1824
+ },
1825
+ {
1826
+ "disabled": false,
1827
+ "document": "事务ID\n注意:此字段可能返回 null,表示取不到有效值。",
1828
+ "example": "无",
1829
+ "member": "int64",
1830
+ "name": "TrxId",
1831
+ "output_required": false,
1832
+ "type": "int",
1833
+ "value_allowed_null": true
1824
1834
  }
1825
1835
  ],
1826
1836
  "usage": "out"
@@ -2696,7 +2696,7 @@
2696
2696
  },
2697
2697
  {
2698
2698
  "disabled": false,
2699
- "document": "表类型",
2699
+ "document": "表类型:EXTERNAL_TABLE, VIRTUAL_VIEW, MATERIALIZED_VIEW",
2700
2700
  "example": "EXTERNAL",
2701
2701
  "member": "string",
2702
2702
  "name": "Type",
@@ -7415,7 +7415,7 @@
7415
7415
  "example": "n1",
7416
7416
  "member": "string",
7417
7417
  "name": "Name",
7418
- "required": true,
7418
+ "output_required": true,
7419
7419
  "type": "string",
7420
7420
  "value_allowed_null": true
7421
7421
  },
@@ -7425,7 +7425,7 @@
7425
7425
  "example": "schema1",
7426
7426
  "member": "string",
7427
7427
  "name": "SchemaName",
7428
- "required": true,
7428
+ "output_required": true,
7429
7429
  "type": "string",
7430
7430
  "value_allowed_null": true
7431
7431
  },
@@ -7435,7 +7435,7 @@
7435
7435
  "example": "cosn://123",
7436
7436
  "member": "string",
7437
7437
  "name": "Location",
7438
- "required": true,
7438
+ "output_required": true,
7439
7439
  "type": "string",
7440
7440
  "value_allowed_null": true
7441
7441
  },
@@ -7445,7 +7445,7 @@
7445
7445
  "example": "无",
7446
7446
  "member": "Asset",
7447
7447
  "name": "Asset",
7448
- "required": true,
7448
+ "output_required": true,
7449
7449
  "type": "object",
7450
7450
  "value_allowed_null": true
7451
7451
  },
@@ -7682,7 +7682,7 @@
7682
7682
  "example": "无",
7683
7683
  "member": "Asset",
7684
7684
  "name": "Asset",
7685
- "required": true,
7685
+ "output_required": true,
7686
7686
  "type": "object",
7687
7687
  "value_allowed_null": true
7688
7688
  },
@@ -7692,7 +7692,7 @@
7692
7692
  "example": "select 1",
7693
7693
  "member": "string",
7694
7694
  "name": "ViewOriginalText",
7695
- "required": true,
7695
+ "output_required": true,
7696
7696
  "type": "string",
7697
7697
  "value_allowed_null": true
7698
7698
  },
@@ -7702,7 +7702,7 @@
7702
7702
  "example": "select 1",
7703
7703
  "member": "string",
7704
7704
  "name": "ViewExpandedText",
7705
- "required": true,
7705
+ "output_required": true,
7706
7706
  "type": "string",
7707
7707
  "value_allowed_null": true
7708
7708
  },
@@ -7712,7 +7712,7 @@
7712
7712
  "example": "1",
7713
7713
  "member": "int64",
7714
7714
  "name": "Retention",
7715
- "required": true,
7715
+ "output_required": true,
7716
7716
  "type": "int",
7717
7717
  "value_allowed_null": true
7718
7718
  },
@@ -7722,7 +7722,7 @@
7722
7722
  "example": "无",
7723
7723
  "member": "DMSSds",
7724
7724
  "name": "Sds",
7725
- "required": true,
7725
+ "output_required": true,
7726
7726
  "type": "object",
7727
7727
  "value_allowed_null": true
7728
7728
  },
@@ -7732,7 +7732,7 @@
7732
7732
  "example": "无",
7733
7733
  "member": "DMSColumn",
7734
7734
  "name": "PartitionKeys",
7735
- "required": true,
7735
+ "output_required": true,
7736
7736
  "type": "list",
7737
7737
  "value_allowed_null": true
7738
7738
  },
@@ -7742,7 +7742,7 @@
7742
7742
  "example": "无",
7743
7743
  "member": "DMSPartition",
7744
7744
  "name": "Partitions",
7745
- "required": true,
7745
+ "output_required": true,
7746
7746
  "type": "list",
7747
7747
  "value_allowed_null": true
7748
7748
  },
@@ -7752,7 +7752,7 @@
7752
7752
  "example": "EXTERNAL",
7753
7753
  "member": "string",
7754
7754
  "name": "Type",
7755
- "required": true,
7755
+ "output_required": true,
7756
7756
  "type": "string",
7757
7757
  "value_allowed_null": true
7758
7758
  },
@@ -7762,7 +7762,7 @@
7762
7762
  "example": "db1",
7763
7763
  "member": "string",
7764
7764
  "name": "DbName",
7765
- "required": true,
7765
+ "output_required": true,
7766
7766
  "type": "string",
7767
7767
  "value_allowed_null": true
7768
7768
  },
@@ -7772,7 +7772,7 @@
7772
7772
  "example": "schema1",
7773
7773
  "member": "string",
7774
7774
  "name": "SchemaName",
7775
- "required": true,
7775
+ "output_required": true,
7776
7776
  "type": "string",
7777
7777
  "value_allowed_null": true
7778
7778
  },
@@ -7782,7 +7782,7 @@
7782
7782
  "example": "1",
7783
7783
  "member": "int64",
7784
7784
  "name": "StorageSize",
7785
- "required": true,
7785
+ "output_required": true,
7786
7786
  "type": "int",
7787
7787
  "value_allowed_null": true
7788
7788
  },
@@ -7792,7 +7792,7 @@
7792
7792
  "example": "0",
7793
7793
  "member": "int64",
7794
7794
  "name": "RecordCount",
7795
- "required": true,
7795
+ "output_required": true,
7796
7796
  "type": "int",
7797
7797
  "value_allowed_null": true
7798
7798
  },
@@ -7802,7 +7802,7 @@
7802
7802
  "example": "1",
7803
7803
  "member": "int64",
7804
7804
  "name": "LifeTime",
7805
- "required": true,
7805
+ "output_required": true,
7806
7806
  "type": "int",
7807
7807
  "value_allowed_null": true
7808
7808
  },
@@ -7812,7 +7812,7 @@
7812
7812
  "example": "2020-01-01 11:11:11",
7813
7813
  "member": "datetime_iso",
7814
7814
  "name": "LastAccessTime",
7815
- "required": true,
7815
+ "output_required": true,
7816
7816
  "type": "string",
7817
7817
  "value_allowed_null": true
7818
7818
  },
@@ -7822,7 +7822,7 @@
7822
7822
  "example": "2020-01-01 11:11:11",
7823
7823
  "member": "datetime_iso",
7824
7824
  "name": "DataUpdateTime",
7825
- "required": true,
7825
+ "output_required": true,
7826
7826
  "type": "string",
7827
7827
  "value_allowed_null": true
7828
7828
  },
@@ -7832,7 +7832,7 @@
7832
7832
  "example": "2020-01-01 11:11:11",
7833
7833
  "member": "datetime_iso",
7834
7834
  "name": "StructUpdateTime",
7835
- "required": true,
7835
+ "output_required": true,
7836
7836
  "type": "string",
7837
7837
  "value_allowed_null": true
7838
7838
  },
@@ -7842,7 +7842,7 @@
7842
7842
  "example": "无",
7843
7843
  "member": "DMSColumn",
7844
7844
  "name": "Columns",
7845
- "required": true,
7845
+ "output_required": true,
7846
7846
  "type": "list",
7847
7847
  "value_allowed_null": true
7848
7848
  },
@@ -7852,7 +7852,7 @@
7852
7852
  "example": "table1",
7853
7853
  "member": "string",
7854
7854
  "name": "Name",
7855
- "required": true,
7855
+ "output_required": true,
7856
7856
  "type": "string",
7857
7857
  "value_allowed_null": true
7858
7858
  },