tccli 3.0.1341.1__py2.py3-none-any.whl → 3.0.1342.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.
- tccli/__init__.py +1 -1
- tccli/plugins/sso/__init__.py +14 -0
- tccli/plugins/sso/login.py +23 -6
- tccli/plugins/sso/texts.py +4 -0
- tccli/services/__init__.py +3 -0
- tccli/services/ams/v20201229/api.json +195 -185
- tccli/services/apm/v20210622/api.json +10 -0
- tccli/services/cdb/v20170320/api.json +15 -15
- tccli/services/cdb/v20170320/examples.json +2 -2
- tccli/services/ctem/__init__.py +4 -0
- tccli/services/ctem/ctem_client.py +1479 -0
- tccli/services/ctem/v20231128/api.json +6138 -0
- tccli/services/ctem/v20231128/examples.json +205 -0
- tccli/services/dlc/v20210125/api.json +15 -6
- tccli/services/hunyuan/v20230901/api.json +10 -1
- tccli/services/ims/v20201229/api.json +30 -30
- tccli/services/iotexplorer/v20190423/api.json +2 -2
- tccli/services/iotexplorer/v20190423/examples.json +1 -1
- tccli/services/iotvideo/v20201215/api.json +2 -2
- tccli/services/iotvideo/v20201215/examples.json +1 -1
- tccli/services/iotvideo/v20211125/api.json +1 -1
- tccli/services/iotvideo/v20211125/examples.json +1 -1
- tccli/services/lke/v20231130/api.json +22 -1
- tccli/services/mongodb/v20190725/api.json +10 -0
- tccli/services/mps/v20190612/api.json +113 -25
- tccli/services/mqtt/mqtt_client.py +53 -0
- tccli/services/mqtt/v20240516/api.json +150 -0
- tccli/services/mqtt/v20240516/examples.json +8 -0
- tccli/services/redis/v20180412/api.json +3 -3
- tccli/services/redis/v20180412/examples.json +19 -1
- tccli/services/tke/v20180525/api.json +10 -0
- tccli/services/trocket/v20230308/api.json +71 -71
- tccli/services/trocket/v20230308/examples.json +4 -4
- tccli/services/vm/v20210922/api.json +363 -333
- tccli/services/wedata/v20210820/api.json +128 -0
- tccli/services/wedata/v20210820/examples.json +8 -0
- tccli/services/wedata/wedata_client.py +53 -0
- {tccli-3.0.1341.1.dist-info → tccli-3.0.1342.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1341.1.dist-info → tccli-3.0.1342.1.dist-info}/RECORD +42 -38
- {tccli-3.0.1341.1.dist-info → tccli-3.0.1342.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1341.1.dist-info → tccli-3.0.1342.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1341.1.dist-info → tccli-3.0.1342.1.dist-info}/license_files/LICENSE +0 -0
@@ -231,6 +231,13 @@
|
|
231
231
|
"output": "DescribeMessageByTopicResponse",
|
232
232
|
"status": "online"
|
233
233
|
},
|
234
|
+
"DescribeMessageDetails": {
|
235
|
+
"document": "查询MQTT消息详情",
|
236
|
+
"input": "DescribeMessageDetailsRequest",
|
237
|
+
"name": "查询MQTT详细信息",
|
238
|
+
"output": "DescribeMessageDetailsResponse",
|
239
|
+
"status": "online"
|
240
|
+
},
|
234
241
|
"DescribeMessageList": {
|
235
242
|
"document": "根据一级Topic查询消息列表",
|
236
243
|
"input": "DescribeMessageListRequest",
|
@@ -3078,6 +3085,121 @@
|
|
3078
3085
|
],
|
3079
3086
|
"type": "object"
|
3080
3087
|
},
|
3088
|
+
"DescribeMessageDetailsRequest": {
|
3089
|
+
"document": "DescribeMessageDetails请求参数结构体",
|
3090
|
+
"members": [
|
3091
|
+
{
|
3092
|
+
"disabled": false,
|
3093
|
+
"document": "腾讯云MQTT实例ID,从 [DescribeInstanceList](https://cloud.tencent.com/document/api/1778/111029)接口或控制台获得。",
|
3094
|
+
"example": "mqtt-xxxx",
|
3095
|
+
"member": "string",
|
3096
|
+
"name": "InstanceId",
|
3097
|
+
"required": true,
|
3098
|
+
"type": "string"
|
3099
|
+
},
|
3100
|
+
{
|
3101
|
+
"disabled": false,
|
3102
|
+
"document": "消息ID",
|
3103
|
+
"example": "0B8D67D3003505C29BFD077EC65B0002",
|
3104
|
+
"member": "string",
|
3105
|
+
"name": "MessageId",
|
3106
|
+
"required": true,
|
3107
|
+
"type": "string"
|
3108
|
+
},
|
3109
|
+
{
|
3110
|
+
"disabled": false,
|
3111
|
+
"document": "订阅表达式",
|
3112
|
+
"example": "home/room",
|
3113
|
+
"member": "string",
|
3114
|
+
"name": "Subscription",
|
3115
|
+
"required": false,
|
3116
|
+
"type": "string"
|
3117
|
+
}
|
3118
|
+
],
|
3119
|
+
"type": "object"
|
3120
|
+
},
|
3121
|
+
"DescribeMessageDetailsResponse": {
|
3122
|
+
"document": "DescribeMessageDetails返回参数结构体",
|
3123
|
+
"members": [
|
3124
|
+
{
|
3125
|
+
"disabled": false,
|
3126
|
+
"document": "消息体",
|
3127
|
+
"example": "body",
|
3128
|
+
"member": "string",
|
3129
|
+
"name": "Body",
|
3130
|
+
"output_required": true,
|
3131
|
+
"type": "string",
|
3132
|
+
"value_allowed_null": false
|
3133
|
+
},
|
3134
|
+
{
|
3135
|
+
"disabled": false,
|
3136
|
+
"document": "用户自定义属性",
|
3137
|
+
"example": "无",
|
3138
|
+
"member": "UserProperty",
|
3139
|
+
"name": "UserProperties",
|
3140
|
+
"output_required": false,
|
3141
|
+
"type": "list",
|
3142
|
+
"value_allowed_null": false
|
3143
|
+
},
|
3144
|
+
{
|
3145
|
+
"disabled": false,
|
3146
|
+
"document": "消息存储时间,毫秒级时间戳。",
|
3147
|
+
"example": "1745828681259",
|
3148
|
+
"member": "int64",
|
3149
|
+
"name": "StoreTimestamp",
|
3150
|
+
"output_required": true,
|
3151
|
+
"type": "int",
|
3152
|
+
"value_allowed_null": false
|
3153
|
+
},
|
3154
|
+
{
|
3155
|
+
"disabled": false,
|
3156
|
+
"document": "消息ID",
|
3157
|
+
"example": "0B8D67D3003505C29BFD077EC65B0002",
|
3158
|
+
"member": "string",
|
3159
|
+
"name": "MessageId",
|
3160
|
+
"output_required": true,
|
3161
|
+
"type": "string",
|
3162
|
+
"value_allowed_null": false
|
3163
|
+
},
|
3164
|
+
{
|
3165
|
+
"disabled": false,
|
3166
|
+
"document": "生产者地址",
|
3167
|
+
"example": "client-1",
|
3168
|
+
"member": "string",
|
3169
|
+
"name": "ClientId",
|
3170
|
+
"output_required": true,
|
3171
|
+
"type": "string",
|
3172
|
+
"value_allowed_null": false
|
3173
|
+
},
|
3174
|
+
{
|
3175
|
+
"disabled": false,
|
3176
|
+
"document": "Topic",
|
3177
|
+
"example": "1",
|
3178
|
+
"member": "string",
|
3179
|
+
"name": "Qos",
|
3180
|
+
"output_required": true,
|
3181
|
+
"type": "string",
|
3182
|
+
"value_allowed_null": false
|
3183
|
+
},
|
3184
|
+
{
|
3185
|
+
"disabled": false,
|
3186
|
+
"document": "源topic",
|
3187
|
+
"example": "home/room",
|
3188
|
+
"member": "string",
|
3189
|
+
"name": "OriginTopic",
|
3190
|
+
"output_required": true,
|
3191
|
+
"type": "string",
|
3192
|
+
"value_allowed_null": false
|
3193
|
+
},
|
3194
|
+
{
|
3195
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
3196
|
+
"member": "string",
|
3197
|
+
"name": "RequestId",
|
3198
|
+
"type": "string"
|
3199
|
+
}
|
3200
|
+
],
|
3201
|
+
"type": "object"
|
3202
|
+
},
|
3081
3203
|
"DescribeMessageListRequest": {
|
3082
3204
|
"document": "DescribeMessageList请求参数结构体",
|
3083
3205
|
"members": [
|
@@ -5792,6 +5914,34 @@
|
|
5792
5914
|
],
|
5793
5915
|
"type": "object"
|
5794
5916
|
},
|
5917
|
+
"UserProperty": {
|
5918
|
+
"document": "map结构返回",
|
5919
|
+
"members": [
|
5920
|
+
{
|
5921
|
+
"disabled": false,
|
5922
|
+
"document": "key",
|
5923
|
+
"example": "key1",
|
5924
|
+
"member": "string",
|
5925
|
+
"name": "Key",
|
5926
|
+
"output_required": false,
|
5927
|
+
"required": false,
|
5928
|
+
"type": "string",
|
5929
|
+
"value_allowed_null": false
|
5930
|
+
},
|
5931
|
+
{
|
5932
|
+
"disabled": false,
|
5933
|
+
"document": "value",
|
5934
|
+
"example": "value1",
|
5935
|
+
"member": "string",
|
5936
|
+
"name": "Value",
|
5937
|
+
"output_required": false,
|
5938
|
+
"required": false,
|
5939
|
+
"type": "string",
|
5940
|
+
"value_allowed_null": false
|
5941
|
+
}
|
5942
|
+
],
|
5943
|
+
"usage": "both"
|
5944
|
+
},
|
5795
5945
|
"VpcInfo": {
|
5796
5946
|
"document": "VPC信息",
|
5797
5947
|
"members": [
|
@@ -270,6 +270,14 @@
|
|
270
270
|
"title": "示例"
|
271
271
|
}
|
272
272
|
],
|
273
|
+
"DescribeMessageDetails": [
|
274
|
+
{
|
275
|
+
"document": "示例",
|
276
|
+
"input": "POST / HTTP/1.1\nHost: mqtt.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeMessageDetails\n<公共请求参数>\n\n{\n \"InstanceId\": \"mqtt-g839agr2\",\n \"MessageId\": \"15397032005D639FEE4893603732005C\"\n}",
|
277
|
+
"output": "{\n \"Error\": null,\n \"RequestId\": null,\n \"Response\": {\n \"Body\": \"this is body\",\n \"ClientId\": \"client1\",\n \"MessageId\": \"15397032005D639FEE4893603732005C\",\n \"OriginTopic\": \"home/room3\",\n \"Qos\": \"1\",\n \"RequestId\": \"ba5d5d6a-64c9-40cf-8889-21efed76389d\",\n \"StoreTimestamp\": \"1745828681259\",\n \"UserProperties\": [\n {\n \"Key\": \"key1\",\n \"Value\": \"value-1\"\n },\n {\n \"Key\": \"key2\",\n \"Value\": \"value-2\"\n }\n ]\n }\n}",
|
278
|
+
"title": "示例"
|
279
|
+
}
|
280
|
+
],
|
273
281
|
"DescribeMessageList": [
|
274
282
|
{
|
275
283
|
"document": "",
|
@@ -5373,7 +5373,7 @@
|
|
5373
5373
|
},
|
5374
5374
|
{
|
5375
5375
|
"disabled": false,
|
5376
|
-
"document": "
|
5376
|
+
"document": "慢查询详情,注意:TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。 建议缩小BeginTime和EndTime的时间间隔,多次查询。",
|
5377
5377
|
"example": "无",
|
5378
5378
|
"member": "InstanceProxySlowlogDetail",
|
5379
5379
|
"name": "InstanceProxySlowLogDetail",
|
@@ -5954,7 +5954,7 @@
|
|
5954
5954
|
},
|
5955
5955
|
{
|
5956
5956
|
"disabled": false,
|
5957
|
-
"document": "
|
5957
|
+
"document": "慢查询详情,注意:TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。 建议缩小BeginTime和EndTime的时间间隔,多次查询。",
|
5958
5958
|
"example": "无",
|
5959
5959
|
"member": "InstanceSlowlogDetail",
|
5960
5960
|
"name": "InstanceSlowLogDetail",
|
@@ -6269,7 +6269,7 @@
|
|
6269
6269
|
},
|
6270
6270
|
{
|
6271
6271
|
"disabled": false,
|
6272
|
-
"document": "
|
6272
|
+
"document": "慢查询详情,注意:TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。 建议缩小BeginTime和EndTime的时间间隔,多次查询。",
|
6273
6273
|
"example": "无",
|
6274
6274
|
"member": "TendisSlowLogDetail",
|
6275
6275
|
"name": "TendisSlowLogDetail",
|
@@ -452,6 +452,12 @@
|
|
452
452
|
"input": "https://redis.tencentcloudapi.com/?Action=DescribeProxySlowLog\n&InstanceId=crs-asda****\n&BeginTime=2019-09-08 12:12:41\n&EndTime=2019-09-09 12:12:41\n&<公共请求参数>",
|
453
453
|
"output": "{\n \"Response\": {\n \"TotalCount\": 106980,\n \"InstanceProxySlowLogDetail\": [\n {\n \"Duration\": 45,\n \"ExecuteTime\": \"2019-09-08 12:13:08\",\n \"CommandLine\": \"hget hash_key classify_scope::default\",\n \"Client\": \"172.16.21.78\",\n \"Command\": \"hget\"\n }\n ],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef686158cbd6\"\n }\n}",
|
454
454
|
"title": "请求示例"
|
455
|
+
},
|
456
|
+
{
|
457
|
+
"document": "TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。",
|
458
|
+
"input": "https://redis.tencentcloudapi.com/?Action=DescribeProxySlowLog\n&InstanceId=crs-asda****\n&BeginTime=2019-09-08 12:12:41\n&EndTime=2019-09-09 12:12:41\n&Limit=10\n&Offset=10000\n&<公共请求参数>",
|
459
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 10001,\n \"InstanceProxySlowLogDetail\": [],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef686158cbd6\"\n }\n}",
|
460
|
+
"title": "请求示例2"
|
455
461
|
}
|
456
462
|
],
|
457
463
|
"DescribeRedisClusterOverview": [
|
@@ -508,6 +514,12 @@
|
|
508
514
|
"input": "POST / HTTP/1.1\nHost: redis.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeSlowLog\n<公共请求参数>\n\n{\n \"InstanceId\": \"crs-asda****\",\n \"EndTime\": \"2019-09-09 12:12:41\",\n \"BeginTime\": \"2019-09-08 12:12:41\"\n}",
|
509
515
|
"output": "{\n \"Response\": {\n \"InstanceSlowLogDetail\": [\n {\n \"Node\": \"833a2f6d8b402319aee8ad7f1c0fbbf7********\",\n \"Command\": \"hget\",\n \"CommandLine\": \"hget hash_key classify_scope::default\",\n \"Duration\": 45,\n \"ExecuteTime\": \"2019-09-08 12:13:08\",\n \"Client\": \"\"\n },\n {\n \"Node\": \"833a2f6d8b402319aee8ad7f1c0fbbf7********\",\n \"Command\": \"keys\",\n \"CommandLine\": \"keys OtherResControler:orion.ovs.client.1514259512471:orion.ovs.entprise.9281083591:sence:*\",\n \"Duration\": 41,\n \"ExecuteTime\": \"2019-09-08 12:13:08\",\n \"Client\": \"\"\n },\n {\n \"Node\": \"24a05f0d545da235f07a5bc5deebb937********\",\n \"Command\": \"get\",\n \"CommandLine\": \"get slot::fsm::status::orion.ovs.client.1508751991541::1db7ffcf9216bc1fd939e6c710514f6fb40fd4fe1525f\",\n \"Duration\": 41,\n \"ExecuteTime\": \"2019-09-08 12:13:08\",\n \"Client\": \"\"\n }\n ],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef686158cbd6\",\n \"TotalCount\": 106980\n }\n}",
|
510
516
|
"title": "查询实例慢查询记录"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"document": "TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。",
|
520
|
+
"input": "POST / HTTP/1.1\nHost: redis.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeSlowLog\n<公共请求参数>\n\n{\n \"InstanceId\": \"crs-asda****\",\n \"EndTime\": \"2019-09-09 12:12:41\",\n \"BeginTime\": \"2019-09-08 12:12:41\",\n \"Limit\": 10,\n \"Offset\": 10000\n}",
|
521
|
+
"output": "{\n \"Response\": {\n \"InstanceSlowLogDetail\": [],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef686158cbd6\",\n \"TotalCount\": 106980\n }\n}",
|
522
|
+
"title": "查询实例慢查询记录超过1W条"
|
511
523
|
}
|
512
524
|
],
|
513
525
|
"DescribeTaskInfo": [
|
@@ -529,9 +541,15 @@
|
|
529
541
|
"DescribeTendisSlowLog": [
|
530
542
|
{
|
531
543
|
"document": "",
|
532
|
-
"input": "https://redis.tencentcloudapi.com/?Action=DescribeTendisSlowLog\n&InstanceId=crs-
|
544
|
+
"input": "https://redis.tencentcloudapi.com/?Action=DescribeTendisSlowLog\n&InstanceId=crs-asdas***\n&BeginTime=2019-09-08 12:12:41\n&EndTime=2019-09-09 12:12:41\n&<公共请求参数>",
|
533
545
|
"output": "{\n \"Response\": {\n \"TotalCount\": 106980,\n \"TendisSlowLogDetail\": [\n {\n \"Node\": \"833a2f6d8b402319aee8ad7f1c0fbbf7a6604337\",\n \"Command\": \"hget\",\n \"CommandLine\": \"hget hash_key classify_scope::default\",\n \"Duration\": 45,\n \"ExecuteTime\": \"2019-09-08 12:13:08\"\n }\n ],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef686158cbd6\"\n }\n}",
|
534
546
|
"title": "请求示例"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"document": "TotalCount大于1W,即慢日志超过1万条,不支持返回日志详情,返回数据为空。",
|
550
|
+
"input": "https://redis.tencentcloudapi.com/?Action=DescribeTendisSlowLog\n&InstanceId=crs-asdas***\n&BeginTime=2019-09-08 12:12:41\n&EndTime=2019-09-09 12:12:41\n&Limit=10\n&Offset=10000\n&<公共请求参数>",
|
551
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 106980,\n \"TendisSlowLogDetail\": [],\n \"RequestId\": \"121d5b40-d2b8-11e9-8c40-ef68615******\"\n }\n}",
|
552
|
+
"title": "请求示例2"
|
535
553
|
}
|
536
554
|
],
|
537
555
|
"DestroyPostpaidInstance": [
|
@@ -3985,6 +3985,16 @@
|
|
3985
3985
|
"output_required": true,
|
3986
3986
|
"type": "string",
|
3987
3987
|
"value_allowed_null": false
|
3988
|
+
},
|
3989
|
+
{
|
3990
|
+
"disabled": false,
|
3991
|
+
"document": "控制面子网信息,仅在以下场景返回。\n- 容器网络插件为CiliumOverlay。\n- 支持CDC的托管集群,且网络插件为VPC-CNI。",
|
3992
|
+
"example": "subnet-0bn5jksy",
|
3993
|
+
"member": "string",
|
3994
|
+
"name": "SubnetId",
|
3995
|
+
"output_required": false,
|
3996
|
+
"type": "string",
|
3997
|
+
"value_allowed_null": false
|
3988
3998
|
}
|
3989
3999
|
],
|
3990
4000
|
"usage": "out"
|