tccli 3.0.1188.1__py2.py3-none-any.whl → 3.0.1190.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.
Files changed (61) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/__init__.py +2 -1
  3. tccli/services/aiart/aiart_client.py +53 -0
  4. tccli/services/aiart/v20221229/api.json +107 -0
  5. tccli/services/aiart/v20221229/examples.json +8 -0
  6. tccli/services/apm/v20210622/api.json +3 -1
  7. tccli/services/billing/v20180709/api.json +3 -0
  8. tccli/services/billing/v20180709/examples.json +1 -1
  9. tccli/services/cfg/v20210820/api.json +20 -5
  10. tccli/services/cfw/v20190904/api.json +82 -2
  11. tccli/services/ckafka/v20190819/api.json +5 -5
  12. tccli/services/dcdb/dcdb_client.py +106 -0
  13. tccli/services/dcdb/v20180411/api.json +318 -0
  14. tccli/services/dcdb/v20180411/examples.json +28 -0
  15. tccli/services/dnspod/dnspod_client.py +53 -0
  16. tccli/services/dnspod/v20210323/api.json +118 -0
  17. tccli/services/dnspod/v20210323/examples.json +8 -0
  18. tccli/services/emr/emr_client.py +269 -4
  19. tccli/services/emr/v20190103/api.json +591 -0
  20. tccli/services/emr/v20190103/examples.json +46 -0
  21. tccli/services/es/es_client.py +53 -0
  22. tccli/services/es/v20180416/api.json +54 -0
  23. tccli/services/es/v20180416/examples.json +14 -0
  24. tccli/services/ess/v20201111/api.json +9 -9
  25. tccli/services/ess/v20201111/examples.json +7 -1
  26. tccli/services/essbasic/essbasic_client.py +53 -0
  27. tccli/services/essbasic/v20210526/api.json +120 -0
  28. tccli/services/essbasic/v20210526/examples.json +14 -0
  29. tccli/services/iotexplorer/v20190423/api.json +2 -2
  30. tccli/services/iss/iss_client.py +118 -65
  31. tccli/services/iss/v20230517/api.json +78 -0
  32. tccli/services/iss/v20230517/examples.json +8 -0
  33. tccli/services/mariadb/mariadb_client.py +110 -4
  34. tccli/services/mariadb/v20170312/api.json +318 -0
  35. tccli/services/mariadb/v20170312/examples.json +16 -0
  36. tccli/services/mps/v20190612/api.json +131 -3
  37. tccli/services/ocr/v20181119/api.json +22 -2
  38. tccli/services/redis/redis_client.py +110 -4
  39. tccli/services/redis/v20180412/api.json +209 -0
  40. tccli/services/redis/v20180412/examples.json +16 -0
  41. tccli/services/sms/v20210111/api.json +9 -9
  42. tccli/services/ssl/v20191205/api.json +3 -3
  43. tccli/services/ssl/v20191205/examples.json +2 -2
  44. tccli/services/teo/v20220901/api.json +14 -14
  45. tccli/services/tke/tke_client.py +364 -46
  46. tccli/services/tke/v20180525/api.json +9 -0
  47. tccli/services/tke/v20220501/api.json +525 -0
  48. tccli/services/tke/v20220501/examples.json +54 -0
  49. tccli/services/tsf/v20180326/api.json +74 -29
  50. tccli/services/vdb/v20230616/api.json +491 -0
  51. tccli/services/vdb/v20230616/examples.json +46 -0
  52. tccli/services/vdb/vdb_client.py +265 -0
  53. tccli/services/vod/v20240718/api.json +121 -0
  54. tccli/services/vod/v20240718/examples.json +31 -0
  55. tccli/services/vod/vod_client.py +58 -0
  56. tccli/services/vpc/v20170312/api.json +13 -4
  57. {tccli-3.0.1188.1.dist-info → tccli-3.0.1190.1.dist-info}/METADATA +2 -2
  58. {tccli-3.0.1188.1.dist-info → tccli-3.0.1190.1.dist-info}/RECORD +61 -59
  59. {tccli-3.0.1188.1.dist-info → tccli-3.0.1190.1.dist-info}/WHEEL +0 -0
  60. {tccli-3.0.1188.1.dist-info → tccli-3.0.1190.1.dist-info}/entry_points.txt +0 -0
  61. {tccli-3.0.1188.1.dist-info → tccli-3.0.1190.1.dist-info}/license_files/LICENSE +0 -0
