tccli 3.0.1170.1__py2.py3-none-any.whl → 3.0.1172.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 (33) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/aiart/v20221229/api.json +5 -5
  3. tccli/services/billing/v20180709/api.json +125 -5
  4. tccli/services/cwp/v20180228/api.json +2 -2
  5. tccli/services/emr/v20190103/examples.json +1 -1
  6. tccli/services/es/v20180416/api.json +89 -2
  7. tccli/services/ess/ess_client.py +53 -0
  8. tccli/services/ess/v20201111/api.json +101 -0
  9. tccli/services/ess/v20201111/examples.json +8 -0
  10. tccli/services/essbasic/essbasic_client.py +67 -14
  11. tccli/services/essbasic/v20210526/api.json +92 -0
  12. tccli/services/essbasic/v20210526/examples.json +8 -0
  13. tccli/services/faceid/v20180301/api.json +2 -2
  14. tccli/services/live/v20180801/api.json +4 -4
  15. tccli/services/mongodb/v20190725/api.json +57 -57
  16. tccli/services/mongodb/v20190725/examples.json +2 -2
  17. tccli/services/ms/v20180408/api.json +46 -46
  18. tccli/services/ocr/v20181119/api.json +5 -5
  19. tccli/services/ocr/v20181119/examples.json +2 -2
  20. tccli/services/organization/organization_client.py +2837 -293
  21. tccli/services/organization/v20210331/api.json +7182 -1735
  22. tccli/services/organization/v20210331/examples.json +384 -0
  23. tccli/services/sms/v20210111/api.json +1 -1
  24. tccli/services/tat/tat_client.py +53 -0
  25. tccli/services/tat/v20201028/api.json +149 -5
  26. tccli/services/tat/v20201028/examples.json +8 -0
  27. tccli/services/trocket/v20230308/api.json +65 -12
  28. tccli/services/vpc/v20170312/api.json +56 -26
  29. {tccli-3.0.1170.1.dist-info → tccli-3.0.1172.1.dist-info}/METADATA +2 -2
  30. {tccli-3.0.1170.1.dist-info → tccli-3.0.1172.1.dist-info}/RECORD +33 -33
  31. {tccli-3.0.1170.1.dist-info → tccli-3.0.1172.1.dist-info}/WHEEL +0 -0
  32. {tccli-3.0.1170.1.dist-info → tccli-3.0.1172.1.dist-info}/entry_points.txt +0 -0
  33. {tccli-3.0.1170.1.dist-info → tccli-3.0.1172.1.dist-info}/license_files/LICENSE +0 -0
@@ -1265,6 +1265,58 @@ def doDisableRegisterCodes(args, parsed_globals):
1265
1265
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1266
1266
 
1267
1267
 
1268
+ def doDescribeScenes(args, parsed_globals):
1269
+ g_param = parse_global_arg(parsed_globals)
1270
+
1271
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
1272
+ cred = credential.CVMRoleCredential()
1273
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
1274
+ cred = credential.STSAssumeRoleCredential(
1275
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
1276
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
1277
+ )
1278
+ 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):
1279
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
1280
+ else:
1281
+ cred = credential.Credential(
1282
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
1283
+ )
1284
+ http_profile = HttpProfile(
1285
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
1286
+ reqMethod="POST",
1287
+ endpoint=g_param[OptionsDefine.Endpoint],
1288
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
1289
+ )
1290
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
1291
+ if g_param[OptionsDefine.Language]:
1292
+ profile.language = g_param[OptionsDefine.Language]
1293
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
1294
+ client = mod.TatClient(cred, g_param[OptionsDefine.Region], profile)
1295
+ client._sdkVersion += ("_CLI_" + __version__)
1296
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
1297
+ model = models.DescribeScenesRequest()
1298
+ model.from_json_string(json.dumps(args))
1299
+ start_time = time.time()
1300
+ while True:
1301
+ rsp = client.DescribeScenes(model)
1302
+ result = rsp.to_json_string()
1303
+ try:
1304
+ json_obj = json.loads(result)
1305
+ except TypeError as e:
1306
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
1307
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
1308
+ break
1309
+ cur_time = time.time()
1310
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
1311
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
1312
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
1313
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
1314
+ else:
1315
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
1316
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
1317
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
1318
+
1319
+
1268
1320
  def doDescribeInvokerRecords(args, parsed_globals):
