tccli 3.0.1389.1__py2.py3-none-any.whl → 3.0.1390.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 (58) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/__init__.py +3 -0
  3. tccli/services/ai3d/ai3d_client.py +106 -0
  4. tccli/services/ai3d/v20250513/api.json +172 -0
  5. tccli/services/ai3d/v20250513/examples.json +16 -0
  6. tccli/services/batch/v20170312/api.json +3 -3
  7. tccli/services/batch/v20170312/examples.json +3 -3
  8. tccli/services/cam/v20190116/api.json +11 -1
  9. tccli/services/ccc/v20200210/api.json +10 -10
  10. tccli/services/cdb/v20170320/api.json +40 -2
  11. tccli/services/cdz/v20221123/api.json +1 -1
  12. tccli/services/ckafka/v20190819/api.json +29 -21
  13. tccli/services/ckafka/v20190819/examples.json +1 -1
  14. tccli/services/cloudapp/cloudapp_client.py +53 -0
  15. tccli/services/cloudapp/v20220530/api.json +68 -0
  16. tccli/services/cloudapp/v20220530/examples.json +14 -0
  17. tccli/services/cls/cls_client.py +167 -8
  18. tccli/services/cls/v20201016/api.json +292 -2
  19. tccli/services/cls/v20201016/examples.json +24 -0
  20. tccli/services/dts/v20211206/api.json +15 -15
  21. tccli/services/dts/v20211206/examples.json +1 -1
  22. tccli/services/es/v20250101/api.json +99 -5
  23. tccli/services/ess/v20201111/api.json +145 -4
  24. tccli/services/ess/v20201111/examples.json +1 -1
  25. tccli/services/gme/v20180711/api.json +7 -7
  26. tccli/services/igtm/v20231024/api.json +3 -3
  27. tccli/services/iotexplorer/v20190423/api.json +19 -1
  28. tccli/services/iotexplorer/v20190423/examples.json +1 -1
  29. tccli/services/lighthouse/lighthouse_client.py +53 -0
  30. tccli/services/lighthouse/v20200324/api.json +228 -35
  31. tccli/services/lighthouse/v20200324/examples.json +8 -0
  32. tccli/services/live/v20180801/api.json +2 -2
  33. tccli/services/lowcode/lowcode_client.py +163 -4
  34. tccli/services/lowcode/v20210108/api.json +1373 -96
  35. tccli/services/lowcode/v20210108/examples.json +24 -0
  36. tccli/services/mps/v20190612/api.json +804 -47
  37. tccli/services/ocr/v20181119/api.json +3 -3
  38. tccli/services/sqlserver/v20180328/api.json +4 -4
  39. tccli/services/tcbr/v20220217/api.json +51 -0
  40. tccli/services/tdai/__init__.py +4 -0
  41. tccli/services/tdai/tdai_client.py +1108 -0
  42. tccli/services/tdai/v20250717/api.json +1930 -0
  43. tccli/services/tdai/v20250717/examples.json +149 -0
  44. tccli/services/teo/teo_client.py +53 -0
  45. tccli/services/teo/v20220901/api.json +111 -3
  46. tccli/services/teo/v20220901/examples.json +8 -0
  47. tccli/services/tmt/v20180321/api.json +3 -3
  48. tccli/services/tts/v20190823/api.json +11 -11
  49. tccli/services/vpc/v20170312/api.json +37 -7
  50. tccli/services/vpc/v20170312/examples.json +7 -7
  51. tccli/services/vtc/v20240223/api.json +3 -1
  52. tccli/services/vtc/v20240223/examples.json +1 -1
  53. tccli/services/waf/v20180125/api.json +6 -6
  54. {tccli-3.0.1389.1.dist-info → tccli-3.0.1390.1.dist-info}/METADATA +2 -2
  55. {tccli-3.0.1389.1.dist-info → tccli-3.0.1390.1.dist-info}/RECORD +58 -54
  56. {tccli-3.0.1389.1.dist-info → tccli-3.0.1390.1.dist-info}/WHEEL +0 -0
  57. {tccli-3.0.1389.1.dist-info → tccli-3.0.1390.1.dist-info}/entry_points.txt +0 -0
  58. {tccli-3.0.1389.1.dist-info → tccli-3.0.1390.1.dist-info}/license_files/LICENSE +0 -0