@@ -2537,100 +2537,130 @@
2537
2537
  {
2538
2538
  "disabled": false,
2539
2539
  "document": "rule Id\n注意:此字段可能返回 null,表示取不到有效值。",
2540
- "example": "",
2540
+ "example": "",
2541
2541
  "member": "string",
2542
2542
  "name": "RuleId",
2543
- "required": true,
2543
+ "output_required": true,
2544
2544
  "type": "string",
2545
2545
  "value_allowed_null": true
2546
2546
  },
2547
2547
  {
2548
2548
  "disabled": false,
2549
2549
  "document": "API ID\n注意:此字段可能返回 null,表示取不到有效值。",
2550
- "example": "",
2550
+ "example": "",
2551
2551
  "member": "string",
2552
2552
  "name": "ApiId",
2553
- "required": true,
2553
+ "output_required": true,
2554
2554
  "type": "string",
2555
2555
  "value_allowed_null": true
2556
2556
  },
2557
2557
  {
2558
2558
  "disabled": false,
2559
2559
  "document": "限流名称\n注意:此字段可能返回 null,表示取不到有效值。",
2560
- "example": "",
2560
+ "example": "",
2561
2561
  "member": "string",
2562
2562
  "name": "RuleName",
2563
- "required": true,
2563
+ "output_required": true,
2564
2564
  "type": "string",
2565
2565
  "value_allowed_null": true
2566
2566
  },
2567
2567
  {
2568
2568
  "disabled": false,
2569
2569
  "document": "最大限流qps\n注意:此字段可能返回 null,表示取不到有效值。",
2570
- "example": "",
2570
+ "example": "",
2571
2571
  "member": "uint64",
2572
2572
  "name": "MaxQps",
2573
- "required": true,
2573
+ "output_required": true,
2574
2574
  "type": "int",
2575
2575
  "value_allowed_null": true
2576
2576
  },
2577
2577
  {
2578
2578
  "disabled": false,
2579
2579
  "document": "生效/禁用, enabled/disabled\n注意:此字段可能返回 null,表示取不到有效值。",
2580
- "example": "",
2580
+ "example": "",
2581
2581
  "member": "string",
2582
2582
  "name": "UsableStatus",
2583
- "required": true,
2583
+ "output_required": true,
2584
2584
  "type": "string",
2585
2585
  "value_allowed_null": true
2586
2586
  },
2587
2587
  {
2588
2588
  "disabled": false,
2589
2589
  "document": "规则内容\n注意:此字段可能返回 null,表示取不到有效值。",
2590
- "example": "",
2590
+ "example": "",
2591
2591
  "member": "string",
2592
2592
  "name": "RuleContent",
2593
- "required": true,
2593
+ "output_required": true,
2594
2594
  "type": "string",
2595
2595
  "value_allowed_null": true
2596
2596
  },
2597
2597
  {
2598
2598
  "disabled": false,
2599
2599
  "document": "Tsf Rule ID\n注意:此字段可能返回 null,表示取不到有效值。",
2600
- "example": "",
2600
+ "example": "",
2601
2601
  "member": "string",
2602
2602
  "name": "TsfRuleId",
2603
- "required": true,
2603
+ "output_required": true,
2604
2604
  "type": "string",
2605
2605
  "value_allowed_null": true
2606
2606
  },
2607
2607
  {
2608
2608
  "disabled": false,
2609
2609
  "document": "描述\n注意:此字段可能返回 null,表示取不到有效值。",
2610
- "example": "",
2610
+ "example": "",
2611
2611
  "member": "string",
2612
2612
  "name": "Description",
2613
- "required": true,
2613
+ "output_required": true,
2614
2614
  "type": "string",
2615
2615
  "value_allowed_null": true
2616
2616
  },
2617
2617
  {
2618
2618
  "disabled": false,
2619
2619
  "document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
2620
- "example": "",
2620
+ "example": "",
2621
2621
  "member": "string",
2622
2622
  "name": "CreatedTime",
2623
- "required": true,
2623
+ "output_required": true,
2624
2624
  "type": "string",
2625
2625
  "value_allowed_null": true
2626
2626
  },