1269
1321
  g_param = parse_global_arg(parsed_globals)
1270
1322
 
@@ -1508,6 +1560,7 @@ ACTION_MAP = {
1508
1560
  "DescribeAutomationAgentStatus": doDescribeAutomationAgentStatus,
1509
1561
  "DescribeQuotas": doDescribeQuotas,
1510
1562
  "DisableRegisterCodes": doDisableRegisterCodes,
1563
+ "DescribeScenes": doDescribeScenes,
1511
1564
  "DescribeInvokerRecords": doDescribeInvokerRecords,
1512
1565
  "ModifyInvoker": doModifyInvoker,
1513
1566
  "DescribeInvokers": doDescribeInvokers,
@@ -133,6 +133,13 @@
133
133
  "output": "DescribeRegisterInstancesResponse",
134
134
  "status": "online"
135
135
  },
136
+ "DescribeScenes": {
137
+ "document": "此接口用于查询场景详情。",
138
+ "input": "DescribeScenesRequest",
139
+ "name": "查询场景",
140
+ "output": "DescribeScenesResponse",
141
+ "status": "online"
142
+ },
136
143
  "DisableInvoker": {
137
144
  "document": "此接口用于停止执行器。",
138
145
  "input": "DisableInvokerRequest",
@@ -893,7 +900,7 @@
893
900
  {
894
901
  "disabled": false,
895
902
  "document": "参数名。\n注意:此字段可能返回 null,表示取不到有效值。",
896
- "example": "test",
903
+ "example": "name",
897
904
  "member": "string",
898
905
  "name": "ParameterName",
899
906
  "output_required": true,
@@ -904,7 +911,7 @@
904
911
  {
905
912
  "disabled": false,
906
913
  "document": "参数默认值。\n注意:此字段可能返回 null,表示取不到有效值。",
907
- "example": "test001",
914
+ "example": "value",
908
915
  "member": "string",
909
916
  "name": "ParameterValue",
910
917
  "output_required": true,
@@ -915,7 +922,7 @@
915
922
  {
916
923
  "disabled": false,
917
924
  "document": "参数描述。\n注意:此字段可能返回 null,表示取不到有效值。",
918
- "example": "自定义参数test的值为test001。",
925
+ "example": "This is a parameter.",
919
926
  "member": "string",
920
927
  "name": "ParameterDescription",
921
928
  "output_required": true,
@@ -1149,7 +1156,7 @@
1149
1156
  },
1150
1157
  {
1151
1158
  "disabled": false,
1152
- "document": "过滤条件。\n<li> command-id - String - 是否必填:否 -(过滤条件)按照命令ID过滤。</li>\n<li> command-name - String - 是否必填:否 -(过滤条件)按照命令名称过滤。</li>\n<li> command-type - String - 是否必填:否 -(过滤条件)按照命令类型过滤,取值为 SHELL 或 POWERSHELL。</li>\n<li> created-by - String - 是否必填:否 -(过滤条件)按照命令创建者过滤,取值为 TAT 或 USER,TAT 代表公共命令,USER 代表由用户创建的命令。</li>\n<li> tag-key - String - 是否必填:否 -(过滤条件)按照标签键进行过滤。</li>\n<li> tag-value - String - 是否必填:否 -(过滤条件)按照标签值进行过滤。</li>\n<li> tag:tag-key - String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。使用请参考示例4</li>\n\n每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `CommandIds` 和 `Filters` 。",
1159
+ "document": "过滤条件。\n<li> command-id - String - 是否必填:否 -(过滤条件)按照命令ID过滤。</li>\n<li> command-name - String - 是否必填:否 -(过滤条件)按照命令名称过滤。</li>\n<li> command-type - String - 是否必填:否 -(过滤条件)按照命令类型过滤,取值为 SHELL 或 POWERSHELL。</li>\n<li> scene-id - String - 是否必填:否 -(过滤条件)按照场景ID过滤。</li>\n<li> created-by - String - 是否必填:否 -(过滤条件)按照命令创建者过滤,取值为 TAT 或 USER,TAT 代表公共命令,USER 代表由用户创建的命令。</li>\n<li> tag-key - String - 是否必填:否 -(过滤条件)按照标签键进行过滤。</li>\n<li> tag-value - String - 是否必填:否 -(过滤条件)按照标签值进行过滤。</li>\n<li> tag:tag-key - String - 是否必填:否 -(过滤条件)按照标签键值对进行过滤。 tag-key使用具体的标签键进行替换。使用请参考示例4</li>\n\n每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `CommandIds` 和 `Filters` 。",
1153
1160
  "example": "无",
1154
1161
  "member": "Filter",
1155
1162
  "name": "Filters",
@@ -1716,6 +1723,80 @@
1716
1723
  ],
1717
1724
  "type": "object"
1718
1725
  },
1726
+ "DescribeScenesRequest": {
1727
+ "document": "DescribeScenes请求参数结构体",
1728
+ "members": [
1729
+ {
1730
+ "disabled": false,
1731
+ "document": "场景 ID 数组",
1732
+ "example": "[\"sc-12345678\"]",
1733
+ "member": "string",
1734
+ "name": "SceneIds",
1735
+ "required": false,
1736
+ "type": "list"
1737
+ },
1738
+ {
1739
+ "disabled": false,
1740
+ "document": "过滤条件。\n<li> scene-id - String - 是否必填:否 -(过滤条件)按照场景 ID 过滤。</li>\n<li> scene-name - String - 是否必填:否 -(过滤条件)按照场景名称过滤。</li>\n<li> created-by - String - 是否必填:否 -(过滤条件)按照场景创建者过滤,取值为 TAT 或 USER。TAT 代表公共命令,USER 代表由用户创建的命令。</li>\n\n每次请求的 `Filters` 的上限为10, `Filter.Values` 的上限为5。参数不支持同时指定 `SceneIds` 和 `Filters` 。",
1741
+ "example": "{\"scene-id\": \"sc-12345678\"}",
1742
+ "member": "Filter",
1743
+ "name": "Filters",
1744
+ "required": false,
1745
+ "type": "list"
1746
+ },
1747
+ {
1748
+ "disabled": false,
1749
+ "document": "返回数量,默认为20,最大值为100。关于 `Limit` 的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。",
1750
+ "example": "20",
1751
+ "member": "uint64",
1752
+ "name": "Limit",
1753
+ "required": false,
1754
+ "type": "int"
1755
+ },
1756
+ {
1757
+ "disabled": false,
1758
+ "document": "偏移量,默认为0。关于 `Offset` 的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。",
1759
+ "example": "0",
1760
+ "member": "uint64",
1761
+ "name": "Offset",
1762
+ "required": false,
1763
+ "type": "int"
1764
+ }
1765
+ ],
1766
+ "type": "object"
1767
+ },
1768
+ "DescribeScenesResponse": {
1769
+ "document": "DescribeScenes返回参数结构体",
1770
+ "members": [
1771
+ {
1772
+ "disabled": false,
1773
+ "document": "符合条件的场景总数。",
1774
+ "example": "1",
1775
+ "member": "uint64",
1776
+ "name": "TotalCount",
1777
+ "output_required": true,
1778
+ "type": "int",
1779
+ "value_allowed_null": false
1780
+ },
1781
+ {
1782
+ "disabled": false,
1783
+ "document": "场景详情列表。",
1784
+ "example": "无",
1785
+ "member": "Scene",
1786
+ "name": "SceneSet",
1787
+ "output_required": true,
1788
+ "type": "list",
1789
+ "value_allowed_null": false
1790
+ },
1791
+ {
1792
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1793
+ "member": "string",
1794
+ "name": "RequestId",
1795
+ "type": "string"
1796
+ }
1797
+ ],
1798
+ "type": "object"
1799
+ },
1719
1800
  "DisableInvokerRequest": {
1720
1801
  "document": "DisableInvoker请求参数结构体",
1721
1802
  "members": [
@@ -2740,7 +2821,7 @@
2740
2821
  },
2741
2822
  {
2742
2823
  "disabled": false,
2743
- "document": "实例名。",
2824
+ "document": "实例名称。有效长度为 1~60 字符。",
2744
2825
  "example": "register-test",
2745
2826
  "member": "string",
2746
2827
  "name": "InstanceName",
@@ -3257,6 +3338,67 @@
3257
3338
  ],
3258
3339
  "type": "object"
3259
3340
  },
3341
+ "Scene": {
3342
+ "document": "场景详情。",
3343
+ "members": [
3344
+ {
3345
+ "disabled": false,
3346
+ "document": "场景 ID 。\n注意:此字段可能返回 null,表示取不到有效值。",
3347
+ "example": "sc-12345678",
3348
+ "member": "string",
3349
+ "name": "SceneId",
3350
+ "output_required": false,
3351
+ "required": false,
3352
+ "type": "string",
3353
+ "value_allowed_null": true
3354
+ },
3355
+ {
3356
+ "disabled": false,
3357
+ "document": "场景名称。\n注意:此字段可能返回 null,表示取不到有效值。",
3358
+ "example": "运维场景",
3359
+ "member": "string",
3360
+ "name": "SceneName",
3361
+ "output_required": false,
3362
+ "required": false,
3363
+ "type": "string",
3364
+ "value_allowed_null": true
3365
+ },
3366
+ {
3367
+ "disabled": false,
3368
+ "document": "场景创建者。\n注意:此字段可能返回 null,表示取不到有效值。",
3369
+ "example": "USER",
3370
+ "member": "string",
3371
+ "name": "CreatedBy",
3372
+ "output_required": false,
3373
+ "required": false,
3374
+ "type": "string",
3375
+ "value_allowed_null": true
3376
+ },
3377
+ {
3378
+ "disabled": false,
3379
+ "document": "创建时间。\n注意:此字段可能返回 null,表示取不到有效值。",
3380
+ "example": "2021-05-12T02:49:04Z",
3381
+ "member": "string",
3382
+ "name": "CreatedTime",
3383
+ "output_required": false,
3384
+ "required": false,
3385
+ "type": "string",
3386
+ "value_allowed_null": true
3387
+ },
3388
+ {
3389
+ "disabled": false,
3390
+ "document": "更新时间。\n注意:此字段可能返回 null,表示取不到有效值。",
3391
+ "example": "2021-05-12T02:49:04Z",
3392
+ "member": "string",
3393
+ "name": "UpdatedTime",
3394
+ "output_required": false,
3395
+ "required": false,
3396
+ "type": "string",
3397
+ "value_allowed_null": true
3398
+ }
3399
+ ],
3400
+ "usage": "both"
3401
+ },
3260
3402
  "ScheduleSettings": {
3261
3403
  "document": "周期执行器设置。",
3262
3404
  "members": [
@@ -3302,6 +3444,7 @@
3302
3444
  "example": "tag-key",
3303
3445
  "member": "string",
3304
3446
  "name": "Key",
3447
+ "output_required": true,
3305
3448
  "required": true,
3306
3449
  "type": "string",
3307
3450
  "value_allowed_null": false
@@ -3312,6 +3455,7 @@
3312
3455
  "example": "tag-value",
3313
3456
  "member": "string",
3314
3457
  "name": "Value",
3458
+ "output_required": true,
3315
3459
  "required": true,
3316
3460
  "type": "string",
3317
3461
  "value_allowed_null": false
@@ -194,6 +194,14 @@
194
194
  "title": "根据托管实例ID查询托管实例"
195
195
  }
196
196
  ],
197
+ "DescribeScenes": [
198
+ {
199
+ "document": "",
200
+ "input": "POST / HTTP/1.1\nHost: tat.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeScenes\n<公共请求参数>\n\n{\n \"SceneIds\": [\n \"sc-12345678\"\n ],\n \"Offset\": 0,\n \"Limit\": 20\n}",
201
+ "output": "{\n \"Response\": {\n \"RequestId\": \"eb973a12-71e3-4c0c-b1d8-4b863e5f5daf\",\n \"TotalCount\": 1,\n \"SceneSet\": [\n {\n \"SceneId\": \"sc-12345678\",\n \"SceneName\": \"运维场景\",\n \"CreatedBy\": \"USER\",\n \"CreatedTime\": \"2020-11-02T02:48:11+00:00\",\n \"UpdatedTime\": \"2020-11-02T02:48:11+00:00\"\n }\n ]\n }\n}",
202
+ "title": "查询场景"
203
+ }
204
+ ],
197
205
  "DisableInvoker": [
198
206
  {
199
207
  "document": "",
@@ -521,7 +521,7 @@
521
521
  },
522
522
  {
523
523
  "disabled": false,
524
- "document": "实例名称",
524
+ "document": "集群名称",
525
525
  "example": "testName",
526
526
  "member": "string",
527
527
  "name": "Name",
@@ -557,7 +557,7 @@
557
557
  },
558
558
  {
559
559
  "disabled": false,
560
- "document": "实例绑定的VPC信息",
560
+ "document": "集群绑定的VPC信息,必填",
561
561
  "example": "[]",
562
562
  "member": "VpcInfo",
563
563
  "name": "VpcList",
@@ -566,7 +566,7 @@
566
566
  },
567
567
  {
568
568
  "disabled": false,
569
- "document": "是否开启公网",
569
+ "document": "是否开启公网,默认值为false表示不开启",
570
570
  "example": "true",
571
571
  "member": "bool",
572
572
  "name": "EnablePublic",
@@ -575,7 +575,16 @@
575
575
  },
576
576
  {
577
577
  "disabled": false,
578
- "document": "公网带宽(单位:兆)",
578
+ "document": "公网是否按流量计费,默认值为false表示不按流量计费",
579
+ "example": "false",
580
+ "member": "bool",
581
+ "name": "BillingFlow",
582
+ "required": false,
583
+ "type": "bool"
584
+ },
585
+ {
586
+ "disabled": false,
587
+ "document": "公网带宽(单位:兆),默认值为0。如果开启公网,该字段必须为大于0的正整数",
579
588
  "example": "2",
580
589
  "member": "int64",
581
590
  "name": "Bandwidth",
@@ -602,7 +611,7 @@
602
611
  },
603
612
  {
604
613
  "disabled": false,
605
- "document": "付费模式(0: 后付费;1: 预付费)",
614
+ "document": "付费模式(0: 后付费;1: 预付费),默认值为0",
606
615
  "example": "0",
607
616
  "member": "int64",
608
617
  "name": "PayMode",
@@ -611,7 +620,7 @@
611
620
  },
612
621
  {
613
622
  "disabled": false,
614
- "document": "是否自动续费(0: 不自动续费;1: 自动续费)",
623
+ "document": "是否自动续费(0: 不自动续费;1: 自动续费),默认值为0",
615
624
  "example": "1",
616
625
  "member": "int64",
617
626
  "name": "RenewFlag",
@@ -620,7 +629,7 @@
620
629
  },
621
630
  {
622
631
  "disabled": false,
623
- "document": "购买时长(单位:月)",
632
+ "document": "购买时长(单位:月),默认值为1",
624
633
  "example": "1",
625
634
  "member": "int64",
626
635
  "name": "TimeSpan",
@@ -5648,7 +5657,7 @@
5648
5657
  {
5649
5658
  "disabled": false,
5650
5659
  "document": "消费组名称\n注意:此字段可能返回 null,表示取不到有效值。",
5651
- "example": "",
5660
+ "example": "group1",
5652
5661
  "member": "string",
5653
5662
  "name": "GroupName",
5654
5663
  "output_required": true,
@@ -5659,7 +5668,7 @@
5659
5668
  {
5660
5669
  "disabled": false,
5661
5670
  "document": "备注信息\n注意:此字段可能返回 null,表示取不到有效值。",
5662
- "example": "",
5671
+ "example": "remark1",
5663
5672
  "member": "string",
5664
5673
  "name": "Remark",
5665
5674
  "output_required": false,
@@ -5670,7 +5679,7 @@
5670
5679
  {
5671
5680
  "disabled": false,
5672
5681
  "document": "是否已导入,作为入参时无效\n注意:此字段可能返回 null,表示取不到有效值。",
5673
- "example": "",
5682
+ "example": "true",
5674
5683
  "member": "bool",
5675
5684
  "name": "Imported",
5676
5685
  "output_required": true,
@@ -5681,7 +5690,7 @@
5681
5690
  {
5682
5691
  "disabled": false,
5683
5692
  "document": "命名空间,仅4.x集群有效\n注意:此字段可能返回 null,表示取不到有效值。",
5684
- "example": "",
5693
+ "example": "namespace1",
5685
5694
  "member": "string",
5686
5695
  "name": "Namespace",
5687
5696
  "output_required": false,
@@ -5692,13 +5701,57 @@
5692
5701
  {
5693
5702
  "disabled": false,
5694
5703
  "document": "导入状态\nUnknown 未知\nSuccess 成功\nFailure 失败\nAlreadyExists 已存在\n注意:此字段可能返回 null,表示取不到有效值。",
5695
- "example": "",
5704
+ "example": "Success",
5696
5705
  "member": "string",
5697
5706
  "name": "ImportStatus",
5698
5707
  "output_required": false,
5699
5708
  "required": false,
5700
5709
  "type": "string",
5701
5710
  "value_allowed_null": true
5711
+ },
5712
+ {
5713
+ "disabled": false,
5714
+ "document": "4.x的命名空间,出参使用\n注意:此字段可能返回 null,表示取不到有效值。",
5715
+ "example": "namespace1",
5716
+ "member": "string",
5717
+ "name": "NamespaceV4",
5718
+ "output_required": false,
5719
+ "required": false,
5720
+ "type": "string",
5721
+ "value_allowed_null": true
5722
+ },
5723
+ {
5724
+ "disabled": false,
5725
+ "document": "4.x的消费组名,出参使用\n注意:此字段可能返回 null,表示取不到有效值。",
5726
+ "example": "group1",
5727
+ "member": "string",
5728
+ "name": "GroupNameV4",
5729
+ "output_required": false,
5730
+ "required": false,
5731
+ "type": "string",
5732
+ "value_allowed_null": true
5733
+ },
5734
+ {
5735
+ "disabled": false,
5736
+ "document": "4.x的完整命名空间,出参使用\n注意:此字段可能返回 null,表示取不到有效值。",
5737
+ "example": "namespace1",
5738
+ "member": "string",
5739
+ "name": "FullNamespaceV4",
5740
+ "output_required": false,
5741
+ "required": false,
5742
+ "type": "string",
5743
+ "value_allowed_null": true
5744
+ },
5745
+ {
5746
+ "disabled": false,
5747
+ "document": "是否为顺序投递,5.0有效\n注意:此字段可能返回 null,表示取不到有效值。",
5748
+ "example": "false",
5749
+ "member": "bool",
5750
+ "name": "ConsumeMessageOrderly",
5751
+ "output_required": false,
5752
+ "required": false,
5753
+ "type": "bool",
5754
+ "value_allowed_null": true
5702
5755
  }
5703
5756
  ],
5704
5757
  "usage": "both"
@@ -4882,6 +4882,16 @@
4882
4882
  "output_required": false,
4883
4883
  "type": "bool",
4884
4884
  "value_allowed_null": true
4885
+ },
4886
+ {
4887
+ "disabled": false,
4888
+ "document": "是否支持ipv6路由表\n注意:此字段可能返回 null,表示取不到有效值。",
4889
+ "example": "True",
4890
+ "member": "string",
4891
+ "name": "Ipv6Flag",
4892
+ "output_required": false,
4893
+ "type": "string",
4894
+ "value_allowed_null": true
4885
4895
  }
4886
4896
  ],
4887
4897
  "usage": "out"
@@ -5517,132 +5527,152 @@
5517
5527
  {
5518
5528
  "disabled": false,
5519
5529
  "document": "路由策略ID",
5520
- "example": "",
5530
+ "example": "",
5521
5531
  "member": "string",
5522
5532
  "name": "RouteId",
5523
- "required": false,
5533
+ "output_required": true,
5524
5534
  "type": "string",
5525
5535
  "value_allowed_null": false
5526
5536
  },
5527
5537
  {
5528
5538
  "disabled": false,
5529
5539
  "document": "目的端",
5530
- "example": "",
5540
+ "example": "",
5531
5541
  "member": "string",
5532
5542
  "name": "DestinationCidrBlock",
5533
- "required": true,
5543
+ "output_required": true,
5534
5544
  "type": "string",
5535
5545
  "value_allowed_null": false
5536
5546
  },
5537
5547
  {
5538
5548
  "disabled": false,
5539
5549
  "document": "下一跳类型(关联实例类型),所有类型:VPC、DIRECTCONNECT",
5540
- "example": "",
5550
+ "example": "",
5541
5551
  "member": "string",
5542
5552
  "name": "InstanceType",
5543
- "required": true,
5553
+ "output_required": true,
5544
5554
  "type": "string",
5545
5555
  "value_allowed_null": false
5546
5556
  },
5547
5557
  {
5548
5558
  "disabled": false,
5549
5559
  "document": "下一跳(关联实例)",
5550
- "example": "",
5560
+ "example": "",
5551
5561
  "member": "string",
5552
5562
  "name": "InstanceId",
5553
- "required": true,
5563
+ "output_required": true,
5554
5564
  "type": "string",
5555
5565
  "value_allowed_null": false
5556
5566
  },
5557
5567
  {
5558
5568
  "disabled": false,
5559
5569
  "document": "下一跳名称(关联实例名称)",
5560
- "example": "",
5570
+ "example": "",
5561
5571
  "member": "string",
5562
5572
  "name": "InstanceName",
5563
- "required": true,
5573
+ "output_required": true,
5564
5574
  "type": "string",
5565
5575
  "value_allowed_null": false
5566
5576
  },
5567
5577
  {
5568
5578
  "disabled": false,
5569
5579
  "document": "下一跳所属地域(关联实例所属地域)",
5570
- "example": "",
5580
+ "example": "",
5571
5581
  "member": "string",
5572
5582
  "name": "InstanceRegion",
5573
- "required": true,
5583
+ "output_required": true,
5574
5584
  "type": "string",
5575
5585
  "value_allowed_null": false
5576
5586
  },
5577
5587
  {
5578
5588
  "disabled": false,
5579
5589
  "document": "更新时间",
5580
- "example": "",
5590
+ "example": "",
5581
5591
  "member": "datetime",
5582
5592
  "name": "UpdateTime",
5583
- "required": true,
5593
+ "output_required": true,
5584
5594
  "type": "string",
5585
5595
  "value_allowed_null": false
5586
5596
  },
5587
5597
  {
5588
5598
  "disabled": false,
5589
5599
  "document": "路由是否启用",
5590
- "example": "",
5600
+ "example": "",
5591
5601
  "member": "bool",
5592
5602
  "name": "Enabled",
5593
- "required": true,
5603
+ "output_required": true,
5594
5604
  "type": "bool",
5595
5605
  "value_allowed_null": false
5596
5606
  },
5597
5607
  {
5598
5608
  "disabled": false,
5599
5609
  "document": "关联实例所属UIN(根账号)",
5600
- "example": "",
5610
+ "example": "",
5601
5611
  "member": "string",
5602
5612
  "name": "InstanceUin",
5603
- "required": true,
5613
+ "output_required": true,
5604
5614
  "type": "string",
5605
5615
  "value_allowed_null": false
5606
5616
  },
5607
5617
  {
5608
5618
  "disabled": false,
5609
5619
  "document": "路由的扩展状态",
5610
- "example": "",
5620
+ "example": "",
5611
5621
  "member": "string",
5612
5622
  "name": "ExtraState",
5613
- "required": true,
5623
+ "output_required": true,
5614
5624
  "type": "string",
5615
5625
  "value_allowed_null": false
5616
5626
  },
5617
5627
  {
5618
5628
  "disabled": false,
5619
5629
  "document": "是否动态路由",
5620
- "example": "",
5630
+ "example": "",
5621
5631
  "member": "bool",
5622
5632
  "name": "IsBgp",
5623
- "required": true,
5633
+ "output_required": true,
5624
5634
  "type": "bool",
5625
5635
  "value_allowed_null": false
5626
5636
  },
5627
5637
  {
5628
5638
  "disabled": false,
5629
5639
  "document": "路由优先级",
5630
- "example": "",
5640
+ "example": "",
5631
5641
  "member": "uint64",
5632
5642
  "name": "RoutePriority",
5633
- "required": true,
5643
+ "output_required": true,
5634
5644
  "type": "int",
5635
5645
  "value_allowed_null": false
5636
5646
  },
5637
5647
  {
5638
5648
  "disabled": false,
5639
5649
  "document": "下一跳扩展名称(关联实例的扩展名称)",
5640
- "example": "",
5650
+ "example": "",
5641
5651
  "member": "string",
5642
5652
  "name": "InstanceExtraName",
5643
- "required": true,
5653
+ "output_required": true,
5644
5654
  "type": "string",
5645
5655
  "value_allowed_null": false
5656
+ },
5657
+ {
5658
+ "disabled": false,
5659
+ "document": "实例类型\n注意:此字段可能返回 null,表示取不到有效值。",
5660
+ "example": "无",
5661
+ "member": "string",
5662
+ "name": "AliasType",
5663
+ "output_required": false,
5664
+ "type": "string",
5665
+ "value_allowed_null": true
5666
+ },
5667
+ {
5668
+ "disabled": false,
5669
+ "document": "实例id\n注意:此字段可能返回 null,表示取不到有效值。",
5670
+ "example": "无",
5671
+ "member": "string",
5672
+ "name": "AliasInstanceId",
5673
+ "output_required": false,
5674
+ "type": "string",
5675
+ "value_allowed_null": true
5646
5676
  }
5647
5677
  ],
5648
5678
  "usage": "out"