tccli 3.0.1220.1__py2.py3-none-any.whl → 3.0.1222.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 (47) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/billing/v20180709/api.json +36 -36
  3. tccli/services/billing/v20180709/examples.json +1 -1
  4. tccli/services/bsca/v20210811/api.json +11 -1
  5. tccli/services/cdb/v20170320/api.json +5 -5
  6. tccli/services/cdb/v20170320/examples.json +2 -2
  7. tccli/services/cdn/v20180606/api.json +3 -3
  8. tccli/services/cdwdoris/v20211228/api.json +40 -0
  9. tccli/services/cfg/cfg_client.py +57 -4
  10. tccli/services/cfg/v20210820/api.json +113 -0
  11. tccli/services/cfg/v20210820/examples.json +8 -0
  12. tccli/services/cfs/v20190719/api.json +1 -1
  13. tccli/services/cfs/v20190719/examples.json +1 -1
  14. tccli/services/cls/v20201016/api.json +14 -0
  15. tccli/services/cvm/v20170312/api.json +1 -1
  16. tccli/services/cynosdb/v20190107/api.json +15 -5
  17. tccli/services/dbdc/v20201029/api.json +43 -43
  18. tccli/services/dbdc/v20201029/examples.json +5 -5
  19. tccli/services/dcdb/v20180411/api.json +67 -79
  20. tccli/services/dnspod/v20210323/api.json +1 -1
  21. tccli/services/dts/v20211206/api.json +1 -1
  22. tccli/services/essbasic/v20210526/api.json +2 -2
  23. tccli/services/gwlb/v20240906/api.json +6 -6
  24. tccli/services/gwlb/v20240906/examples.json +4 -4
  25. tccli/services/iotexplorer/v20190423/api.json +5 -5
  26. tccli/services/live/live_client.py +731 -42
  27. tccli/services/live/v20180801/api.json +1060 -96
  28. tccli/services/live/v20180801/examples.json +104 -0
  29. tccli/services/lke/lke_client.py +53 -0
  30. tccli/services/lke/v20231130/api.json +789 -87
  31. tccli/services/lke/v20231130/examples.json +24 -16
  32. tccli/services/mariadb/v20170312/api.json +70 -88
  33. tccli/services/ocr/v20181119/api.json +10 -0
  34. tccli/services/svp/v20240125/api.json +6 -6
  35. tccli/services/thpc/v20230321/api.json +2 -2
  36. tccli/services/tke/v20180525/api.json +10 -0
  37. tccli/services/trtc/v20190722/api.json +56 -73
  38. tccli/services/tse/v20201207/api.json +150 -129
  39. tccli/services/tse/v20201207/examples.json +58 -58
  40. tccli/services/vpc/v20170312/api.json +13 -16
  41. tccli/services/vpc/v20170312/examples.json +1 -1
  42. tccli/services/wedata/v20210820/api.json +3 -3
  43. {tccli-3.0.1220.1.dist-info → tccli-3.0.1222.1.dist-info}/METADATA +2 -2
  44. {tccli-3.0.1220.1.dist-info → tccli-3.0.1222.1.dist-info}/RECORD +47 -47
  45. {tccli-3.0.1220.1.dist-info → tccli-3.0.1222.1.dist-info}/WHEEL +0 -0
  46. {tccli-3.0.1220.1.dist-info → tccli-3.0.1222.1.dist-info}/entry_points.txt +0 -0
  47. {tccli-3.0.1220.1.dist-info → tccli-3.0.1222.1.dist-info}/license_files/LICENSE +0 -0
@@ -7,6 +7,13 @@
7
7
  "output": "CreateTaskFromActionResponse",
8
8
  "status": "online"
9
9
  },
10
+ "CreateTaskFromMultiAction": {
11
+ "document": "以多个动作创建演练",
12
+ "input": "CreateTaskFromMultiActionRequest",
13
+ "name": "快速创建多个动作的演练",
14
+ "output": "CreateTaskFromMultiActionResponse",
15
+ "status": "online"
16
+ },
10
17
  "CreateTaskFromTemplate": {
11
18
  "document": "从经验库创建演练",
12
19
  "input": "CreateTaskFromTemplateRequest",
@@ -614,6 +621,79 @@
614
621
  ],
615
622
  "type": "object"
616
623
  },
