tccli 3.0.1335.1__py2.py3-none-any.whl → 3.0.1337.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/services/antiddos/v20200309/api.json +2 -2
- tccli/services/bi/v20220105/api.json +93 -0
- tccli/services/captcha/v20190722/api.json +10 -0
- tccli/services/cdb/v20170320/api.json +4 -4
- tccli/services/cdwdoris/v20211228/api.json +2 -2
- tccli/services/cfs/v20190719/api.json +7 -7
- tccli/services/cfw/v20190904/api.json +9 -0
- tccli/services/cls/v20201016/api.json +10 -0
- tccli/services/cme/v20191029/api.json +1 -1
- tccli/services/csip/v20221121/api.json +10 -0
- tccli/services/es/v20250101/api.json +50 -0
- tccli/services/ess/v20201111/api.json +10 -1
- tccli/services/essbasic/v20210526/api.json +11 -2
- tccli/services/gs/v20191118/api.json +11 -1
- tccli/services/gs/v20191118/examples.json +1 -1
- tccli/services/iotexplorer/iotexplorer_client.py +114 -8
- tccli/services/iotexplorer/v20190423/api.json +170 -0
- tccli/services/iotexplorer/v20190423/examples.json +16 -0
- tccli/services/lighthouse/lighthouse_client.py +53 -0
- tccli/services/lighthouse/v20200324/api.json +43 -0
- tccli/services/lighthouse/v20200324/examples.json +8 -0
- tccli/services/lke/lke_client.py +110 -4
- tccli/services/lke/v20231130/api.json +163 -2
- tccli/services/lke/v20231130/examples.json +16 -0
- tccli/services/lkeap/v20240522/api.json +3 -3
- tccli/services/monitor/monitor_client.py +53 -0
- tccli/services/monitor/v20180724/api.json +43 -0
- tccli/services/monitor/v20180724/examples.json +8 -0
- tccli/services/mps/v20190612/api.json +117 -1
- tccli/services/ocr/v20181119/api.json +1 -1
- tccli/services/ocr/v20181119/examples.json +1 -1
- tccli/services/tcbr/v20220217/api.json +22 -0
- tccli/services/tdmq/v20200217/api.json +165 -25
- tccli/services/tdmq/v20200217/examples.json +1 -1
- tccli/services/teo/v20220901/api.json +1 -1
- tccli/services/tiia/tiia_client.py +73 -126
- tccli/services/tiia/v20190529/api.json +0 -112
- tccli/services/tiia/v20190529/examples.json +0 -14
- tccli/services/tione/tione_client.py +216 -4
- tccli/services/tione/v20211111/api.json +190 -0
- tccli/services/tione/v20211111/examples.json +32 -0
- tccli/services/trocket/trocket_client.py +57 -4
- tccli/services/trocket/v20230308/api.json +149 -1
- tccli/services/trocket/v20230308/examples.json +8 -0
- tccli/services/trtc/v20190722/api.json +2 -2
- tccli/services/tsf/v20180326/api.json +4 -3
- tccli/services/tsf/v20180326/examples.json +2 -2
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/RECORD +53 -53
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1335.1.dist-info → tccli-3.0.1337.1.dist-info}/license_files/LICENSE +0 -0
@@ -8163,7 +8163,7 @@
|
|
8163
8163
|
"members": [
|
8164
8164
|
{
|
8165
8165
|
"disabled": false,
|
8166
|
-
"document": "实例
|
8166
|
+
"document": "实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询",
|
8167
8167
|
"example": "amqp-jero744g",
|
8168
8168
|
"member": "string",
|
8169
8169
|
"name": "InstanceId",
|
@@ -8172,8 +8172,8 @@
|
|
8172
8172
|
},
|
8173
8173
|
{
|
8174
8174
|
"disabled": false,
|
8175
|
-
"document": "Vhost
|
8176
|
-
"example": "
|
8175
|
+
"document": "VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到 Vhost 名称",
|
8176
|
+
"example": "testVhost",
|
8177
8177
|
"member": "string",
|
8178
8178
|
"name": "VirtualHost",
|
8179
8179
|
"required": true,
|
@@ -8494,6 +8494,26 @@
|
|
8494
8494
|
"type": "string",
|
8495
8495
|
"value_allowed_null": false
|
8496
8496
|
},
|
8497
|
+
{
|
8498
|
+
"disabled": false,
|
8499
|
+
"document": "创建时间时间戳",
|
8500
|
+
"example": "1736845872769",
|
8501
|
+
"member": "uint64",
|
8502
|
+
"name": "CreateTs",
|
8503
|
+
"output_required": false,
|
8504
|
+
"type": "int",
|
8505
|
+
"value_allowed_null": false
|
8506
|
+
},
|
8507
|
+
{
|
8508
|
+
"disabled": false,
|
8509
|
+
"document": "修改时间时间戳",
|
8510
|
+
"example": "1736845875000",
|
8511
|
+
"member": "uint64",
|
8512
|
+
"name": "ModifyTs",
|
8513
|
+
"output_required": false,
|
8514
|
+
"type": "int",
|
8515
|
+
"value_allowed_null": false
|
8516
|
+
},
|
8497
8517
|
{
|
8498
8518
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
8499
8519
|
"member": "string",
|
@@ -8508,8 +8528,8 @@
|
|
8508
8528
|
"members": [
|
8509
8529
|
{
|
8510
8530
|
"disabled": false,
|
8511
|
-
"document": "实例
|
8512
|
-
"example": "amqp-
|
8531
|
+
"document": "实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询。",
|
8532
|
+
"example": "amqp-2ppxx4rq",
|
8513
8533
|
"member": "string",
|
8514
8534
|
"name": "InstanceId",
|
8515
8535
|
"required": true,
|
@@ -8517,8 +8537,8 @@
|
|
8517
8537
|
},
|
8518
8538
|
{
|
8519
8539
|
"disabled": false,
|
8520
|
-
"document": "Vhost
|
8521
|
-
"example": "
|
8540
|
+
"document": "VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到Vhost名称。",
|
8541
|
+
"example": "testVhost",
|
8522
8542
|
"member": "string",
|
8523
8543
|
"name": "VirtualHost",
|
8524
8544
|
"required": false,
|
@@ -8526,7 +8546,7 @@
|
|
8526
8546
|
},
|
8527
8547
|
{
|
8528
8548
|
"disabled": false,
|
8529
|
-
"document": "分页Offset",
|
8549
|
+
"document": "分页 Offset,默认 0",
|
8530
8550
|
"example": "0",
|
8531
8551
|
"member": "int64",
|
8532
8552
|
"name": "Offset",
|
@@ -8535,7 +8555,7 @@
|
|
8535
8555
|
},
|
8536
8556
|
{
|
8537
8557
|
"disabled": false,
|
8538
|
-
"document": "分页Limit",
|
8558
|
+
"document": "分页 Limit,默认 20",
|
8539
8559
|
"example": "20",
|
8540
8560
|
"member": "int64",
|
8541
8561
|
"name": "Limit",
|
@@ -8553,7 +8573,7 @@
|
|
8553
8573
|
},
|
8554
8574
|
{
|
8555
8575
|
"disabled": false,
|
8556
|
-
"document": "队列类型筛选,不填或 \"all\"
|
8576
|
+
"document": "队列类型筛选,不填或 \"all\":筛选普通队列 和 quorum 队列;\"classic\":筛选 classic(普通) 队列;\"quorum\":筛选 quorum 队列",
|
8557
8577
|
"example": "all",
|
8558
8578
|
"member": "string",
|
8559
8579
|
"name": "QueueType",
|
@@ -8571,7 +8591,7 @@
|
|
8571
8591
|
},
|
8572
8592
|
{
|
8573
8593
|
"disabled": false,
|
8574
|
-
"document": "排序顺序,ascend 或 descend",
|
8594
|
+
"document": "排序顺序,ascend 或 descend\nascend:升序\ndescend:降序",
|
8575
8595
|
"example": "ascend",
|
8576
8596
|
"member": "string",
|
8577
8597
|
"name": "SortOrder",
|
@@ -8586,7 +8606,7 @@
|
|
8586
8606
|
"members": [
|
8587
8607
|
{
|
8588
8608
|
"disabled": false,
|
8589
|
-
"document": "
|
8609
|
+
"document": "队列列表信息",
|
8590
8610
|
"example": "无",
|
8591
8611
|
"member": "RabbitMQQueueListInfo",
|
8592
8612
|
"name": "QueueInfoList",
|
@@ -8596,7 +8616,7 @@
|
|
8596
8616
|
},
|
8597
8617
|
{
|
8598
8618
|
"disabled": false,
|
8599
|
-
"document": "
|
8619
|
+
"document": "队列数量",
|
8600
8620
|
"example": "11",
|
8601
8621
|
"member": "int64",
|
8602
8622
|
"name": "TotalCount",
|
@@ -15526,7 +15546,7 @@
|
|
15526
15546
|
"usage": "out"
|
15527
15547
|
},
|
15528
15548
|
"RabbitMQBindingListInfo": {
|
15529
|
-
"document": "
|
15549
|
+
"document": "RabbitMQ 路由关系列表成员",
|
15530
15550
|
"members": [
|
15531
15551
|
{
|
15532
15552
|
"disabled": false,
|
@@ -15540,8 +15560,8 @@
|
|
15540
15560
|
},
|
15541
15561
|
{
|
15542
15562
|
"disabled": false,
|
15543
|
-
"document": "
|
15544
|
-
"example": "
|
15563
|
+
"document": "VhostName",
|
15564
|
+
"example": "testVhost",
|
15545
15565
|
"member": "string",
|
15546
15566
|
"name": "VirtualHost",
|
15547
15567
|
"output_required": true,
|
@@ -15617,6 +15637,26 @@
|
|
15617
15637
|
"output_required": false,
|
15618
15638
|
"type": "string",
|
15619
15639
|
"value_allowed_null": false
|
15640
|
+
},
|
15641
|
+
{
|
15642
|
+
"disabled": false,
|
15643
|
+
"document": "创建时间时间戳",
|
15644
|
+
"example": "1736845669000",
|
15645
|
+
"member": "uint64",
|
15646
|
+
"name": "CreateTs",
|
15647
|
+
"output_required": false,
|
15648
|
+
"type": "int",
|
15649
|
+
"value_allowed_null": false
|
15650
|
+
},
|
15651
|
+
{
|
15652
|
+
"disabled": false,
|
15653
|
+
"document": "修改时间时间戳",
|
15654
|
+
"example": "1736845669000",
|
15655
|
+
"member": "uint64",
|
15656
|
+
"name": "ModifyTs",
|
15657
|
+
"output_required": false,
|
15658
|
+
"type": "int",
|
15659
|
+
"value_allowed_null": false
|
15620
15660
|
}
|
15621
15661
|
],
|
15622
15662
|
"usage": "out"
|
@@ -16160,7 +16200,7 @@
|
|
16160
16200
|
"members": [
|
16161
16201
|
{
|
16162
16202
|
"disabled": false,
|
16163
|
-
"document": "exchange
|
16203
|
+
"document": "exchange 名称",
|
16164
16204
|
"example": "tea-exchange",
|
16165
16205
|
"member": "string",
|
16166
16206
|
"name": "ExchangeName",
|
@@ -16190,7 +16230,7 @@
|
|
16190
16230
|
},
|
16191
16231
|
{
|
16192
16232
|
"disabled": false,
|
16193
|
-
"document": "
|
16233
|
+
"document": "交换机所属 Virtual Host 名称",
|
16194
16234
|
"example": "tdmq_data",
|
16195
16235
|
"member": "string",
|
16196
16236
|
"name": "VirtualHost",
|
@@ -16317,6 +16357,26 @@
|
|
16317
16357
|
"output_required": false,
|
16318
16358
|
"type": "int",
|
16319
16359
|
"value_allowed_null": true
|
16360
|
+
},
|
16361
|
+
{
|
16362
|
+
"disabled": false,
|
16363
|
+
"document": "创建时间时间戳",
|
16364
|
+
"example": "1736845893923",
|
16365
|
+
"member": "uint64",
|
16366
|
+
"name": "CreateTs",
|
16367
|
+
"output_required": false,
|
16368
|
+
"type": "int",
|
16369
|
+
"value_allowed_null": false
|
16370
|
+
},
|
16371
|
+
{
|
16372
|
+
"disabled": false,
|
16373
|
+
"document": "修改时间时间戳",
|
16374
|
+
"example": "1736845896000",
|
16375
|
+
"member": "uint64",
|
16376
|
+
"name": "ModifyTs",
|
16377
|
+
"output_required": false,
|
16378
|
+
"type": "int",
|
16379
|
+
"value_allowed_null": false
|
16320
16380
|
}
|
16321
16381
|
],
|
16322
16382
|
"usage": "out"
|
@@ -16326,8 +16386,8 @@
|
|
16326
16386
|
"members": [
|
16327
16387
|
{
|
16328
16388
|
"disabled": false,
|
16329
|
-
"document": "
|
16330
|
-
"example": "amqp-
|
16389
|
+
"document": "实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询。",
|
16390
|
+
"example": "amqp-2ppxx4rq",
|
16331
16391
|
"member": "string",
|
16332
16392
|
"name": "InstanceId",
|
16333
16393
|
"output_required": true,
|
@@ -16336,8 +16396,8 @@
|
|
16336
16396
|
},
|
16337
16397
|
{
|
16338
16398
|
"disabled": false,
|
16339
|
-
"document": "
|
16340
|
-
"example": "
|
16399
|
+
"document": "用户名,形如 admin。有效的 User 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,点击集群列表中的集群,进入集群详情,并在用户与权限页签中找到用户列表,从而找到用户名称。",
|
16400
|
+
"example": "admin",
|
16341
16401
|
"member": "string",
|
16342
16402
|
"name": "User",
|
16343
16403
|
"output_required": true,
|
@@ -16346,7 +16406,7 @@
|
|
16346
16406
|
},
|
16347
16407
|
{
|
16348
16408
|
"disabled": false,
|
16349
|
-
"document": "
|
16409
|
+
"document": "VirtualHost 名称,形如 testvhost。有效的 VirtualHost 名称可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询,在左侧导航栏点击 Vhost,并在 Vhost 列表中找到 Vhost 名称。",
|
16350
16410
|
"example": "testVhost",
|
16351
16411
|
"member": "string",
|
16352
16412
|
"name": "VirtualHost",
|
@@ -16403,6 +16463,26 @@
|
|
16403
16463
|
"output_required": false,
|
16404
16464
|
"type": "string",
|
16405
16465
|
"value_allowed_null": false
|
16466
|
+
},
|
16467
|
+
{
|
16468
|
+
"disabled": false,
|
16469
|
+
"document": "创建时间时间戳",
|
16470
|
+
"example": "1736845619365",
|
16471
|
+
"member": "uint64",
|
16472
|
+
"name": "CreateTs",
|
16473
|
+
"output_required": false,
|
16474
|
+
"type": "int",
|
16475
|
+
"value_allowed_null": false
|
16476
|
+
},
|
16477
|
+
{
|
16478
|
+
"disabled": false,
|
16479
|
+
"document": "修改时间时间戳",
|
16480
|
+
"example": "1743481475296",
|
16481
|
+
"member": "uint64",
|
16482
|
+
"name": "ModifyTs",
|
16483
|
+
"output_required": false,
|
16484
|
+
"type": "int",
|
16485
|
+
"value_allowed_null": false
|
16406
16486
|
}
|
16407
16487
|
],
|
16408
16488
|
"usage": "out"
|
@@ -16661,6 +16741,26 @@
|
|
16661
16741
|
"output_required": false,
|
16662
16742
|
"type": "bool",
|
16663
16743
|
"value_allowed_null": false
|
16744
|
+
},
|
16745
|
+
{
|
16746
|
+
"disabled": false,
|
16747
|
+
"document": "创建时间时间戳",
|
16748
|
+
"example": "1736845882000",
|
16749
|
+
"member": "uint64",
|
16750
|
+
"name": "CreateTs",
|
16751
|
+
"output_required": false,
|
16752
|
+
"type": "int",
|
16753
|
+
"value_allowed_null": false
|
16754
|
+
},
|
16755
|
+
{
|
16756
|
+
"disabled": false,
|
16757
|
+
"document": "修改时间时间戳",
|
16758
|
+
"example": "1736845884000",
|
16759
|
+
"member": "uint64",
|
16760
|
+
"name": "ModifyTs",
|
16761
|
+
"output_required": false,
|
16762
|
+
"type": "int",
|
16763
|
+
"value_allowed_null": false
|
16664
16764
|
}
|
16665
16765
|
],
|
16666
16766
|
"usage": "out"
|
@@ -16670,8 +16770,8 @@
|
|
16670
16770
|
"members": [
|
16671
16771
|
{
|
16672
16772
|
"disabled": false,
|
16673
|
-
"document": "
|
16674
|
-
"example": "amqp-
|
16773
|
+
"document": "实例 ID,形如 amqp-xxxxxxxx。有效的 InstanceId 可通过登录 [TDMQ RabbitMQ 控制台](https://console.cloud.tencent.com/trabbitmq/cluster?rid=1)查询。",
|
16774
|
+
"example": "amqp-2ppxx4rq",
|
16675
16775
|
"member": "string",
|
16676
16776
|
"name": "InstanceId",
|
16677
16777
|
"output_required": true,
|
@@ -16767,6 +16867,26 @@
|
|
16767
16867
|
"output_required": false,
|
16768
16868
|
"type": "int",
|
16769
16869
|
"value_allowed_null": true
|
16870
|
+
},
|
16871
|
+
{
|
16872
|
+
"disabled": false,
|
16873
|
+
"document": "创建时间时间戳",
|
16874
|
+
"example": "1736845619365",
|
16875
|
+
"member": "uint64",
|
16876
|
+
"name": "CreateTs",
|
16877
|
+
"output_required": false,
|
16878
|
+
"type": "int",
|
16879
|
+
"value_allowed_null": false
|
16880
|
+
},
|
16881
|
+
{
|
16882
|
+
"disabled": false,
|
16883
|
+
"document": "修改时间时间戳",
|
16884
|
+
"example": "1743481475296",
|
16885
|
+
"member": "uint64",
|
16886
|
+
"name": "ModifyTs",
|
16887
|
+
"output_required": false,
|
16888
|
+
"type": "int",
|
16889
|
+
"value_allowed_null": false
|
16770
16890
|
}
|
16771
16891
|
],
|
16772
16892
|
"usage": "out"
|
@@ -17119,6 +17239,26 @@
|
|
17119
17239
|
"output_required": false,
|
17120
17240
|
"type": "bool",
|
17121
17241
|
"value_allowed_null": false
|
17242
|
+
},
|
17243
|
+
{
|
17244
|
+
"disabled": false,
|
17245
|
+
"document": "创建时间时间戳",
|
17246
|
+
"example": "1736845872769",
|
17247
|
+
"member": "uint64",
|
17248
|
+
"name": "CreateTs",
|
17249
|
+
"output_required": false,
|
17250
|
+
"type": "int",
|
17251
|
+
"value_allowed_null": false
|
17252
|
+
},
|
17253
|
+
{
|
17254
|
+
"disabled": false,
|
17255
|
+
"document": "修改时间时间戳",
|
17256
|
+
"example": "1736845875000",
|
17257
|
+
"member": "uint64",
|
17258
|
+
"name": "ModifyTs",
|
17259
|
+
"output_required": false,
|
17260
|
+
"type": "int",
|
17261
|
+
"value_allowed_null": false
|
17122
17262
|
}
|
17123
17263
|
],
|
17124
17264
|
"usage": "out"
|
@@ -601,7 +601,7 @@
|
|
601
601
|
"DescribeRabbitMQQueues": [
|
602
602
|
{
|
603
603
|
"document": "查询当前 vhost 下所有 queue",
|
604
|
-
"input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeRabbitMQQueues\n<公共请求参数>\n\n{\n \"InstanceId\": \"amqp-
|
604
|
+
"input": "POST / HTTP/1.1\nHost: tdmq.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeRabbitMQQueues\n<公共请求参数>\n\n{\n \"InstanceId\": \"amqp-2ppxx4rq\",\n \"VirtualHost\": \"testVhost\"\n}",
|
605
605
|
"output": "{\n \"Response\": {\n \"RequestId\": \"a8f28d5e-a7e2-4b0b-afa0-2fba09c077a0\",\n \"QueueInfoList\": [\n {\n \"QueueName\": \"prod.queue\",\n \"Remark\": null,\n \"QueueType\": \"classic\",\n \"ConsumerDetail\": {\n \"ConsumersNumber\": 1\n },\n \"MessageHeapCount\": 0,\n \"MessageRateIn\": 0,\n \"MessageRateOut\": 0\n }\n ],\n \"TotalCount\": 1\n }\n}",
|
606
606
|
"title": "查询RabbitMQ队列列表"
|
607
607
|
}
|
@@ -18713,7 +18713,7 @@
|
|
18713
18713
|
},
|
18714
18714
|
{
|
18715
18715
|
"disabled": false,
|
18716
|
-
"document": "自定义回源 HOST 头,该参数仅当 OriginType=IP_DOMAIN 时生效。\n如果 OriginType=COS 或 AWS_S3 时,回源 HOST 头将与源站域名保持一致。\n如果OriginType=ORIGIN_GROUP
|
18716
|
+
"document": "自定义回源 HOST 头,该参数仅当 OriginType=IP_DOMAIN 时生效。\n如果 OriginType=COS 或 AWS_S3 时,回源 HOST 头将与源站域名保持一致。\n如果OriginType=ORIGIN_GROUP 时,回源 HOST 头遵循源站组内配置,如果没有配置则默认为加速域名。\n如果 OriginType=VOD 或 SPACE 时,无需配置该头部,按对应的回源域名生效。",
|
18717
18717
|
"example": "www.tencentcloud.com",
|
18718
18718
|
"member": "string",
|
18719
18719
|
"name": "HostHeader",
|