tccli 3.0.1189.1__py2.py3-none-any.whl → 3.0.1191.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 (66) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/command.py +7 -1
  3. tccli/configure.py +11 -3
  4. tccli/loaders.py +43 -8
  5. tccli/oauth.py +115 -0
  6. tccli/plugin.py +30 -0
  7. tccli/plugins/__init__.py +0 -0
  8. tccli/plugins/auth/__init__.py +59 -0
  9. tccli/plugins/auth/browser_flow.py +88 -0
  10. tccli/plugins/auth/login.py +130 -0
  11. tccli/plugins/auth/logout.py +21 -0
  12. tccli/plugins/auth/texts.py +30 -0
  13. tccli/plugins/test/__init__.py +87 -0
  14. tccli/plugins/test/add.py +31 -0
  15. tccli/services/__init__.py +2 -1
  16. tccli/services/apm/v20210622/api.json +19 -0
  17. tccli/services/cam/cam_client.py +138 -32
  18. tccli/services/cam/v20190116/api.json +203 -0
  19. tccli/services/cam/v20190116/examples.json +16 -0
  20. tccli/services/cdb/v20170320/api.json +4 -4
  21. tccli/services/cfg/v20210820/api.json +1 -1
  22. tccli/services/cfw/v20190904/api.json +82 -2
  23. tccli/services/dasb/dasb_client.py +53 -0
  24. tccli/services/dasb/v20191018/api.json +168 -0
  25. tccli/services/dasb/v20191018/examples.json +8 -0
  26. tccli/services/dlc/v20210125/api.json +287 -37
  27. tccli/services/dlc/v20210125/examples.json +18 -18
  28. tccli/services/dsgc/v20190723/api.json +13 -3
  29. tccli/services/emr/v20190103/api.json +1 -1
  30. tccli/services/ess/v20201111/api.json +56 -23
  31. tccli/services/ess/v20201111/examples.json +7 -1
  32. tccli/services/essbasic/v20210526/api.json +28 -1
  33. tccli/services/essbasic/v20210526/examples.json +6 -0
  34. tccli/services/iotexplorer/v20190423/api.json +2 -2
  35. tccli/services/iss/iss_client.py +118 -65
  36. tccli/services/iss/v20230517/api.json +78 -0
  37. tccli/services/iss/v20230517/examples.json +8 -0
  38. tccli/services/mps/v20190612/api.json +257 -8
  39. tccli/services/ocr/v20181119/api.json +10 -0
  40. tccli/services/region/v20220627/api.json +11 -11
  41. tccli/services/region/v20220627/examples.json +1 -1
  42. tccli/services/sms/v20210111/api.json +9 -9
  43. tccli/services/ssl/v20191205/api.json +3 -3
  44. tccli/services/ssl/v20191205/examples.json +2 -2
  45. tccli/services/tat/v20201028/api.json +10 -0
  46. tccli/services/tcb/v20180608/api.json +2 -2
  47. tccli/services/tdmq/v20200217/api.json +2 -2
  48. tccli/services/tdmq/v20200217/examples.json +2 -2
  49. tccli/services/tke/tke_client.py +364 -46
  50. tccli/services/tke/v20180525/api.json +9 -0
  51. tccli/services/tke/v20220501/api.json +525 -0
  52. tccli/services/tke/v20220501/examples.json +54 -0
  53. tccli/services/tmt/v20180321/api.json +2 -2
  54. tccli/services/vdb/v20230616/api.json +29 -1
  55. tccli/services/vod/v20180717/api.json +30 -9
  56. tccli/services/vod/v20180717/examples.json +1 -1
  57. tccli/services/vod/v20240718/api.json +121 -0
  58. tccli/services/vod/v20240718/examples.json +31 -0
  59. tccli/services/vod/vod_client.py +58 -0
  60. tccli/services/vpc/v20170312/api.json +9 -0
  61. tccli/services/wedata/v20210820/api.json +1 -1
  62. {tccli-3.0.1189.1.dist-info → tccli-3.0.1191.1.dist-info}/METADATA +2 -2
  63. {tccli-3.0.1189.1.dist-info → tccli-3.0.1191.1.dist-info}/RECORD +66 -54
  64. {tccli-3.0.1189.1.dist-info → tccli-3.0.1191.1.dist-info}/WHEEL +0 -0
  65. {tccli-3.0.1189.1.dist-info → tccli-3.0.1191.1.dist-info}/entry_points.txt +0 -0
  66. {tccli-3.0.1189.1.dist-info → tccli-3.0.1191.1.dist-info}/license_files/LICENSE +0 -0
@@ -6145,7 +6145,7 @@
6145
6145
  "example": "无",
6146
6146
  "member": "uint64",
6147
6147
  "name": "TotalCount",
6148
- "required": true,
6148
+ "output_required": true,
6149
6149
  "type": "int",
6150
6150
  "value_allowed_null": true
6151
6151
  },
@@ -6155,7 +6155,7 @@
6155
6155
  "example": "无",
6156
6156
  "member": "UpdateRecordInfo",
6157
6157
  "name": "DeployRecordList",
6158
- "required": true,
6158
+ "output_required": true,
6159
6159
  "type": "list",
6160
6160
  "value_allowed_null": true
6161
6161
  },
@@ -9905,7 +9905,7 @@
9905
9905
  "example": "无",
9906
9906
  "member": "int64",