@@ -3241,6 +3241,58 @@ def doDescribeBundles(args, parsed_globals):
3241
3241
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3242
3242
 
3243
3243
 
3244
+ def doDescribeMcpServerTemplates(args, parsed_globals):
3245
+ g_param = parse_global_arg(parsed_globals)
3246
+
3247
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3248
+ cred = credential.CVMRoleCredential()
3249
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3250
+ cred = credential.STSAssumeRoleCredential(
3251
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3252
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3253
+ )
3254
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
3255
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3256
+ else:
3257
+ cred = credential.Credential(
3258
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3259
+ )
3260
+ http_profile = HttpProfile(
3261
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3262
+ reqMethod="POST",
3263
+ endpoint=g_param[OptionsDefine.Endpoint],
3264
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3265
+ )
3266
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3267
+ if g_param[OptionsDefine.Language]:
3268
+ profile.language = g_param[OptionsDefine.Language]
3269
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3270
+ client = mod.LighthouseClient(cred, g_param[OptionsDefine.Region], profile)
3271
+ client._sdkVersion += ("_CLI_" + __version__)
3272
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3273
+ model = models.DescribeMcpServerTemplatesRequest()
3274
+ model.from_json_string(json.dumps(args))
3275
+ start_time = time.time()
3276
+ while True:
3277
+ rsp = client.DescribeMcpServerTemplates(model)
3278
+ result = rsp.to_json_string()
3279
+ try:
3280
+ json_obj = json.loads(result)
3281
+ except TypeError as e:
3282
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3283
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3284
+ break
3285
+ cur_time = time.time()
3286
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3287
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3288
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3289
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3290
+ else:
3291
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3292
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3293
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3294
+
3295
+
3244
3296
  def doShareBlueprintAcrossAccounts(args, parsed_globals):
3245
3297
  g_param = parse_global_arg(parsed_globals)
3246
3298
 
@@ -6174,6 +6226,7 @@ ACTION_MAP = {
6174
6226
  "DescribeModifyInstanceBundles": doDescribeModifyInstanceBundles,
6175
6227
  "CreateKeyPair": doCreateKeyPair,
6176
6228
  "DescribeBundles": doDescribeBundles,
6229
+ "DescribeMcpServerTemplates": doDescribeMcpServerTemplates,
6177
6230
  "ShareBlueprintAcrossAccounts": doShareBlueprintAcrossAccounts,
6178
6231
  "DescribeInstancesTrafficPackages": doDescribeInstancesTrafficPackages,
6179
6232
  "DescribeDiskBackups": doDescribeDiskBackups,
@@ -399,6 +399,13 @@
399
399
  "output": "DescribeKeyPairsResponse",
400
400
  "status": "online"
401
401
  },
402
+ "DescribeMcpServerTemplates": {
403
+ "document": "本接口(DescribeMcpServerTemplates)用于查询MCP Server模板列表。",
404
+ "input": "DescribeMcpServerTemplatesRequest",
405
+ "name": "查询MCP Server模板列表",
406
+ "output": "DescribeMcpServerTemplatesResponse",
407
+ "status": "online"
408
+ },
402
409
  "DescribeMcpServers": {
403
410
  "document": "本接口(DescribeMcpServers)用于查询MCP Server列表。",
404
411
  "input": "DescribeMcpServersRequest",
@@ -554,7 +561,7 @@
554
561
  "status": "online"
555
562
  },
