tccli 3.0.1136.1__py2.py3-none-any.whl → 3.0.1138.1__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/command.py +4 -1
  3. tccli/help_command.py +4 -1
  4. tccli/services/asr/v20190614/api.json +9 -0
  5. tccli/services/cdb/v20170320/api.json +3 -3
  6. tccli/services/cdwch/v20200915/api.json +1 -1
  7. tccli/services/ckafka/v20190819/api.json +25 -25
  8. tccli/services/ckafka/v20190819/examples.json +18 -18
  9. tccli/services/cls/v20201016/api.json +117 -5
  10. tccli/services/cls/v20201016/examples.json +1 -1
  11. tccli/services/cwp/cwp_client.py +0 -53
  12. tccli/services/cwp/v20180228/api.json +0 -43
  13. tccli/services/cwp/v20180228/examples.json +0 -8
  14. tccli/services/cynosdb/v20190107/api.json +10 -0
  15. tccli/services/dlc/v20210125/api.json +23 -23
  16. tccli/services/dlc/v20210125/examples.json +6 -6
  17. tccli/services/domain/v20180808/api.json +36 -0
  18. tccli/services/dts/v20211206/api.json +3 -3
  19. tccli/services/ess/v20201111/api.json +2 -2
  20. tccli/services/ess/v20201111/examples.json +2 -2
  21. tccli/services/essbasic/v20210526/api.json +4 -4
  22. tccli/services/essbasic/v20210526/examples.json +2 -2
  23. tccli/services/faceid/v20180301/api.json +1 -1
  24. tccli/services/ioa/ioa_client.py +159 -0
  25. tccli/services/ioa/v20220601/api.json +897 -80
  26. tccli/services/ioa/v20220601/examples.json +24 -0
  27. tccli/services/iotexplorer/iotexplorer_client.py +178 -19
  28. tccli/services/iotexplorer/v20190423/api.json +210 -0
  29. tccli/services/iotexplorer/v20190423/examples.json +24 -0
  30. tccli/services/live/v20180801/api.json +12 -6
  31. tccli/services/ocr/v20181119/api.json +2 -2
  32. tccli/services/partners/v20180321/api.json +26 -16
  33. tccli/services/redis/v20180412/api.json +23 -23
  34. tccli/services/ssl/v20191205/api.json +171 -5
  35. tccli/services/ssl/v20191205/examples.json +1 -1
  36. tccli/services/tcr/v20190924/api.json +57 -35
  37. tccli/services/tcr/v20190924/examples.json +4 -4
  38. tccli/services/tcss/v20201101/api.json +123 -13
  39. tccli/services/tcss/v20201101/examples.json +3 -3
  40. tccli/services/tdmq/v20200217/api.json +7 -5
  41. tccli/services/thpc/v20230321/api.json +42 -21
  42. tccli/services/tke/v20180525/api.json +162 -74
  43. tccli/services/tke/v20180525/examples.json +69 -57
  44. tccli/services/trtc/v20190722/api.json +1 -1
  45. tccli/services/tsf/v20180326/api.json +1 -1
  46. tccli/services/tts/v20190823/api.json +2 -2
  47. tccli/services/wedata/v20210820/api.json +377 -0
  48. tccli/services/wedata/v20210820/examples.json +8 -0
  49. tccli/services/wedata/wedata_client.py +61 -8
  50. {tccli-3.0.1136.1.dist-info → tccli-3.0.1138.1.dist-info}/METADATA +2 -2
  51. {tccli-3.0.1136.1.dist-info → tccli-3.0.1138.1.dist-info}/RECORD +54 -54
  52. {tccli-3.0.1136.1.dist-info → tccli-3.0.1138.1.dist-info}/WHEEL +0 -0
  53. {tccli-3.0.1136.1.dist-info → tccli-3.0.1138.1.dist-info}/entry_points.txt +0 -0
  54. {tccli-3.0.1136.1.dist-info → tccli-3.0.1138.1.dist-info}/license_files/LICENSE +0 -0
@@ -1001,7 +1001,7 @@
1001
1001
  {
1002
1002
  "disabled": false,
1003
1003
  "document": "待创建的实例名称",
1004
- "example": "",
1004
+ "example": "test123",
1005
1005
  "member": "string",
1006
1006
  "name": "RegistryName",
1007
1007
  "required": true,
@@ -1016,12 +1016,23 @@
1016
1016
  {
1017
1017
  "disabled": false,
1018
1018
  "document": "检查结果,true为合法,false为非法",
1019
- "example": "",
1019
+ "example": "true",
1020
1020
  "member": "bool",
1021
1021
  "name": "IsValidated",
1022
+ "output_required": true,
1022
1023
  "type": "bool",
1023
1024
  "value_allowed_null": false
1024
1025
  },
1026
+ {
1027
+ "disabled": false,
1028
+ "document": "1: Illegal(名子非法), 2:Reserved(名字保留), 3:Existed(名字已存在)\n注意:此字段可能返回 null,表示取不到有效值。",
1029
+ "example": "1",
1030
+ "member": "int64",
1031
+ "name": "DetailCode",
1032
+ "output_required": true,
1033
+ "type": "int",
1034
+ "value_allowed_null": true
1035
+ },
1025
1036
  {
1026
1037
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1027
1038
  "member": "string",
@@ -1055,7 +1066,7 @@
1055
1066
  "example": "true",
1056
1067
  "member": "bool",
1057
1068
  "name": "IsValidated",
1058
- "required": true,
1069
+ "output_required": true,
1059
1070
  "type": "bool",
1060
1071
  "value_allowed_null": false
1061
1072
  },
@@ -1065,7 +1076,7 @@
1065
1076
  "example": "1",
1066
1077
  "member": "uint64",
1067
1078
  "name": "RegionId",
1068
- "required": true,
1079
+ "output_required": true,
1069
1080
  "type": "int",
1070
1081
  "value_allowed_null": false
1071
1082
  },
