tccli-intl-en 3.1.1.1__py2.py3-none-any.whl → 3.1.8.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/__init__.py +6 -0
- tccli/services/autoscaling/v20180419/api.json +36 -14
- tccli/services/ckafka/ckafka_client.py +288 -8
- tccli/services/ckafka/v20190819/api.json +494 -76
- tccli/services/ckafka/v20190819/examples.json +45 -5
- tccli/services/clb/clb_client.py +636 -300
- tccli/services/clb/v20180317/api.json +1245 -367
- tccli/services/clb/v20180317/examples.json +172 -112
- tccli/services/controlcenter/controlcenter_client.py +224 -0
- tccli/services/controlcenter/v20230110/api.json +528 -5
- tccli/services/controlcenter/v20230110/examples.json +32 -0
- tccli/services/cvm/v20170312/examples.json +1 -1
- tccli/services/faceid/v20180301/api.json +31 -3
- tccli/services/kms/v20190118/api.json +80 -3
- tccli/services/kms/v20190118/examples.json +3 -3
- tccli/services/mdl/v20200326/api.json +165 -5
- tccli/services/mongodb/mongodb_client.py +1048 -96
- tccli/services/mongodb/v20190725/api.json +1765 -108
- tccli/services/mongodb/v20190725/examples.json +136 -0
- tccli/services/mps/mps_client.py +713 -209
- tccli/services/mps/v20190612/api.json +1009 -67
- tccli/services/mps/v20190612/examples.json +100 -52
- tccli/services/ocr/ocr_client.py +112 -0
- tccli/services/ocr/v20181119/api.json +514 -0
- tccli/services/ocr/v20181119/examples.json +22 -0
- tccli/services/smh/__init__.py +4 -0
- tccli/services/smh/smh_client.py +714 -0
- tccli/services/smh/v20210712/api.json +1287 -0
- tccli/services/smh/v20210712/examples.json +85 -0
- tccli/services/tdmq/tdmq_client.py +2406 -278
- tccli/services/tdmq/v20200217/api.json +11607 -3958
- tccli/services/tdmq/v20200217/examples.json +562 -264
- tccli/services/teo/v20220901/api.json +68 -4
- tccli/services/teo/v20220901/examples.json +28 -22
- tccli/services/trocket/__init__.py +4 -0
- tccli/services/trocket/trocket_client.py +2450 -0
- tccli/services/trocket/v20230308/api.json +6062 -0
- tccli/services/trocket/v20230308/examples.json +339 -0
- tccli/services/vpc/v20170312/api.json +19 -16
- tccli/services/vpc/v20170312/examples.json +4 -4
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/METADATA +2 -2
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/RECORD +47 -39
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/LICENSE +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/WHEEL +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/entry_points.txt +0 -0
- {tccli_intl_en-3.1.1.1.dist-info → tccli_intl_en-3.1.8.1.dist-info}/top_level.txt +0 -0
|
@@ -138,6 +138,22 @@
|
|
|
138
138
|
"title": "Deleting an ACL"
|
|
139
139
|
}
|
|
140
140
|
],
|
|
141
|
+
"DeleteAclRule": [
|
|
142
|
+
{
|
|
143
|
+
"document": " ",
|
|
144
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteAclRule\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-123456\",\n \"RuleName\": \"testRule\"\n}",
|
|
145
|
+
"output": "{\n \"Response\": {\n \"Result\": 12,\n \"RequestId\": \"8c3daa3a-d87b-47ef-9ddd-f0905eeb8d84\"\n }\n}",
|
|
146
|
+
"title": "Deleting an ACL Rule Example"
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"DeleteGroup": [
|
|
150
|
+
{
|
|
151
|
+
"document": " ",
|
|
152
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DeleteGroup\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-6er88krk\",\n \"Group\": \"grouptest\"\n}",
|
|
153
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ReturnCode\": \"0\",\n \"ReturnMessage\": \"group delete success\",\n \"Data\": null\n },\n \"RequestId\": \"7118b7f95-43de-4d27-8sdadsa-dsadsadsa\"\n }\n}",
|
|
154
|
+
"title": "Deleting a Consumer Group Instance"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
141
157
|
"DeleteInstancePost": [
|
|
142
158
|
{
|
|
143
159
|
"document": "This example shows you how to delete post-payment instances.",
|
|
@@ -210,12 +226,12 @@
|
|
|
210
226
|
"title": "Enumerating ACL"
|
|
211
227
|
}
|
|
212
228
|
],
|
|
213
|
-
"
|
|
229
|
+
"DescribeCkafkaVersion": [
|
|
214
230
|
{
|
|
215
|
-
"document": " ",
|
|
216
|
-
"input": "
|
|
217
|
-
"output": "{\n \"Response\": {\n \"
|
|
218
|
-
"title": "Querying
|
|
231
|
+
"document": "This example shows you how to query the Instance Version Information.",
|
|
232
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCkafkaVersion\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-bqwlyrg8\"\n}",
|
|
233
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"d173b4fb-c6d0-4507-a822-b6f277fc4016\"\n }\n}",
|
|
234
|
+
"title": "Querying Instance Version Information"
|
|
219
235
|
}
|
|
220
236
|
],
|
|
221
237
|
"DescribeCkafkaZone": [
|
|
@@ -434,6 +450,14 @@
|
|
|
434
450
|
"title": "Ckafka Pricing"
|
|
435
451
|
}
|
|
436
452
|
],
|
|
453
|
+
"InstanceScalingDown": [
|
|
454
|
+
{
|
|
455
|
+
"document": "This example shows you how to perform instance downsizing.",
|
|
456
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: InstanceScalingDown\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-test\",\n \"DiskSize\": 900,\n \"BandWidth\": 40,\n \"Partition\": 1000,\n \"UpgradeStrategy\": 1\n}",
|
|
457
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"DealNames\": [\n \"20230703002035272950891\"\n ]\n },\n \"RequestId\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n }\n}",
|
|
458
|
+
"title": "Instance Downsizing"
|
|
459
|
+
}
|
|
460
|
+
],
|
|
437
461
|
"ModifyAclRule": [
|
|
438
462
|
{
|
|
439
463
|
"document": "This example shows you how to modify ACL rules.",
|
|
@@ -482,6 +506,14 @@
|
|
|
482
506
|
"title": "Changing Password"
|
|
483
507
|
}
|
|
484
508
|
],
|
|
509
|
+
"ModifyRoutineMaintenanceTask": [
|
|
510
|
+
{
|
|
511
|
+
"document": " ",
|
|
512
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifyRoutineMaintenanceTask\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-9jnejnb9\",\n \"MaintenanceType\": \"RE_BALANCE\",\n \"MaintenanceSubtype\": \"INSTANCE_PARTITION_RE_BALANCE\",\n \"PlannedTime\": 79200,\n \"Status\": 1,\n \"Week\": \"1,2,3,4,5,6,7\"\n}",
|
|
513
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ReturnCode\": \"0\",\n \"ReturnMessage\": \"success\",\n \"Data\": {\n \"FlowId\": 0,\n \"RouteDTO\": {\n \"RouteId\": 0\n }\n }\n },\n \"RequestId\": \"fcfb7c89-3973-44f1-9a3e-a2811c67434e\"\n }\n}",
|
|
514
|
+
"title": "Setting Instance Attributes"
|
|
515
|
+
}
|
|
516
|
+
],
|
|
485
517
|
"ModifyTopicAttributes": [
|
|
486
518
|
{
|
|
487
519
|
"document": " ",
|
|
@@ -497,6 +529,14 @@
|
|
|
497
529
|
"output": "{\n \"Response\": {\n \"RequestId\": \"20e995ed-75b9-43bb-84c0-35676567e1a8\",\n \"MessageId\": [\n \"646174616875622d6d657568396e686e3a6465736372696265436c6f75644170693a343a3236313838\",\n \"875622d6d657568396e686e3a6465736372696265436c6f75644170693a343a3236323337\"\n ]\n }\n}",
|
|
498
530
|
"title": "Sending Messages Via DataHub HTTP"
|
|
499
531
|
}
|
|
532
|
+
],
|
|
533
|
+
"UpgradeBrokerVersion": [
|
|
534
|
+
{
|
|
535
|
+
"document": "This example shows you how to upgrade the broker version.",
|
|
536
|
+
"input": "POST / HTTP/1.1\nHost: ckafka.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: UpgradeBrokerVersion\n<Common request parameters>\n\n{\n \"InstanceId\": \"ckafka-test\",\n \"Type\": 1,\n \"SourceVersion\": \"v2.8.1_r1.1.7\",\n \"TargetVersion\": \"v2.8.1_r1.1.8\",\n \"DelayTimeStamp\": \"\"\n}",
|
|
537
|
+
"output": "{\n \"Response\": {\n \"Result\": {\n \"ReturnCode\": \"0\",\n \"ReturnMessage\": \"success\",\n \"Data\": {\n \"FlowId\": 0,\n \"RouteDTO\": {\n \"RouteId\": 0\n }\n }\n },\n \"RequestId\": \"2412412412asfdsafasdsfd\"\n }\n}",
|
|
538
|
+
"title": "Upgrading the broker Version"
|
|
539
|
+
}
|
|
500
540
|
]
|
|
501
541
|
},
|
|
502
542
|
"version": "1.0"
|