2627
2627
  {
2628
2628
  "disabled": false,
2629
2629
  "document": "更新时间\n注意:此字段可能返回 null,表示取不到有效值。",
2630
- "example": "",
2630
+ "example": "",
2631
2631
  "member": "string",
2632
2632
  "name": "UpdatedTime",
2633
- "required": true,
2633
+ "output_required": true,
2634
+ "type": "string",
2635
+ "value_allowed_null": true
2636
+ },
2637
+ {
2638
+ "disabled": false,
2639
+ "document": "分页参数limit\n注意:此字段可能返回 null,表示取不到有效值。",
2640
+ "example": "无",
2641
+ "member": "int64",
2642
+ "name": "Limit",
2643
+ "output_required": false,
2644
+ "type": "int",
2645
+ "value_allowed_null": true
2646
+ },
2647
+ {
2648
+ "disabled": false,
2649
+ "document": "分页参数offset\n注意:此字段可能返回 null,表示取不到有效值。",
2650
+ "example": "无",
2651
+ "member": "int64",
2652
+ "name": "Offset",
2653
+ "output_required": false,
2654
+ "type": "int",
2655
+ "value_allowed_null": true
2656
+ },
2657
+ {
2658
+ "disabled": false,
2659
+ "document": "AppId\n注意:此字段可能返回 null,表示取不到有效值。",
2660
+ "example": "无",
2661
+ "member": "string",
2662
+ "name": "AppId",
2663
+ "output_required": false,
2634
2664
  "type": "string",
2635
2665
  "value_allowed_null": true
2636
2666
  }
@@ -6403,7 +6433,7 @@
6403
6433
  {
6404
6434
  "disabled": false,
6405
6435
  "document": "API分组ID",
6406
- "example": "",
6436
+ "example": "",
6407
6437
  "member": "string",
6408
6438
  "name": "GroupId",
6409
6439
  "required": true,
@@ -6412,11 +6442,20 @@
6412
6442
  {
6413
6443
  "disabled": false,
6414
6444
  "document": "微服务ID",
6415
- "example": "",
6445
+ "example": "",
6416
6446
  "member": "string",
6417
6447
  "name": "MicroserviceId",
6418
6448
  "required": true,
6419
6449
  "type": "string"
6450
+ },
6451
+ {
6452
+ "disabled": false,
6453
+ "document": "命名空间ID",
6454
+ "example": "无",
6455
+ "member": "string",
6456
+ "name": "NamespaceId",
6457
+ "required": false,
6458
+ "type": "string"
6420
6459
  }
6421
6460
  ],
6422
6461
  "type": "object"
@@ -6427,9 +6466,10 @@
6427
6466
  {
6428
6467
  "disabled": false,
6429
6468
  "document": "是否成功",
6430
- "example": "",
6469
+ "example": "",
6431
6470
  "member": "bool",
6432
6471
  "name": "Result",
6472
+ "output_required": true,
6433
6473
  "type": "bool",
6434
6474
  "value_allowed_null": false
6435
6475
  },
@@ -18482,7 +18522,8 @@
18482
18522
  "example": "api-sadasf",
18483
18523
  "member": "string",
18484
18524
  "name": "ApiId",
18485
- "required": true,
18525
+ "output_required": true,
18526
+ "required": false,
18486
18527
  "type": "string",
18487
18528
  "value_allowed_null": false
18488
18529
  },
@@ -18492,7 +18533,8 @@
18492
18533
  "example": "/test/echo/xxx",
18493
18534
  "member": "string",
18494
18535
  "name": "Path",
18495
- "required": true,
18536
+ "output_required": true,
18537
+ "required": false,
18496
18538
  "type": "string",
18497
18539
  "value_allowed_null": false
18498
18540
  },
@@ -18502,7 +18544,8 @@
18502
18544
  "example": "ms1",
18503
18545
  "member": "string",
18504
18546
  "name": "MicroserviceName",
18505
- "required": true,
18547
+ "output_required": true,
18548
+ "required": false,
18506
18549
  "type": "string",
18507
18550
  "value_allowed_null": false
18508
18551
  },
@@ -18512,7 +18555,8 @@
18512
18555
  "example": "GET",
18513
18556
  "member": "string",
18514
18557
  "name": "Method",
18515
- "required": true,
18558
+ "output_required": true,
18559
+ "required": false,
18516
18560
  "type": "string",
18517
18561
  "value_allowed_null": true
18518
18562
  },
@@ -18522,12 +18566,13 @@
18522
18566
  "example": "ns-test",
18523
18567
  "member": "string",
18524
18568
  "name": "NamespaceName",
18525
- "required": true,
18569
+ "output_required": true,
18570
+ "required": false,
18526
18571
  "type": "string",
18527
18572
  "value_allowed_null": true
18528
18573
  }
18529
18574
  ],
18530
- "usage": "out"
18575
+ "usage": "both"
18531
18576
  },
18532
18577
  "GatewayGroupIds": {
18533
18578
  "document": "网关部署组ID和网关API分组ID元组",