624
+ "CreateTaskFromMultiActionRequest": {
625
+ "document": "CreateTaskFromMultiAction请求参数结构体",
626
+ "members": [
627
+ {
628
+ "disabled": false,
629
+ "document": "参与演练的实例ID",
630
+ "example": "[\"ins-87b12frpq\"]",
631
+ "member": "string",
632
+ "name": "TaskInstances",
633
+ "required": true,
634
+ "type": "list"
635
+ },
636
+ {
637
+ "disabled": false,
638
+ "document": "演练名称,不填则默认取动作名称",
639
+ "example": "演练名称",
640
+ "member": "string",
641
+ "name": "TaskTitle",
642
+ "required": false,
643
+ "type": "string"
644
+ },
645
+ {
646
+ "disabled": false,
647
+ "document": "演练描述,不填则默认取动作描述",
648
+ "example": "演练描述",
649
+ "member": "string",
650
+ "name": "TaskDescription",
651
+ "required": false,
652
+ "type": "string"
653
+ },
654
+ {
655
+ "disabled": false,
656
+ "document": "演练自动暂停时间,单位分钟, 不填则默认为60",
657
+ "example": "60",
658
+ "member": "uint64",
659
+ "name": "TaskPauseDuration",
660
+ "required": false,
661
+ "type": "int"
662
+ },
663
+ {
664
+ "disabled": false,
665
+ "document": "演练动作组配置",
666
+ "example": "[{ \"TaskActionId\": 0, \"TaskActionGeneralConfiguration\": \"abc\", \"TaskActionCustomConfiguration\": \"abc\" }]",
667
+ "member": "TaskGroupForAction",
668
+ "name": "TaskAction",
669
+ "required": false,
670
+ "type": "list"
671
+ }
672
+ ],
673
+ "type": "object"
674
+ },
675
+ "CreateTaskFromMultiActionResponse": {
676
+ "document": "CreateTaskFromMultiAction返回参数结构体",
677
+ "members": [
678
+ {
679
+ "disabled": false,
680
+ "document": "创建成功的演练ID",
681
+ "example": "50",
682
+ "member": "uint64",
683
+ "name": "TaskId",
684
+ "output_required": true,
685
+ "type": "int",
686
+ "value_allowed_null": false
687
+ },
688
+ {
689
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
690
+ "member": "string",
691
+ "name": "RequestId",
692
+ "type": "string"
693
+ }
694
+ ],
695
+ "type": "object"
696
+ },
617
697
  "CreateTaskFromTemplateRequest": {
618
698
  "document": "CreateTaskFromTemplate请求参数结构体",
619
699
  "members": [
@@ -2847,6 +2927,39 @@
2847
2927
  ],
2848
2928
  "usage": "in"
2849
2929
  },
2930
+ "TaskGroupForAction": {
2931
+ "document": "演练动作组简易配置",
2932
+ "members": [
2933
+ {
2934
+ "disabled": false,
2935
+ "document": "动作ID",
2936
+ "example": "1",
2937
+ "member": "int64",
2938
+ "name": "TaskActionId",
2939
+ "required": false,
2940
+ "type": "int"
2941
+ },
2942
+ {
2943
+ "disabled": false,
2944
+ "document": "{\"ActionTimeout\":1800}",
2945
+ "example": "动作通用参数",
2946
+ "member": "string",
2947
+ "name": "TaskActionGeneralConfiguration",
2948
+ "required": false,
2949
+ "type": "string"
2950
+ },
2951
+ {
2952
+ "disabled": false,
2953
+ "document": "{\"ip\": \"0.0.0.0\"}",
2954
+ "example": "动作特有参数",
2955
+ "member": "string",
2956
+ "name": "TaskActionCustomConfiguration",
2957
+ "required": false,
2958
+ "type": "string"
2959
+ }
2960
+ ],
2961
+ "usage": "in"
2962
+ },
2850
2963
  "TaskGroupInstance": {
2851
2964
  "document": "任务分组动作实例",
2852
2965
  "members": [
@@ -8,6 +8,14 @@
8
8
  "title": "从动作创建演练"
9
9
  }
10
10
  ],