@@ -3896,9 +3907,10 @@
3896
3907
  {
3897
3908
  "disabled": false,
3898
3909
  "document": "全局自动删除策略信息",
3899
- "example": "",
3910
+ "example": "",
3900
3911
  "member": "AutoDelStrategyInfoResp",
3901
3912
  "name": "Data",
3913
+ "output_required": true,
3902
3914
  "type": "object",
3903
3915
  "value_allowed_null": false
3904
3916
  },
@@ -3917,7 +3929,7 @@
3917
3929
  {
3918
3930
  "disabled": false,
3919
3931
  "document": "仓库名称",
3920
- "example": "",
3932
+ "example": "",
3921
3933
  "member": "string",
3922
3934
  "name": "RepoName",
3923
3935
  "required": true,
@@ -3932,9 +3944,10 @@
3932
3944
  {
3933
3945
  "disabled": false,
3934
3946
  "document": "自动删除策略信息",
3935
- "example": "",
3947
+ "example": "",
3936
3948
  "member": "AutoDelStrategyInfoResp",
3937
3949
  "name": "Data",
3950
+ "output_required": true,
3938
3951
  "type": "object",
3939
3952
  "value_allowed_null": false
3940
3953
  },
@@ -4456,7 +4469,7 @@
4456
4469
  {
4457
4470
  "disabled": false,
4458
4471
  "document": "实例ID列表(为空时,\n表示获取账号下所有实例)",
4459
- "example": "",
4472
+ "example": "tcr-xxx",
4460
4473
  "member": "string",
4461
4474
  "name": "Registryids",
4462
4475
  "required": false,
@@ -4465,7 +4478,7 @@
4465
4478
  {
4466
4479
  "disabled": false,
4467
4480
  "document": "偏移量,默认0",
4468
- "example": "",
4481
+ "example": "0",
4469
4482
  "member": "int64",
4470
4483
  "name": "Offset",
4471
4484
  "required": false,
@@ -4474,7 +4487,7 @@
4474
4487
  {
4475
4488
  "disabled": false,
4476
4489
  "document": "最大输出条数,默认20,最大为100",
4477
- "example": "",
4490
+ "example": "20",
4478
4491
  "member": "int64",
4479
4492
  "name": "Limit",
4480
4493
  "required": false,
@@ -4483,7 +4496,7 @@
4483
4496
  {
4484
4497
  "disabled": false,
4485
4498
  "document": "过滤条件",
4486
- "example": "",
4499
+ "example": "nil",
4487
4500
  "member": "Filter",
4488
4501
  "name": "Filters",
4489
4502
  "required": false,
@@ -4492,7 +4505,7 @@
4492
4505
  {
4493
4506
  "disabled": false,
4494
4507
  "document": "获取所有地域的实例,默认为False",
4495
- "example": "",
4508
+ "example": "true",
4496
4509
  "member": "bool",
4497
4510
  "name": "AllRegion",
4498
4511
  "required": false,
@@ -4507,18 +4520,20 @@
4507
4520
  {
4508
4521
  "disabled": false,
4509
4522
  "document": "总实例个数",
4510
- "example": "",
4523
+ "example": "1",
4511
4524
  "member": "int64",
4512
4525
  "name": "TotalCount",
4526
+ "output_required": true,
4513
4527
  "type": "int",
4514
4528
  "value_allowed_null": false
4515
4529
  },
4516
4530
  {
4517
4531
  "disabled": false,
4518
4532
  "document": "实例信息列表\n注意:此字段可能返回 null,表示取不到有效值。",
4519
- "example": "",
4533
+ "example": "nil",
4520
4534
  "member": "Registry",
4521
4535
  "name": "Registries",
4536
+ "output_required": true,
4522
4537
  "type": "list",
4523
4538
  "value_allowed_null": true
4524
4539
  },
@@ -4621,7 +4636,7 @@
4621
4636
  {
4622
4637
  "disabled": false,
4623
4638
  "document": "命名空间,支持模糊查询",
4624
- "example": "",
4639
+ "example": "",
4625
4640
  "member": "string",
4626
4641
  "name": "Namespace",
4627
4642
  "required": true,
@@ -4630,7 +4645,7 @@
4630
4645
  {
4631
4646
  "disabled": false,
4632
4647
  "document": "单页数量",
4633
- "example": "",
4648
+ "example": "",
4634
4649
  "member": "int64",
4635
4650
  "name": "Limit",
4636
4651
  "required": true,
@@ -4639,7 +4654,7 @@
4639
4654
  {
4640
4655
  "disabled": false,
4641
4656
  "document": "偏移量",
4642
- "example": "",
4657
+ "example": "",
4643
4658
  "member": "int64",
4644
4659
  "name": "Offset",
4645
4660
  "required": true,
@@ -4654,9 +4669,10 @@
4654
4669
  {
4655
4670
  "disabled": false,
4656
4671
  "document": "用户命名空间返回信息",
4657
- "example": "",
4672
+ "example": "",
4658
4673
  "member": "NamespaceInfoResp",
4659
4674
  "name": "Data",
4675
+ "output_required": true,
4660
4676
  "type": "object",
4661
4677
  "value_allowed_null": false
4662
4678
  },
@@ -4779,18 +4795,20 @@
4779
4795
  {
4780
4796
  "disabled": false,
4781
4797
  "document": "返回的总数",
4782
- "example": "",
4798
+ "example": "1",
4783
4799
  "member": "uint64",
4784
4800
  "name": "TotalCount",
4801
+ "output_required": true,
4785
4802
  "type": "int",
4786
4803
  "value_allowed_null": false
4787
4804
  },
4788
4805
  {
4789
4806
  "disabled": false,
4790
4807
  "document": "地域信息列表",
4791
- "example": "",
4808
+ "example": "ap-guangzhou",
4792
4809
  "member": "Region",
4793
4810
  "name": "Regions",
4811
+ "output_required": true,
4794
4812
  "type": "list",
4795
4813
  "value_allowed_null": false
4796
4814
  },
@@ -5122,7 +5140,7 @@
5122
5140
  {
5123
5141
  "disabled": false,
5124
5142
  "document": "搜索镜像名",
5125
- "example": "",
5143
+ "example": "",
5126
5144
  "member": "string",
5127
5145
  "name": "RepoName",
5128
5146
  "required": false,
@@ -5131,7 +5149,7 @@
5131
5149
  {
5132
5150
  "disabled": false,
5133
5151
  "document": "偏移量,默认为0",
5134
- "example": "",
5152
+ "example": "",
5135
5153
  "member": "int64",
5136
5154
  "name": "Offset",
5137
5155
  "required": false,
@@ -5140,7 +5158,7 @@
5140
5158
  {
5141
5159
  "disabled": false,
5142
5160
  "document": "返回最大数量,默认 20,最大100",
5143
- "example": "",
5161
+ "example": "",
5144
5162
  "member": "int64",
5145
5163
  "name": "Limit",
5146
5164
  "required": false,
@@ -5149,7 +5167,7 @@
5149
5167
  {
5150
5168
  "disabled": false,
5151
5169
  "document": "筛选条件:1表示public,0表示private",
5152
- "example": "",
5170
+ "example": "",
5153
5171
  "member": "int64",
5154
5172
  "name": "Public",
5155
5173
  "required": false,
@@ -5158,7 +5176,7 @@
5158
5176
  {
5159
5177
  "disabled": false,
5160
5178
  "document": "命名空间",
5161
- "example": "",
5179
+ "example": "",
5162
5180
  "member": "string",
5163
5181
  "name": "Namespace",
5164
5182
  "required": false,
@@ -5173,9 +5191,10 @@
5173
5191
  {
5174
5192
  "disabled": false,
5175
5193
  "document": "仓库信息",
5176
- "example": "",
5194
+ "example": "",
5177
5195
  "member": "SearchUserRepositoryResp",
5178
5196
  "name": "Data",
5197
+ "output_required": true,
5179
5198
  "type": "object",
5180
5199
  "value_allowed_null": false
5181
5200
  },
@@ -5194,7 +5213,7 @@
5194
5213
  {
5195
5214
  "disabled": false,
5196
5215
  "document": "偏移量,默认为0",
5197
- "example": "",
5216
+ "example": "",
5198
5217
  "member": "int64",
5199
5218
  "name": "Offset",
5200
5219
  "required": false,
@@ -5203,7 +5222,7 @@
5203
5222
  {
5204
5223
  "disabled": false,
5205
5224
  "document": "返回最大数量,默认 20, 最大值 100",
5206
- "example": "",
5225
+ "example": "",
5207
5226
  "member": "int64",
5208
5227
  "name": "Limit",
5209
5228
  "required": false,
@@ -5212,7 +5231,7 @@
5212
5231
  {
5213
5232
  "disabled": false,
5214
5233
  "document": "仓库名称",
5215
- "example": "",
5234
+ "example": "",
5216
5235
  "member": "string",
5217
5236
  "name": "RepoName",
5218
5237
  "required": false,
@@ -5227,9 +5246,10 @@
5227
5246
  {
5228
5247
  "disabled": false,
5229
5248
  "document": "仓库信息",
5230
- "example": "",
5249
+ "example": "",
5231
5250
  "member": "RepoInfoResp",
5232
5251
  "name": "Data",
5252
+ "output_required": true,
5233
5253
  "type": "object",
5234
5254
  "value_allowed_null": false
5235
5255
  },
@@ -5248,7 +5268,7 @@
5248
5268
  {
5249
5269
  "disabled": false,
5250
5270
  "document": "仓库名字",
5251
- "example": "",
5271
+ "example": "",
5252
5272
  "member": "string",
5253
5273
  "name": "RepoName",
5254
5274
  "required": true,
@@ -5263,9 +5283,10 @@
5263
5283
  {
5264
5284
  "disabled": false,
5265
5285
  "document": "仓库信息",
5266
- "example": "",
5286
+ "example": "",
5267
5287
  "member": "RepositoryInfoResp",
5268
5288
  "name": "Data",
5289
+ "output_required": true,
5269
5290
  "type": "object",
5270
5291
  "value_allowed_null": false
5271
5292
  },
@@ -5649,9 +5670,10 @@
5649
5670
  {
5650
5671
  "disabled": false,
5651
5672
  "document": "配额返回信息",
5652
- "example": "",
5673
+ "example": "",
5653
5674
  "member": "RespLimit",
5654
5675
  "name": "Data",
5676
+ "output_required": true,
5655
5677
  "type": "object",
5656
5678
  "value_allowed_null": false
5657
5679
  },
@@ -10002,7 +10024,7 @@
10002
10024
  "example": "无",
10003
10025
  "member": "NamespaceIsExistsResp",
10004
10026
  "name": "Data",
10005
- "required": true,
10027
+ "output_required": true,
10006
10028
  "type": "object",
10007
10029
  "value_allowed_null": false
10008
10030
  },
@@ -10039,7 +10061,7 @@
10039
10061
  "example": "无",
10040
10062
  "member": "RepoIsExistResp",
10041
10063
  "name": "Data",
10042
- "required": true,
10064
+ "output_required": true,
10043
10065
  "type": "object",
10044
10066
  "value_allowed_null": false
10045
10067
  },
@@ -28,7 +28,7 @@
28
28
  {
29
29
  "document": "",
30
30
  "input": "https://tcr.tencentcloudapi.com/?Action=CheckInstanceName\n&RegistryName=registryName123\n&<公共请求参数>",
31
- "output": "{\n \"Response\": {\n \"IsValidated\": true,\n \"RequestId\": \"eac6b301-a322-493a-8e36-83b295459397\"\n }\n}",
31
+ "output": "{\n \"Response\": {\n \"IsValidated\": true,\n \"DetailCode\": 0,\n \"RequestId\": \"eac6b301-a322-493a-8e36-83b295459397\"\n }\n}",
32
32
  "title": "检查待创建的实例名称是否符合规范"
33
33
  }
34
34
  ],
@@ -536,7 +536,7 @@
536
536
  {
537
537
  "document": "",
538
538
  "input": "https://tcr.tencentcloudapi.com/?Action=DescribeInstances\n&<公共请求参数>",
539
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Registries\": [\n {\n \"RegistryId\": \"cls-xxxxxxx\",\n \"RegistryName\": \"aaa\",\n \"Status\": \"Running\",\n \"RegistryType\": \"standard\",\n \"PublicDomain\": \"mytest.tencentcloudcr.com\",\n \"InternalEndpoint\": \"8.9.10.9\",\n \"ExpiredAt\": \"2020-09-10\",\n \"PayMod\": 1,\n \"RenewFlag\": 1\n }\n ],\n \"RequestId\": \"a1be36f0-1aa4-4af2-a289-da021bcef89f\"\n }\n}",
539
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Registries\": [\n {\n \"RegistryId\": \"tcr-xxx\",\n \"RegistryName\": \"test\",\n \"RegistryType\": \"basic\",\n \"Status\": \"running\",\n \"PublicDomain\": \"tcr-test.tencentcloudcr.com\",\n \"CreatedAt\": \"2020-09-22T00:00:00+00:00\",\n \"RegionName\": \"ap-guangzhou\",\n \"RegionId\": 1,\n \"EnableAnonymous\": true,\n \"TokenValidTime\": 1,\n \"InternalEndpoint\": \"nil\",\n \"TagSpecification\": {\n \"ResourceType\": \"abc\",\n \"Tags\": [\n {\n \"Key\": \"abc\",\n \"Value\": \"abc\"\n }\n ]\n },\n \"ExpiredAt\": \"abc\",\n \"PayMod\": 0,\n \"RenewFlag\": 0,\n \"DeletionProtection\": true\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
540
540
  "title": "查看实例列表"
541
541
  }
542
542
  ],
@@ -559,7 +559,7 @@
559
559
  "DescribeNamespacePersonal": [
560
560
  {
561
561
  "document": "",
562
- "input": "https://tcr.tencentcloudapi.com/?Action=DescribeNamespacePersonal\r\n&Namespace=mynamespace&Limit=20&Offset=0\r\n&<公共请求参数>",
562
+ "input": "POST / HTTP/1.1\nHost: tcr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeNamespacePersonal\n<公共请求参数>\n\n{\n \"Namespace\": \"mockns\",\n \"Limit\": 1,\n \"Offset\": 0\n}",
563
563
  "output": "{\n \"Response\": {\n \"RequestId\": \"eac6b301-a322-493a-8e36-83b295459397\",\n \"Data\": {\n \"NamespaceCount\": 1,\n \"NamespaceInfo\": [\n {\n \"Namespace\": \"test\",\n \"CreationTime\": \"2018-07-25 15:07:12\",\n \"RepoCount\": 2\n }\n ]\n }\n }\n}",
564
564
  "title": "查询个人版命名空间信息"
565
565
  }
@@ -576,7 +576,7 @@
576
576
  {
577
577
  "document": "",
578
578
  "input": "https://tcr.tencentcloudapi.com/?Action=DescribeRegions\r\n&<公共请求参数>",
579
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Regions\": [\n {\n \"RegionId\": \"1\",\n \"RegionName\": \"ap-guangzhou\",\n \"Status\": \"alluser\",\n \"Remark\": \"aaa\",\n \"Alias\": \"gz\",\n \"CreatedAt\": \"2019-08-09\",\n \"UpdatedAt\": \"2019-08-09\"\n }\n ],\n \"RequestId\": \"a1be36f0-1aa4-4af2-a289-da021bcef89f\"\n }\n}",
579
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Regions\": [\n {\n \"Alias\": \"gz\",\n \"RegionId\": 1,\n \"RegionName\": \"ap-guangzhou\",\n \"Status\": \"alluser\",\n \"Remark\": \"alluser\",\n \"CreatedAt\": \"2020-09-22T00:00:00+00:00\",\n \"UpdatedAt\": \"2020-09-22T00:00:00+00:00\",\n \"Id\": 1\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
580
580
  "title": "列出TCR可用区域"
581
581
  }
582
582
  ],
@@ -5929,8 +5929,8 @@
5929
5929
  },
5930
5930
  {
5931
5931
  "disabled": false,
5932
- "document": "监控组件的状态,为Defender_Uninstall、Defender_Normal、Defender_Error、Defender_Installing",
5933
- "example": "Defender_Uninstall",
5932
+ "document": "防护状态: 已防护: Defended 未防护: UnDefended",
5933
+ "example": "UnDefended",
5934
5934
  "member": "string",
5935
5935
  "name": "DefenderStatus",
5936
5936
  "output_required": true,
@@ -6109,13 +6109,33 @@
6109
6109
  },
6110
6110
  {
6111
6111
  "disabled": false,
6112
- "document": "计费核数\n注意:此字段可能返回 null,表示取不到有效值。",
6112
+ "document": "计费核数(弹性计费核数+普通计费核数)\n注意:此字段可能返回 null,表示取不到有效值。",
6113
6113
  "example": "无",
6114
6114
  "member": "uint64",
6115
6115
  "name": "ChargeCoresCnt",
6116
6116
  "output_required": false,
6117
6117
  "type": "int",
6118
6118
  "value_allowed_null": true
6119
+ },
6120
+ {
6121
+ "disabled": false,
6122
+ "document": "master 地址列表",
6123
+ "example": "无",
6124
+ "member": "string",
6125
+ "name": "MasterAddresses",
6126
+ "output_required": true,
6127
+ "type": "list",
6128
+ "value_allowed_null": false
6129
+ },
6130
+ {
6131
+ "disabled": false,
6132
+ "document": "核数",
6133
+ "example": "无",
6134
+ "member": "uint64",
6135
+ "name": "CoresCnt",
6136
+ "output_required": true,
6137
+ "type": "int",
6138
+ "value_allowed_null": false
6119
6139
  }
6120
6140
  ],
6121
6141
  "usage": "out"
@@ -14675,7 +14695,7 @@
14675
14695
  },
14676
14696
  {
14677
14697
  "disabled": false,
14678
- "document": "过滤条件。\n<li>Status - String - 是否必填:否 - agent状态筛选,\"ALL\":\"全部\"(或不传该字段),\"UNINSTALL\":\"未安装\",\"OFFLINE\":\"离线\", \"ONLINE\":\"防护中\"</li>\n<li>HostName - String - 是否必填:否 - 主机名筛选</li>\n<li>Group- String - 是否必填:否 - 主机群组搜索</li>\n<li>HostIP- string - 是否必填:否 - 主机ip搜索</li>\n<li>HostID- string - 是否必填:否 - 主机id搜索</li>\n<li>DockerVersion- string - 是否必填:否 - docker版本搜索</li>\n<li>MachineType- string - 是否必填:否 - 主机来源MachineType搜索,\"ALL\":\"全部\"(或不传该字段),主机来源:[\"CVM\", \"ECM\", \"LH\", \"BM\"] 中的之一为腾讯云服务器;[\"Other\"]之一非腾讯云服务器;</li>\n<li>DockerStatus- string - 是否必填:否 - docker安装状态,\"ALL\":\"全部\"(或不传该字段),\"INSTALL\":\"已安装\",\"UNINSTALL\":\"未安装\"</li>\n<li>ProjectID- string - 是否必填:否 - 所属项目id搜索</li>\n<li>Tag:xxx(tag:key)- string- 是否必填:否 - 标签键值搜索 示例Filters\":[{\"Name\":\"tag:tke-kind\",\"Values\":[\"service\"]}]</li>",
14698
+ "document": "过滤条件。 <li>Status - String - 是否必填:否 - agent状态筛选,\"ALL\":\"全部\"(或不传该字段),\"UNINSTALL\":\"未安装\",\"OFFLINE\":\"离线\", \"ONLINE\":\"防护中\"</li> <li>HostName - String - 是否必填:否 - 主机名筛选</li> <li>Group- String - 是否必填:否 - 主机群组搜索</li> <li>HostIP- string - 是否必填:否 - 主机ip搜索</li> <li>HostID- string - 是否必填:否 - 主机id搜索</li> <li>DockerVersion- string - 是否必填:否 - docker版本搜索</li> <li>MachineType- string - 是否必填:否 - 主机来源MachineType搜索,\"ALL\":\"全部\"(或不传该字段),主机来源:[\"CVM\", \"ECM\", \"LH\", \"BM\"] 中的之一为腾讯云服务器;[\"Other\"]之一非腾讯云服务器;</li> <li>DockerStatus- string - 是否必填:否 - docker安装状态,\"ALL\":\"全部\"(或不传该字段),\"INSTALL\":\"已安装\",\"UNINSTALL\":\"未安装\"</li> <li>ProjectID- string - 是否必填:否 - 所属项目id搜索</li> <li>Tag:xxx(tag:key)- string- 是否必填:否 - 标签键值搜索 示例Filters\":[{\"Name\":\"tag:tke-kind\",\"Values\":[\"service\"]}]</li> <li>NonClusterNode: 是否查询非集群节点(true: 是,false: 否)</li>",
14679
14699
  "example": "无",
14680
14700
  "member": "AssetFilters",
14681
14701
  "name": "Filters",
@@ -23333,7 +23353,17 @@
23333
23353
  },
23334
23354
  {
23335
23355
  "disabled": false,
23336
- "document": "总核数\n注意:此字段可能返回 null,表示取不到有效值。",
23356
+ "document": "总资源核数 = 总防护核数 + 未防护核数",
23357
+ "example": "10",
23358
+ "member": "uint64",
23359
+ "name": "AllCoresCnt",
23360
+ "output_required": true,
23361
+ "type": "int",
23362
+ "value_allowed_null": false
23363
+ },
23364
+ {
23365
+ "disabled": false,
23366
+ "document": "总防护核数 =已购核数+ 试用赠送核数 +弹性计费核数\n注意:此字段可能返回 null,表示取不到有效值。",
23337
23367
  "example": "1",
23338
23368
  "member": "uint64",
23339
23369
  "name": "CoresCnt",
@@ -23341,6 +23371,16 @@
23341
23371
  "type": "int",
23342
23372
  "value_allowed_null": true
23343
23373
  },
23374
+ {
23375
+ "disabled": false,
23376
+ "document": "未防护核数(未开启防护资源核数)",
23377
+ "example": "无",
23378
+ "member": "uint64",
23379
+ "name": "UndefendCoresCnt",
23380
+ "output_required": true,
23381
+ "type": "int",
23382
+ "value_allowed_null": false
23383
+ },
23344
23384
  {
23345
23385
  "disabled": false,
23346
23386
  "document": "已购买核数\n注意:此字段可能返回 null,表示取不到有效值。",
@@ -23353,30 +23393,40 @@
23353
23393
  },
23354
23394
  {
23355
23395
  "disabled": false,
23356
- "document": "镜像数\n注意:此字段可能返回 null,表示取不到有效值。",
23357
- "example": "1",
23358
- "member": "uint64",
23359
- "name": "ImageCnt",
23396
+ "document": "试用赠送专业版核心数\n注意:此字段可能返回 null,表示取不到有效值。",
23397
+ "example": "",
23398
+ "member": "int64",
23399
+ "name": "GivenAuthorizedCoresCnt",
23360
23400
  "output_required": true,
23361
23401
  "type": "int",
23362
23402
  "value_allowed_null": true
23363
23403
  },
23364
23404
  {
23365
23405
  "disabled": false,
23366
- "document": "已授权镜像数\n注意:此字段可能返回 null,表示取不到有效值。",
23406
+ "document": "当前弹性计费核数数量",
23407
+ "example": "无",
23408
+ "member": "uint64",
23409
+ "name": "CurrentFlexibleCoresCnt",
23410
+ "output_required": true,
23411
+ "type": "int",
23412
+ "value_allowed_null": false
23413
+ },
23414
+ {
23415
+ "disabled": false,
23416
+ "document": "镜像数\n注意:此字段可能返回 null,表示取不到有效值。",
23367
23417
  "example": "1",
23368
23418
  "member": "uint64",
23369
- "name": "AuthorizedImageCnt",
23419
+ "name": "ImageCnt",
23370
23420
  "output_required": true,
23371
23421
  "type": "int",
23372
23422
  "value_allowed_null": true
23373
23423
  },
23374
23424
  {
23375
23425
  "disabled": false,
23376
- "document": "已购买镜像授权数\n注意:此字段可能返回 null,表示取不到有效值。",
23426
+ "document": "已授权镜像数\n注意:此字段可能返回 null,表示取不到有效值。",
23377
23427
  "example": "1",
23378
23428
  "member": "uint64",
23379
- "name": "PurchasedAuthorizedCnt",
23429
+ "name": "AuthorizedImageCnt",
23380
23430
  "output_required": true,
23381
23431
  "type": "int",
23382
23432
  "value_allowed_null": true
@@ -23391,6 +23441,16 @@
23391
23441
  "type": "string",
23392
23442
  "value_allowed_null": true
23393
23443
  },
23444
+ {
23445
+ "disabled": false,
23446
+ "document": "已购买镜像授权数\n注意:此字段可能返回 null,表示取不到有效值。",
23447
+ "example": "1",
23448
+ "member": "uint64",
23449
+ "name": "PurchasedAuthorizedCnt",
23450
+ "output_required": true,
23451
+ "type": "int",
23452
+ "value_allowed_null": true
23453
+ },
23394
23454
  {
23395
23455
  "disabled": false,
23396
23456
  "document": "0表示默认状态(用户未设置,即初始状态), 1表示自动续费,2表示明确不自动续费(用户设置)\n注意:此字段可能返回 null,表示取不到有效值。",
@@ -23441,6 +23501,46 @@
23441
23501
  "type": "string",
23442
23502
  "value_allowed_null": true
23443
23503
  },
23504
+ {
23505
+ "disabled": false,
23506
+ "document": "防护策略",
23507
+ "example": "无",
23508
+ "member": "string",
23509
+ "name": "DefendPolicy",
23510
+ "output_required": true,
23511
+ "type": "string",
23512
+ "value_allowed_null": false
23513
+ },
23514
+ {
23515
+ "disabled": false,
23516
+ "document": "弹性计费核数上限",
23517
+ "example": "无",
23518
+ "member": "uint64",
23519
+ "name": "FlexibleCoresLimit",
23520
+ "output_required": true,
23521
+ "type": "int",
23522
+ "value_allowed_null": false
23523
+ },
23524
+ {
23525
+ "disabled": false,
23526
+ "document": "已防护集群核数",
23527
+ "example": "无",
23528
+ "member": "uint64",
23529
+ "name": "DefendClusterCoresCnt",
23530
+ "output_required": true,
23531
+ "type": "int",
23532
+ "value_allowed_null": false
23533
+ },
23534
+ {
23535
+ "disabled": false,
23536
+ "document": "已防护主机核数",
23537
+ "example": "无",
23538
+ "member": "uint64",
23539
+ "name": "DefendHostCoresCnt",
23540
+ "output_required": true,
23541
+ "type": "int",
23542
+ "value_allowed_null": false
23543
+ },
23444
23544
  {
23445
23545
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
23446
23546
  "member": "string",
@@ -31446,6 +31546,16 @@
31446
31546
  "output_required": true,
31447
31547
  "type": "string",
31448
31548
  "value_allowed_null": false
31549
+ },
31550
+ {
31551
+ "disabled": false,
31552
+ "document": "核数",
31553
+ "example": "无",
31554
+ "member": "uint64",
31555
+ "name": "CoresCnt",
31556
+ "output_required": true,
31557
+ "type": "int",
31558
+ "value_allowed_null": false
31449
31559
  }
31450
31560
  ],
31451
31561
  "usage": "out"
@@ -872,7 +872,7 @@
872
872
  {
873
873
  "document": "查询主机列表",
874
874
  "input": "POST / HTTP/1.1\nHost: tcss.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAssetHostList\n<公共请求参数>\n\n{}",
875
- "output": "{\n \"Response\": {\n \"List\": [\n {\n \"HostID\": \"abc\",\n \"HostIP\": \"abc\",\n \"HostName\": \"abc\",\n \"Group\": \"abc\",\n \"DockerVersion\": \"abc\",\n \"DockerFileSystemDriver\": \"abc\",\n \"ImageCnt\": 1,\n \"ContainerCnt\": 1,\n \"Status\": \"abc\",\n \"IsContainerd\": true,\n \"MachineType\": \"abc\",\n \"PublicIp\": \"abc\",\n \"Uuid\": \"abc\",\n \"InstanceID\": \"abc\",\n \"RegionID\": 0,\n \"Project\": {\n \"ProjectName\": \"abc\",\n \"ProjectID\": 0\n },\n \"Tags\": [\n {\n \"TagKey\": \"abc\",\n \"TagValue\": \"abc\"\n }\n ],\n \"ClusterID\": \"abc\",\n \"ClusterName\": \"abc\",\n \"ClusterAccessedStatus\": \"abc\",\n \"ChargeCoresCnt\": 1,\n \"DefendStatus\": \"abc\"\n }\n ],\n \"TotalCount\": 1,\n \"RequestId\": \"abc\"\n }\n}",
875
+ "output": "{\n \"Response\": {\n \"List\": [\n {\n \"HostID\": \"abc\",\n \"HostIP\": \"abc\",\n \"HostName\": \"abc\",\n \"Group\": \"abc\",\n \"DockerVersion\": \"abc\",\n \"DockerFileSystemDriver\": \"abc\",\n \"ImageCnt\": 1,\n \"ContainerCnt\": 1,\n \"Status\": \"abc\",\n \"IsContainerd\": true,\n \"MachineType\": \"abc\",\n \"PublicIp\": \"abc\",\n \"Uuid\": \"abc\",\n \"InstanceID\": \"abc\",\n \"RegionID\": 0,\n \"Project\": {\n \"ProjectName\": \"abc\",\n \"ProjectID\": 0\n },\n \"Tags\": [\n {\n \"TagKey\": \"abc\",\n \"TagValue\": \"abc\"\n }\n ],\n \"ClusterID\": \"abc\",\n \"ClusterName\": \"abc\",\n \"ClusterAccessedStatus\": \"abc\",\n \"ChargeCoresCnt\": 1,\n \"DefendStatus\": \"abc\",\n \"CoresCnt\": 1\n }\n ],\n \"TotalCount\": 1,\n \"RequestId\": \"abc\"\n }\n}",
876
876
  "title": "查询主机列表"
877
877
  }
878
878
  ],
@@ -1734,7 +1734,7 @@
1734
1734
  {
1735
1735
  "document": "",
1736
1736
  "input": "POST / HTTP/1.1\nHost: tcss.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribePurchaseStateInfo\n<公共请求参数>\n\n{}",
1737
- "output": "{\n \"Response\": {\n \"State\": 0,\n \"CoresCnt\": 1,\n \"AuthorizedCoresCnt\": 1,\n \"ImageCnt\": 1,\n \"AuthorizedImageCnt\": 1,\n \"PurchasedAuthorizedCnt\": 1,\n \"ExpirationTime\": \"abc\",\n \"AutomaticRenewal\": 0,\n \"GivenAuthorizedCnt\": 1,\n \"BeginTime\": \"abc\",\n \"SubState\": \"abc\",\n \"InquireKey\": \"abc\",\n \"RequestId\": \"abc\"\n }\n}",
1737
+ "output": "{\n \"Response\": {\n \"State\": 0,\n \"AllCoresCnt\": 1,\n \"CoresCnt\": 1,\n \"UndefendCoresCnt\": 1,\n \"AuthorizedCoresCnt\": 1,\n \"GivenAuthorizedCoresCnt\": 0,\n \"CurrentFlexibleCoresCnt\": 1,\n \"ImageCnt\": 1,\n \"AuthorizedImageCnt\": 1,\n \"ExpirationTime\": \"abc\",\n \"PurchasedAuthorizedCnt\": 1,\n \"AutomaticRenewal\": 0,\n \"GivenAuthorizedCnt\": 1,\n \"BeginTime\": \"abc\",\n \"SubState\": \"abc\",\n \"InquireKey\": \"abc\",\n \"DefendPolicy\": \"abc\",\n \"FlexibleCoresLimit\": 1,\n \"DefendClusterCoresCnt\": 1,\n \"DefendHostCoresCnt\": 1,\n \"RequestId\": \"abc\"\n }\n}",
1738
1738
  "title": "查询容器安全服务已购买信息"
1739
1739
  }
1740
1740
  ],
@@ -2038,7 +2038,7 @@
2038
2038
  {
2039
2039
  "document": "查询用户集群列表",
2040
2040
  "input": "POST / HTTP/1.1\nHost: tcss.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeUserCluster\n<公共请求参数>\n\n{\n \"Limit\": \"2\",\n \"Offset\": \"0\"\n}",
2041
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"ClusterInfoList\": [\n {\n \"ClusterId\": \"abc\",\n \"ClusterName\": \"abc\",\n \"ClusterVersion\": \"abc\",\n \"ClusterOs\": \"abc\",\n \"ClusterType\": \"abc\",\n \"ClusterNodeNum\": 1,\n \"Region\": \"abc\",\n \"DefenderStatus\": \"abc\",\n \"ClusterStatus\": \"abc\",\n \"ClusterCheckMode\": \"abc\",\n \"ClusterAutoCheck\": true,\n \"DefenderErrorReason\": \"abc\",\n \"UnreadyNodeNum\": 1,\n \"SeriousRiskCount\": 0,\n \"HighRiskCount\": 0,\n \"MiddleRiskCount\": 0,\n \"HintRiskCount\": 0,\n \"CheckFailReason\": \"abc\",\n \"CheckStatus\": \"abc\",\n \"TaskCreateTime\": \"abc\",\n \"AccessedStatus\": \"abc\",\n \"AccessedSubStatus\": \"abc\",\n \"NodeCount\": 1,\n \"OffLineNodeCount\": 1,\n \"UnInstallAgentNodeCount\": 1\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
2041
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"ClusterInfoList\": [\n {\n \"ClusterId\": \"abc\",\n \"ClusterName\": \"abc\",\n \"ClusterVersion\": \"abc\",\n \"ClusterOs\": \"abc\",\n \"ClusterType\": \"abc\",\n \"ClusterNodeNum\": 1,\n \"Region\": \"abc\",\n \"DefenderStatus\": \"abc\",\n \"ClusterStatus\": \"abc\",\n \"ClusterCheckMode\": \"abc\",\n \"ClusterAutoCheck\": true,\n \"DefenderErrorReason\": \"abc\",\n \"UnreadyNodeNum\": 1,\n \"SeriousRiskCount\": 0,\n \"HighRiskCount\": 0,\n \"MiddleRiskCount\": 0,\n \"HintRiskCount\": 0,\n \"CheckFailReason\": \"abc\",\n \"CheckStatus\": \"abc\",\n \"TaskCreateTime\": \"abc\",\n \"AccessedStatus\": \"abc\",\n \"AccessedSubStatus\": \"abc\",\n \"NodeCount\": 1,\n \"OffLineNodeCount\": 1,\n \"UnInstallAgentNodeCount\": 1,\n \"ChargeCoresCnt\": 1,\n \"MasterAddresses\": [\n \"abc\"\n ],\n \"CoresCnt\": 1\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
2042
2042
  "title": "查询用户集群列表"
2043
2043
  }
2044
2044
  ],