556
563
  "ModifyDisksBackupQuota": {
557
- "document": "本接口(ModifyDisksBackupQuota)用于调整云硬盘备份点配额。\n该操作目前仅支持云硬盘类型为数据盘且状态是ATTACHED(已挂载)或 UNATTACHED(待挂载)的云硬盘。\n支持批量操作。每次批量请求云硬盘数量上限为15个。",
564
+ "document": "本接口(ModifyDisksBackupQuota)用于调整云硬盘备份点配额。\n该操作目前仅支持状态是ATTACHED(已挂载)或 UNATTACHED(待挂载)的云硬盘。\n支持批量操作。每次批量请求云硬盘数量上限为15个。",
558
565
  "input": "ModifyDisksBackupQuotaRequest",
559
566
  "name": "调整云硬盘备份点配额",
560
567
  "output": "ModifyDisksBackupQuotaResponse",
@@ -4688,6 +4695,71 @@
4688
4695
  ],
4689
4696
  "type": "object"
4690
4697
  },
4698
+ "DescribeMcpServerTemplatesRequest": {
4699
+ "document": "DescribeMcpServerTemplates请求参数结构体",
4700
+ "members": [
4701
+ {
4702
+ "disabled": false,
4703
+ "document": "过滤器列表。\n<li>name-description</li>按照MCP Server模板名称或描述进行过滤(支持模糊匹配)。\n类型:String\n必选:否\n每次请求的 Filters 的上限为 10,Filter.Values 的上限为 5。",
4704
+ "example": "无",
4705
+ "member": "Filter",
4706
+ "name": "Filters",
4707
+ "required": false,
4708
+ "type": "list"
4709
+ },
4710
+ {
4711
+ "disabled": false,
4712
+ "document": "返回数量,默认为 20,最大值为 100。关于`Limit`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/product/1207/47578)中的相关小节。",
4713
+ "example": "10",
4714
+ "member": "int64",
4715
+ "name": "Limit",
4716
+ "required": false,
4717
+ "type": "int"
4718
+ },
4719
+ {
4720
+ "disabled": false,
4721
+ "document": "偏移量,默认为 0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/product/1207/47578)中的相关小节。",
4722
+ "example": "0",
4723
+ "member": "int64",
4724
+ "name": "Offset",
4725
+ "required": false,
4726
+ "type": "int"
4727
+ }
4728
+ ],
4729
+ "type": "object"
4730
+ },
4731
+ "DescribeMcpServerTemplatesResponse": {
4732
+ "document": "DescribeMcpServerTemplates返回参数结构体",
4733
+ "members": [
4734
+ {
4735
+ "disabled": false,
4736
+ "document": "MCP Server模板列表。",
4737
+ "example": "无",
4738
+ "member": "McpServerTemplate",
4739
+ "name": "McpServerTemplateSet",
4740
+ "output_required": true,
4741
+ "type": "list",
4742
+ "value_allowed_null": false
4743
+ },
4744
+ {
4745
+ "disabled": false,
4746
+ "document": "符合条件的MCP Server模板数量。",
4747
+ "example": "10",
4748
+ "member": "int64",
4749
+ "name": "TotalCount",
4750
+ "output_required": true,
4751
+ "type": "int",
4752
+ "value_allowed_null": false
4753
+ },
4754
+ {
4755
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
4756
+ "member": "string",
4757
+ "name": "RequestId",
4758
+ "type": "string"
4759
+ }
4760
+ ],
4761
+ "type": "object"
4762
+ },
4691
4763
  "DescribeMcpServersRequest": {
4692
4764
  "document": "DescribeMcpServers请求参数结构体",
4693
4765
  "members": [
@@ -5258,51 +5330,51 @@
5258
5330
  "members": [
5259
5331
  {
5260
5332
  "disabled": false,
5261
- "document": "描述计费项目名称,目前取值\n<li>\"DiskSpace\"代表云硬盘空间收费项。</li>\n<li>\"DiskBackupQuota\"代表云硬盘备份点配额收费项。</li>",
5333
+ "document": "描述计费项目名称,目前取值\n<li>\"DiskSpace\"代表云硬盘空间收费项。</li>\n<li>\"DiskBackupQuota\"代表数据盘备份点配额收费项。</li>\n<li>\"Instance\"代表实例收费项。</li>\n<li>\"SystemDiskBackupQuota\"代表系统盘备份点配额收费项。</li>",
5262
5334
  "example": "DiskSpace",
5263
5335
  "member": "string",
5264
5336
  "name": "PriceName",
5265
- "required": true,
5337
+ "output_required": true,
5266
5338
  "type": "string",
5267
5339
  "value_allowed_null": false
5268
5340
  },
5269
5341
  {
5270
5342
  "disabled": false,
5271
- "document": "云硬盘计费项维度单价。",
5343
+ "document": "计费项维度单价。",
5272
5344
  "example": "1.1",
5273
5345
  "member": "float",
5274
5346
  "name": "OriginUnitPrice",
5275
- "required": true,
5347
+ "output_required": true,
5276
5348
  "type": "float",
5277
5349
  "value_allowed_null": false
5278
5350
  },
5279
5351
  {
5280
5352
  "disabled": false,
5281
- "document": "云硬盘计费项维度总价。",
5353
+ "document": "计费项维度总价。",
5282
5354
  "example": "2.2",
5283
5355
  "member": "float",
5284
5356
  "name": "OriginalPrice",
5285
- "required": true,
5357
+ "output_required": true,
5286
5358
  "type": "float",
5287
5359
  "value_allowed_null": false
5288
5360
  },
5289
5361
  {
5290
5362
  "disabled": false,
5291
- "document": "云硬盘在计费项维度折扣。",
5363
+ "document": "计费项维度折扣。",
5292
5364
  "example": "0.8",
5293
5365
  "member": "float",
5294
5366
  "name": "Discount",
5295
- "required": true,
5367
+ "output_required": true,
5296
5368
  "type": "float",
5297
5369
  "value_allowed_null": false
5298
5370
  },
5299
5371
  {
5300
5372
  "disabled": false,
5301
- "document": "云硬盘在计费项维度折后总价。",
5373
+ "document": "计费项维度折后总价。",
5302
5374
  "example": "2.1",
5303
5375
  "member": "float",
5304
5376
  "name": "DiscountPrice",
5305
- "required": true,
5377
+ "output_required": true,
5306
5378
  "type": "float",
5307
5379
  "value_allowed_null": false
5308
5380
  }
@@ -5412,11 +5484,11 @@
5412
5484
  "usage": "out"
5413
5485
  },
5414
5486
  "Disk": {
5415
- "document": "磁盘信息",
5487
+ "document": "云硬盘信息。",
5416
5488
  "members": [
5417
5489
  {
5418
5490
  "disabled": false,
5419
- "document": "磁盘ID",
5491
+ "document": "云硬盘ID",
5420
5492
  "example": "lhdisk-p1zflrif",
5421
5493
  "member": "string",
5422
5494
  "name": "DiskId",
@@ -5426,7 +5498,7 @@
5426
5498
  },
5427
5499
  {
5428
5500
  "disabled": false,
5429
- "document": "实例ID",
5501
+ "document": "实例ID",
5430
5502
  "example": "lhins-anxwfvxh",
5431
5503
  "member": "string",
5432
5504
  "name": "InstanceId",
@@ -5436,7 +5508,7 @@
5436
5508
  },
5437
5509
  {
5438
5510
  "disabled": false,
5439
- "document": "可用区",
5511
+ "document": "可用区。",
5440
5512
  "example": "ap-guangzhou-1",
5441
5513
  "member": "string",
5442
5514
  "name": "Zone",
@@ -5446,7 +5518,7 @@
5446
5518
  },
5447
5519
  {
5448
5520
  "disabled": false,
5449
- "document": "磁盘名称",
5521
+ "document": "云硬盘名称。",
5450
5522
  "example": "disk-name",
5451
5523
  "member": "string",
5452
5524
  "name": "DiskName",
@@ -5456,7 +5528,7 @@
5456
5528
  },
5457
5529
  {
5458
5530
  "disabled": false,
5459
- "document": "磁盘类型\n枚举值:\n<li> SYSTEM_DISK: 系统盘 </li>\n<li> DATA_DISK: 数据盘 </li>\n",
5531
+ "document": "云硬盘类型。\n枚举值:\n<li> SYSTEM_DISK: 系统盘 </li>\n<li> DATA_DISK: 数据盘 </li>\n",
5460
5532
  "example": "DATA_DISK",
5461
5533
  "member": "string",
5462
5534
  "name": "DiskUsage",
@@ -5466,7 +5538,7 @@
5466
5538
  },
5467
5539
  {
5468
5540
  "disabled": false,
5469
- "document": "磁盘介质类型\n枚举值:\n<li> CLOUD_BASIC: 普通云硬盘 </li>\n<li> CLOUD_PREMIUM: 高性能云硬盘 </li>\n<li> CLOUD_SSD: SSD云硬盘 </li>",
5541
+ "document": "云硬盘介质类型。\n枚举值:\n<li> CLOUD_BASIC: 普通云硬盘 </li>\n<li> CLOUD_PREMIUM: 高性能云硬盘 </li>\n<li> CLOUD_SSD: SSD云硬盘 </li>",
5470
5542
  "example": "CLOUD_SSD",
5471
5543
  "member": "string",
5472
5544
  "name": "DiskType",
@@ -5476,7 +5548,7 @@
5476
5548
  },
5477
5549
  {
5478
5550
  "disabled": false,
5479
- "document": "磁盘付费类型\n<li> PREPAID: 预付费 </li>\n<li> POSTPAID_BY_HOUR: 按小时后付费 </li>",
5551
+ "document": "云硬盘付费类型。\n<li> PREPAID: 预付费 </li>\n<li> POSTPAID_BY_HOUR: 按小时后付费 </li>",
5480
5552
  "example": "PREPAID",
5481
5553
  "member": "string",
5482
5554
  "name": "DiskChargeType",
@@ -5486,7 +5558,7 @@
5486
5558
  },
5487
5559
  {
5488
5560
  "disabled": false,
5489
- "document": "磁盘大小, 单位GB",
5561
+ "document": "云硬盘大小, 单位GB",
5490
5562
  "example": "20",
5491
5563
  "member": "int64",
5492
5564
  "name": "DiskSize",
@@ -5496,7 +5568,7 @@
5496
5568
  },
5497
5569
  {
5498
5570
  "disabled": false,
5499
- "document": "续费标识",
5571
+ "document": "续费标识。",
5500
5572
  "example": "NOTIFY_AND_MANUAL_RENEW",
5501
5573
  "member": "string",
5502
5574
  "name": "RenewFlag",
@@ -5506,7 +5578,7 @@
5506
5578
  },
5507
5579
  {
5508
5580
  "disabled": false,
5509
- "document": "磁盘状态,取值范围:\n<li>PENDING:创建中。 </li>\n<li>UNATTACHED:待挂载。</li>\n<li>ATTACHING:挂载中。</li>\n<li>ATTACHED:已挂载。</li>\n<li>DETACHING:卸载中。 </li>\n<li> SHUTDOWN:已隔离。</li>\n<li> CREATED_FAILED:创建失败。</li>\n<li>TERMINATING:销毁中。</li>\n<li> DELETING:删除中。</li>\n<li> FREEZING:冻结中。</li>",
5581
+ "document": "云硬盘状态,取值范围:\n<li>PENDING:创建中。 </li>\n<li>UNATTACHED:待挂载。</li>\n<li>ATTACHING:挂载中。</li>\n<li>ATTACHED:已挂载。</li>\n<li>DETACHING:卸载中。 </li>\n<li> SHUTDOWN:已隔离。</li>\n<li> CREATED_FAILED:创建失败。</li>\n<li>TERMINATING:销毁中。</li>\n<li> DELETING:删除中。</li>\n<li> FREEZING:冻结中。</li>",
5510
5582
  "example": "UNATTACHED",
5511
5583
  "member": "string",
5512
5584
  "name": "DiskState",
@@ -5516,8 +5588,8 @@
5516
5588
  },
5517
5589
  {
5518
5590
  "disabled": false,
5519
- "document": "磁盘挂载状态",
5520
- "example": "False",
5591
+ "document": "云硬盘挂载状态。",
5592
+ "example": "false",
5521
5593
  "member": "bool",
5522
5594
  "name": "Attached",
5523
5595
  "output_required": true,
@@ -5526,8 +5598,8 @@
5526
5598
  },
5527
5599
  {
5528
5600
  "disabled": false,
5529
- "document": "是否随实例释放",
5530
- "example": "False",
5601
+ "document": "是否随实例释放。",
5602
+ "example": "false",
5531
5603
  "member": "bool",
5532
5604
  "name": "DeleteWithInstance",
5533
5605
  "output_required": true,
@@ -5536,7 +5608,7 @@
5536
5608
  },
5537
5609
  {
5538
5610
  "disabled": false,
5539
- "document": "上一次操作",
5611
+ "document": "上一次操作。",
5540
5612
  "example": "CreateDisks",
5541
5613
  "member": "string",
5542
5614
  "name": "LatestOperation",
@@ -5546,7 +5618,7 @@
5546
5618
  },
5547
5619
  {
5548
5620
  "disabled": false,
5549
- "document": "上一次操作状态",
5621
+ "document": "上一次操作状态。",
5550
5622
  "example": "SUCCESS",
5551
5623
  "member": "string",
5552
5624
  "name": "LatestOperationState",
@@ -5556,7 +5628,7 @@
5556
5628
  },
5557
5629
  {
5558
5630
  "disabled": false,
5559
- "document": "上一次请求ID",
5631
+ "document": "上一次请求ID",
5560
5632
  "example": "b786faac-d27b-4f70-a52e-3ae725e0f639",
5561
5633
  "member": "string",
5562
5634
  "name": "LatestOperationRequestId",
@@ -7668,12 +7740,12 @@
7668
7740
  "usage": "both"
7669
7741
  },
7670
7742
  "InstancePrice": {
7671
- "document": "关于Lighthouse Instance实例的价格信息",
7743
+ "document": "关于Lighthouse Instance实例的价格信息。",
7672
7744
  "members": [
7673
7745
  {
7674
7746
  "disabled": false,
7675
7747
  "document": "套餐单价原价。",
7676
- "example": "90",
7748
+ "example": "90.0",
7677
7749
  "member": "float",
7678
7750
  "name": "OriginalBundlePrice",
7679
7751
  "output_required": true,
@@ -7683,7 +7755,7 @@
7683
7755
  {
7684
7756
  "disabled": false,
7685
7757
  "document": "原价。",
7686
- "example": "90",
7758
+ "example": "90.0",
7687
7759
  "member": "float",
7688
7760
  "name": "OriginalPrice",
7689
7761
  "output_required": true,
@@ -7693,7 +7765,7 @@
7693
7765
  {
7694
7766
  "disabled": false,
7695
7767
  "document": "折扣。",
7696
- "example": "100",
7768
+ "example": "100.0",
7697
7769
  "member": "float",
7698
7770
  "name": "Discount",
7699
7771
  "output_required": true,
@@ -7703,7 +7775,7 @@
7703
7775
  {
7704
7776
  "disabled": false,
7705
7777
  "document": "折后价。",
7706
- "example": "90",
7778
+ "example": "90.0",
7707
7779
  "member": "float",
7708
7780
  "name": "DiscountPrice",
7709
7781
  "output_required": true,
@@ -7719,6 +7791,16 @@
7719
7791
  "output_required": true,
7720
7792
  "type": "string",
7721
7793
  "value_allowed_null": false
7794
+ },
7795
+ {
7796
+ "disabled": false,
7797
+ "document": "计费项目明细。",
7798
+ "example": "无",
7799
+ "member": "DetailPrice",
7800
+ "name": "DetailPrices",
7801
+ "output_required": false,
7802
+ "type": "list",
7803
+ "value_allowed_null": false
7722
7804
  }
7723
7805
  ],
7724
7806
  "usage": "out"
@@ -8257,6 +8339,117 @@
8257
8339
  ],
8258
8340
  "usage": "both"
8259
8341
  },
8342
+ "McpServerTemplate": {
8343
+ "document": "MCP Server模板",
8344
+ "members": [
8345
+ {
8346
+ "disabled": false,
8347
+ "document": "MCP Server名称",
8348
+ "example": "AMap",
8349
+ "member": "string",
8350
+ "name": "Name",
8351
+ "output_required": true,
8352
+ "required": false,
8353
+ "type": "string",
8354
+ "value_allowed_null": false
8355
+ },
8356
+ {
8357
+ "disabled": false,
8358
+ "document": "Base64编码之后的MCP Server启动命令。",
8359
+ "example": "bnB4IC15IEBtb2RlbGNvbnRleHRwcm90b2NvbC9tYXA=",
8360
+ "member": "string",
8361
+ "name": "Command",
8362
+ "output_required": true,
8363
+ "required": false,
8364
+ "type": "string",
8365
+ "value_allowed_null": false
8366
+ },
8367
+ {
8368
+ "disabled": false,
8369
+ "document": "描述",
8370
+ "example": "高德地图官网MCP Server",
8371
+ "member": "string",
8372
+ "name": "Description",
8373
+ "output_required": true,
8374
+ "required": false,
8375
+ "type": "string",
8376
+ "value_allowed_null": false
8377
+ },
8378
+ {
8379
+ "disabled": false,
8380
+ "document": "MCP Server图标地址",
8381
+ "example": "https://lbs.amap.com/favicon.ico",
8382
+ "member": "string",
8383
+ "name": "IconUrl",
8384
+ "output_required": true,
8385
+ "required": false,
8386
+ "type": "string",
8387
+ "value_allowed_null": false
8388
+ },
8389
+ {
8390
+ "disabled": false,
8391
+ "document": "MCP Server社区地址",
8392
+ "example": "https://lbs.amap.com/api/mcp-server/summary",
8393
+ "member": "string",
8394
+ "name": "CommunityUrl",
8395
+ "output_required": false,
8396
+ "required": false,
8397
+ "type": "string",
8398
+ "value_allowed_null": false
8399
+ },
8400
+ {
8401
+ "disabled": false,
8402
+ "document": "MCP Server关联的开发平台地址或开放平台地址",
8403
+ "example": "https://console.amap.com/dev/index",
8404
+ "member": "string",
8405
+ "name": "PlatformUrl",
8406
+ "output_required": false,
8407
+ "required": false,
8408
+ "type": "string",
8409
+ "value_allowed_null": false
8410
+ },
8411
+ {
8412
+ "disabled": false,
8413
+ "document": "MCP Server环境变量",
8414
+ "example": "无",
8415
+ "member": "McpServerTemplateEnv",
8416
+ "name": "EnvSet",
8417
+ "output_required": true,
8418
+ "required": false,
8419
+ "type": "list",
8420
+ "value_allowed_null": false
8421
+ }
8422
+ ],
8423
+ "usage": "both"
8424
+ },
8425
+ "McpServerTemplateEnv": {
8426
+ "document": "MCP Server模板环境变量",
8427
+ "members": [
8428
+ {
8429
+ "disabled": false,
8430
+ "document": "MCP Server模板的环境变量键",
8431
+ "example": "MAP_API_KEY",
8432
+ "member": "string",
8433
+ "name": "Key",
8434
+ "output_required": true,
8435
+ "required": false,
8436
+ "type": "string",
8437
+ "value_allowed_null": false
8438
+ },
8439
+ {
8440
+ "disabled": false,
8441
+ "document": "MCP Server模板的环境变量值",
8442
+ "example": "api_key_xxx_xxx",
8443
+ "member": "string",
8444
+ "name": "Value",
8445
+ "output_required": false,
8446
+ "required": false,
8447
+ "type": "string",
8448
+ "value_allowed_null": false
8449
+ }
8450
+ ],
8451
+ "usage": "both"
8452
+ },
8260
8453
  "ModifyBlueprintAttributeRequest": {
8261
8454
  "document": "ModifyBlueprintAttribute请求参数结构体",
8262
8455
  "members": [
@@ -8434,7 +8627,7 @@
8434
8627
  },
8435
8628
  {
8436
8629
  "disabled": false,
8437
- "document": "云硬盘备份点配额。取值范围: [0, 500]。调整后的配额必须不小于已存在的备份点数量。",
8630
+ "document": "云硬盘备份点配额。取值范围: [0, 500]。调整后的配额必须大于等于已存在的备份点数量。",
8438
8631
  "example": "4",
8439
8632
  "member": "int64",
8440
8633
  "name": "DiskBackupQuota",
@@ -462,6 +462,14 @@
462
462
  "title": "查询用户密钥对列表"
463
463
  }
464
464
  ],
465
+ "DescribeMcpServerTemplates": [
466
+ {
467
+ "document": "模糊搜索模板",
468
+ "input": "POST / HTTP/1.1\nHost: lighthouse.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeMcpServerTemplates\n<公共请求参数>\n\n{\n \"Filters\": [\n {\n \"Name\": \"name-description\",\n \"Values\": [\n \"lighthouse\"\n ]\n }\n ],\n \"Limit\": 10,\n \"Offset\": 0\n}",
469
+ "output": "{\n \"Response\": {\n \"McpServerTemplateSet\": [\n {\n \"Command\": \"bnB4IC15IGxpZ2h0aG91c2UtbWNwLXNlcnZlcg==\",\n \"CommunityUrl\": \"https://www.npmjs.com/package/lighthouse-mcp-server\",\n \"Description\": \"基于MCP协议的腾讯云Lighthouse MCP Server,借助大模型即可完成实例防火墙配置、实例检测、监控分析等常用功能。\",\n \"EnvSet\": [\n {\n \"Key\": \"TENCENTCLOUD_SECRET_ID\",\n \"Value\": \"YOUR_TENCENT_SECRET_ID\"\n },\n {\n \"Key\": \"TENCENTCLOUD_SECRET_KEY\",\n \"Value\": \"YOUR_TENCENT_SECRET_KEY\"\n }\n ],\n \"IconUrl\": \"https://cloudcache.tencent-cloud.com/qcloud/ui/static/other_external_resource/6e6c2ea3-301f-4ce2-8fd9-3952c6eb04b5.png\",\n \"Name\": \"腾讯云 Lighthouse MCP Server\",\n \"PlatformUrl\": \"https://console.cloud.tencent.com/cam/capi\"\n }\n ],\n \"RequestId\": \"3ac46471-af2f-458a-919b-bec201887d6b\",\n \"TotalCount\": 1\n }\n}",
470
+ "title": "查询MCP Server模板列表"
471
+ }
472
+ ],
465
473
  "DescribeMcpServers": [
466
474
  {
467
475
  "document": "查询指定实例下的MCP Server列表。",
@@ -16879,7 +16879,7 @@
16879
16879
  },
16880
16880
  {
16881
16881
  "disabled": false,
16882
- "document": "结束时间,注意:\n1. 结束时间必须大于开始时间;\n2. 结束时间和开始时间必须大于当前时间;\n3. 结束时间 和 开始时间 间隔必须小于30天。\n使用UTC格式时间,\n例如:2019-01-08T10:00:00Z。\n注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)",
16882
+ "document": "结束时间,注意:\n1. 结束时间必须大于开始时间;\n2. 结束时间和开始时间必须大于当前时间;\n3. 结束时间 和 开始时间 间隔必须小于30天。\n使用UTC格式时间,\n例如:2019-01-08T10:00:00Z。\n注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)。\n4. 只修改EndTime进行续期, 不会影响正在进行中的任务。",
16883
16883
  "example": "2020-04-17T12:02:00Z",
16884
16884
  "member": "string",
16885
16885
  "name": "EndTime",
@@ -16952,7 +16952,7 @@
16952
16952
  {
16953
16953
  "disabled": false,
16954
16954
  "document": "指定任务 ID 修改任务。\n\n注意:该自定义任务 ID 只有在创建任务时指定了,才可在此处修改时使用。否则请使用系统返回的任务 ID。",
16955
- "example": "1234567",
16955
+ "example": "mytaskid",
16956
16956
  "member": "string",
16957
16957
  "name": "SpecifyTaskId",
16958
16958
  "required": false,