11
+ "CreateTaskFromMultiAction": [
12
+ {
13
+ "document": "",
14
+ "input": "POST / HTTP/1.1\nHost: cfg.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateTaskFromMultiAction\n<公共请求参数>\n\n{\n \"TaskInstances\": [\n \"abc\"\n ],\n \"TaskTitle\": \"abc\",\n \"TaskDescription\": \"abc\",\n \"TaskPauseDuration\": 1,\n \"TaskAction\": [\n {\n \"TaskActionId\": 0,\n \"TaskActionGeneralConfiguration\": \"abc\",\n \"TaskActionCustomConfiguration\": \"abc\"\n }\n ]\n}",
15
+ "output": "{\n \"Response\": {\n \"RequestId\": \"f0aee8ac-2ed3-4a7f-a25b-f0d7d228dd30\",\n \"TaskId\": 50\n }\n}",
16
+ "title": "示例"
17
+ }
18
+ ],
11
19
  "CreateTaskFromTemplate": [
12
20
  {
13
21
  "document": "通过预创建好的经验模板生成常规化的演练持续使用",
@@ -2607,7 +2607,7 @@
2607
2607
  },
2608
2608
  {
2609
2609
  "disabled": false,
2610
- "document": "过滤条件。\n<br><li>UserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid| Gid )\n<br><li>UserId - Array of String - 是否必填:否 -(过滤条件)按UID/GID过滤。",
2610
+ "document": "过滤条件。\nUserType - Array of String - 是否必填:否 -(过滤条件)按配额类型过滤。(Uid|Gid|Dir )\nUserId- Array of String - 是否必填:否 -(过滤条件)按id过滤。",
2611
2611
  "example": "无",
2612
2612
  "member": "Filter",
2613
2613
  "name": "Filters",
@@ -228,7 +228,7 @@
228
228
  {
229
229
  "document": "",
230
230
  "input": "POST / HTTP/1.1\nHost: cfs.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeUserQuota\n<公共请求参数>\n\n{\n \"FileSystemId\": \"cfs-12345\"\n}",
231
- "output": "{\n \"Response\": {\n \"UserQuotaInfo\": [\n {\n \"UserType\": \"Uid\",\n \"UserId\": \"1000\",\n \"FileSystemId\": \"cfs-12345\",\n \"CapacityHardLimit\": 10,\n \"FileHardLimit\": 10000\n }\n ],\n \"TotalCount\": 1,\n \"RequestId\": \"fjo8aejo-fjei-32eu-2je9-fhue83nd81\"\n }\n}",
231
+ "output": "{\n \"Response\": {\n \"UserQuotaInfo\": [\n {\n \"UserType\": \"Uid\",\n \"UserId\": \"1000\",\n \"FileSystemId\": \"cfs-12345\",\n \"CapacityHardLimit\": 10,\n \"FileHardLimit\": 10000,\n \"Status\": \"available\",\n \"DirectoryPath\": \"abc\",\n \"CapacityUsed\": 1,\n \"FileUsed\": 1\n }\n ],\n \"TotalCount\": 1,\n \"RequestId\": \"fjo8aejo-fjei-32eu-2je9-fhue83nd81\"\n }\n}",
232
232
  "title": "查询文件系统配额"
233
233
  }
234
234
  ],
@@ -10537,6 +10537,7 @@
10537
10537
  "example": "json_log",
10538
10538
  "member": "string",
10539
10539
  "name": "RechargeType",
10540
+ "output_required": true,
10540
10541
  "required": true,
10541
10542
  "type": "string",
10542
10543
  "value_allowed_null": false
@@ -10547,6 +10548,7 @@
10547
10548
  "example": "0",
10548
10549
  "member": "uint64",
10549
10550
  "name": "EncodingFormat",
10551
+ "output_required": true,
10550
10552
  "required": true,
10551
10553
  "type": "int",
10552
10554
  "value_allowed_null": false
@@ -10557,6 +10559,7 @@
10557
10559
  "example": "true",
10558
10560
  "member": "bool",
10559
10561
  "name": "DefaultTimeSwitch",
10562
+ "output_required": true,
10560
10563
  "required": true,
10561
10564
  "type": "bool",
10562
10565
  "value_allowed_null": false
@@ -10567,6 +10570,7 @@
10567
10570
  "example": "无",
10568
10571
  "member": "string",
10569
10572
  "name": "LogRegex",
10573
+ "output_required": true,
10570
10574
  "required": false,
10571
10575
  "type": "string",
10572
10576
  "value_allowed_null": true
@@ -10577,6 +10581,7 @@
10577
10581
  "example": "true",
10578
10582
  "member": "bool",
10579
10583
  "name": "UnMatchLogSwitch",
10584
+ "output_required": true,
10580
10585
  "required": false,
10581
10586
  "type": "bool",
10582
10587
  "value_allowed_null": false
@@ -10587,6 +10592,7 @@
10587
10592
  "example": "LogParseFailure",
10588
10593
  "member": "string",
10589
10594
  "name": "UnMatchLogKey",
10595
+ "output_required": true,
10590
10596
  "required": false,
10591
10597
  "type": "string",
10592
10598
  "value_allowed_null": true
@@ -10597,6 +10603,7 @@
10597
10603
  "example": "无",
10598
10604
  "member": "uint64",
10599
10605
  "name": "UnMatchLogTimeSrc",
10606
+ "output_required": true,
10600
10607
  "required": false,
10601
10608
  "type": "int",
10602
10609
  "value_allowed_null": true
@@ -10607,6 +10614,7 @@
10607
10614
  "example": "0",
10608
10615
  "member": "uint64",
10609
10616
  "name": "DefaultTimeSrc",
10617
+ "output_required": true,
10610
10618
  "required": false,
10611
10619
  "type": "int",
10612
10620
  "value_allowed_null": true
@@ -10617,6 +10625,7 @@
10617
10625
  "example": "无",
10618
10626
  "member": "string",
10619
10627
  "name": "TimeKey",
10628
+ "output_required": true,
10620
10629
  "required": false,
10621
10630
  "type": "string",
10622
10631
  "value_allowed_null": true
@@ -10627,6 +10636,7 @@
10627
10636
  "example": "无",
10628
10637
  "member": "string",
10629
10638
  "name": "TimeRegex",
10639
+ "output_required": true,
10630
10640
  "required": false,
10631
10641
  "type": "string",
10632
10642
  "value_allowed_null": true
@@ -10637,6 +10647,7 @@
10637
10647
  "example": "无",
10638
10648
  "member": "string",
10639
10649
  "name": "TimeFormat",
10650
+ "output_required": true,
10640
10651
  "required": false,
10641
10652
  "type": "string",
10642
10653
  "value_allowed_null": true
@@ -10647,6 +10658,7 @@
10647
10658
  "example": "无",
10648
10659
  "member": "string",
10649
10660
  "name": "TimeZone",
10661
+ "output_required": true,
10650
10662
  "required": false,
10651
10663
  "type": "string",
10652
10664
  "value_allowed_null": true
@@ -10657,6 +10669,7 @@
10657
10669
  "example": "无",
10658
10670
  "member": "string",
10659
10671
  "name": "Metadata",
10672
+ "output_required": true,
10660
10673
  "required": false,
10661
10674
  "type": "list",
10662
10675
  "value_allowed_null": true
@@ -10667,6 +10680,7 @@
10667
10680
  "example": "无",
10668
10681
  "member": "string",
10669
10682
  "name": "Keys",
10683
+ "output_required": true,
10670
10684
  "required": false,
10671
10685
  "type": "list",
10672
10686
  "value_allowed_null": true
@@ -9169,7 +9169,7 @@
9169
9169
  },