9907
9907
  "name": "DeployRecordId",
9908
- "required": true,
9908
+ "output_required": true,
9909
9909
  "type": "int",
9910
9910
  "value_allowed_null": false
9911
9911
  },
@@ -318,7 +318,7 @@
318
318
  {
319
319
  "document": "查询证书云资源更新记录列表",
320
320
  "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeHostUpdateRecord\n<公共请求参数>\n\n{\n \"OldCertificateId\": \"zYrIXwpu\"\n}",
321
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"DeployRecordList\": [\n {\n \"Id\": 1,\n \"CertId\": \"zXkBVP88\",\n \"OldCertId\": \"zYrIXwpu\",\n \"ResourceTypes\": [\n \"cdn\"\n ],\n \"Status\": 1,\n \"CreateTime\": \"2022-10-09 17:38:38\",\n \"UpdateTime\": \"2022-10-09 19:21:35\"\n }\n ],\n \"RequestId\": \"1111111111111\"\n }\n}",
321
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"DeployRecordList\": [\n {\n \"Id\": 1,\n \"CertId\": \"abc\",\n \"OldCertId\": \"abc\",\n \"ResourceTypes\": [\n \"abc\"\n ],\n \"Regions\": [\n \"abc\"\n ],\n \"Status\": 1,\n \"CreateTime\": \"abc\",\n \"UpdateTime\": \"abc\"\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
322
322
  "title": "查询证书云资源更新记录列表"
323
323
  }
324
324
  ],
@@ -462,7 +462,7 @@
462
462
  {
463
463
  "document": "云资源更新一键回滚",
464
464
  "input": "POST / HTTP/1.1\nHost: ssl.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpdateCertificateRecordRollback\n<公共请求参数>\n\n{\n \"DeployRecordId\": 1\n}",
465
- "output": "{\n \"Response\": {\n \"DeployRecordId\": 0,\n \"RequestId\": \"xx\"\n }\n}",
465
+ "output": "{\n \"Response\": {\n \"DeployRecordId\": 0,\n \"RequestId\": \"abc\"\n }\n}",
466
466
  "title": "云资源更新一键回滚"
467
467
  }
468
468
  ],
@@ -436,6 +436,16 @@
436
436
  "type": "list",
437
437
  "value_allowed_null": true
438
438
  },
439
+ {
440
+ "disabled": false,
441
+ "document": "命令关联的场景\n注意:此字段可能返回 null,表示取不到有效值。",
442
+ "example": "[\"sc-12345678\"]",
443
+ "member": "string",
444
+ "name": "Scenes",
445
+ "output_required": false,
446
+ "type": "list",
447
+ "value_allowed_null": true
448
+ },
439
449
  {
440
450
  "disabled": false,
441
451
  "document": "命令的结构化描述。公共命令有值,用户命令为空字符串。",
@@ -8000,7 +8000,7 @@
8000
8000
  {
8001
8001
  "disabled": false,
8002
8002
  "document": "资源方列表",
8003
- "example": "[\"FLEXDB\", \"COS\",\"SCF\", \"CDN\",\"EKS\", \"CODING\", \"HTTPSERVICE\", \"H",
8003
+ "example": "[\"FLEXDB\", \"COS\",\"SCF\", \"CDN\",\"EKS\", \"CODING\", \"HTTPSERVICE\"]",
8004
8004
  "member": "string",
8005
8005
  "name": "ResourceTypes",
8006
8006
  "required": true,
@@ -8045,7 +8045,7 @@
8045
8045
  "example": "无",
8046
8046
  "member": "PostPaidEnvDeductInfo",
8047
8047
  "name": "PostPaidEnvDeductInfoList",
8048
- "required": true,
8048
+ "output_required": true,
8049
8049
  "type": "list",
8050
8050
  "value_allowed_null": true
8051
8051
  },
@@ -8450,7 +8450,7 @@
8450
8450
  "example": "1",
8451
8451
  "member": "uint64",
8452
8452
  "name": "TotalCount",
8453
- "required": true,
8453
+ "output_required": true,
8454
8454
  "type": "int",
8455
8455
  "value_allowed_null": false
8456
8456
  },
@@ -8460,7 +8460,7 @@
8460
8460
  "example": "无",
8461
8461
  "member": "RabbitMQPrivateVirtualHost",
8462
8462
  "name": "VirtualHostList",
8463
- "required": true,
8463
+ "output_required": true,
8464
8464
  "type": "list",
8465
8465
  "value_allowed_null": true
8466
8466
  },
@@ -616,8 +616,8 @@
616
616
  {
617
617
  "document": "",
618
618
  "input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeRabbitMQVirtualHostList\n<公共请求参数>\n\n{\n \"InstanceId\": \"amqp-testtesttest\",\n \"Limit\": 1,\n \"Offset\": 1\n}",
619
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"RequestId\": \"xx\",\n \"VirtualHostList\": [\n {\n \"VirtualHostName\": \"xx\",\n \"Description\": \"xx\"\n }\n ]\n }\n}",
620
- "title": "获取虚拟机列表"
619
+ "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"RequestId\": \"abc\",\n \"VirtualHostList\": [\n {\n \"VirtualHostName\": \"abc\",\n \"Description\": \"abc\"\n }\n ]\n }\n}",
620
+ "title": "获取云服务器列表"
621
621
  }
622
622
  ],
623
623
  "DescribeRocketMQCluster": [