9170
9170
  {
9171
9171
  "disabled": false,
9172
- "document": "项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/product/651/81952)接口创建。可通过[`DescribeProject`](https://cloud.tencent.com/document/product/378/4400) API返回值中的`projectId`获取。后续使用[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口查询实例时,项目ID可用于过滤结果。",
9172
+ "document": "项目ID。项目可以使用[AddProject](https://cloud.tencent.com/document/api/651/81952)接口创建。可通过[`DescribeProject`](https://cloud.tencent.com/document/api/651/78725) API返回值中的`projectId`获取。后续使用[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口查询实例时,项目ID可用于过滤结果。",
9173
9173
  "example": "1045",
9174
9174
  "member": "int64",
9175
9175
  "name": "ProjectId",
@@ -7041,6 +7041,16 @@
7041
7041
  "output_required": true,
7042
7042
  "type": "float",
7043
7043
  "value_allowed_null": false
7044
+ },
7045
+ {
7046
+ "disabled": false,
7047
+ "document": "Db类型:<li>NORMAL</li><li>SERVERLESS</li>\n注意:此字段可能返回 null,表示取不到有效值。",
7048
+ "example": "NORMAL",
7049
+ "member": "string",
7050
+ "name": "DbMode",
7051
+ "output_required": false,
7052
+ "type": "string",
7053
+ "value_allowed_null": true
7044
7054
  }
7045
7055
  ],
7046
7056
  "usage": "out"
@@ -16439,7 +16449,7 @@
16439
16449
  {
16440
16450
  "disabled": false,
16441
16451
  "document": "端口",
16442
- "example": "1234",
16452
+ "example": "3306",
16443
16453
  "member": "string",
16444
16454
  "name": "Port",
16445
16455
  "required": true,
@@ -16448,7 +16458,7 @@
16448
16458
  {
16449
16459
  "disabled": false,
16450
16460
  "document": "安全组ID ",
16451
- "example": "[Security1,Security2,Security3]",
16461
+ "example": " [\"sg-nm4bjh11\",\"sg-nm4bjh22\"]",
16452
16462
  "member": "string",
16453
16463
  "name": "SecurityGroupIds",
16454
16464
  "required": false,
@@ -16463,11 +16473,11 @@
16463
16473
  {
16464
16474
  "disabled": false,
16465
16475
  "document": "开启流程ID",
16466
- "example": "12345",
16467
- "member": "string",
16476
+ "example": "147287",
16477
+ "member": "int64",
16468
16478
  "name": "FlowId",
16469
16479
  "output_required": true,
16470
- "type": "string",
16480
+ "type": "int",
16471
16481
  "value_allowed_null": false
16472
16482
  },
16473
16483
  {