tencentcloud-sdk-lighthouse 3.0.1152 → 3.0.1162

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200324/models.rb +77 -22
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 58321bec2f71292bb627a518a65b2f1c95871f03
4
- data.tar.gz: fd953a730dc08e4f97f5a3afd38991c81ed49e55
3
+ metadata.gz: cf4ca80e060e7b93a530fed7d65d5549fe18db67
4
+ data.tar.gz: 219436e8d45cf9c1bcb9d135f79f8e96f52266f9
5
5
  SHA512:
6
- metadata.gz: d2923a324a8f4483ae3f639aa89629755dc6f72e7eaa5e1714e4d3c44829e0975e7947c152f03ec878072abb1744d6e64ce6f923ff41bb06f02e3b0e8b1d9f1b
7
- data.tar.gz: a18b1c087e0d2df6b10553ecb34ed7e84e95d2a30b6166a6e4ee1a27e3fbb98612e49da888cc354f54381664c1a9ec9462f151f698021ac954b8fd8d27335ab6
6
+ metadata.gz: 50154a50ee39a2afb02b8555d542d12d1a2d493c9acd34e498d92242ba11be7f99b2c30785c3e61109c91c97b7dec0d5ff3e7f983bc9f3ebf33ecfc03ea07c1e
7
+ data.tar.gz: 417024ec927281e527f3cf5f7e9c1c30f14a607609c883a57cfa41b6767b5a4603b2e4fe60ce97946a939e062a7b04e8e4629cd80346be62650aaf1ba11edb22
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1152
1
+ 3.0.1162
@@ -1284,15 +1284,21 @@ module TencentCloud
1284
1284
  # @type Description: String
1285
1285
  # @param Envs: MCP Server环境变量。最大长度:10
1286
1286
  # @type Envs: Array
1287
+ # @param TransportType: 传输类型。枚举值如下:
1287
1288
 
1288
- attr_accessor :InstanceId, :Name, :Command, :Description, :Envs
1289
+ # <li>STREAMABLE_HTTP:HTTP协议的流式传输方式。未传传输类型字段时,默认创建此类型的MCP Server</li>
1290
+ # <li>SSE:Server-Sent Events,服务器发送事件</li>
1291
+ # @type TransportType: String
1289
1292
 
1290
- def initialize(instanceid=nil, name=nil, command=nil, description=nil, envs=nil)
1293
+ attr_accessor :InstanceId, :Name, :Command, :Description, :Envs, :TransportType
1294
+
1295
+ def initialize(instanceid=nil, name=nil, command=nil, description=nil, envs=nil, transporttype=nil)
1291
1296
  @InstanceId = instanceid
1292
1297
  @Name = name
1293
1298
  @Command = command
1294
1299
  @Description = description
1295
1300
  @Envs = envs
1301
+ @TransportType = transporttype
1296
1302
  end
1297
1303
 
1298
1304
  def deserialize(params)
@@ -1308,6 +1314,7 @@ module TencentCloud
1308
1314
  @Envs << mcpserverenv_tmp
1309
1315
  end
1310
1316
  end
1317
+ @TransportType = params['TransportType']
1311
1318
  end
1312
1319
  end
1313
1320
 
@@ -4193,6 +4200,26 @@ module TencentCloud
4193
4200
  end
4194
4201
  end
4195
4202
 
4203
+ # 目标地域镜像信息。
4204
+ class DestinationRegionBlueprint < TencentCloud::Common::AbstractModel
4205
+ # @param Region: 目标地域。
4206
+ # @type Region: String
4207
+ # @param BlueprintId: 目标地域镜像ID。
4208
+ # @type BlueprintId: String
4209
+
4210
+ attr_accessor :Region, :BlueprintId
4211
+
4212
+ def initialize(region=nil, blueprintid=nil)
4213
+ @Region = region
4214
+ @BlueprintId = blueprintid
4215
+ end
4216
+
4217
+ def deserialize(params)
4218
+ @Region = params['Region']
4219
+ @BlueprintId = params['BlueprintId']
4220
+ end
4221
+ end
4222
+
4196
4223
  # DetachCcn请求参数结构体
4197
4224
  class DetachCcnRequest < TencentCloud::Common::AbstractModel
4198
4225
  # @param CcnId: 云联网实例ID。可通过[DescribeCcnAttachedInstances](https://cloud.tencent.com/document/product/1207/58797)接口返回值中的CcnId获取。
@@ -6331,11 +6358,14 @@ module TencentCloud
6331
6358
 
6332
6359
  # MCP Server信息
6333
6360
  class McpServer < TencentCloud::Common::AbstractModel
6334
- # @param McpServerId: MCP Server ID
6361
+ # @param McpServerId: MCP Server ID
6335
6362
  # @type McpServerId: String
6336
6363
  # @param Name: MCP Server名称。最大长度:64
6337
6364
  # @type Name: String
6338
- # @param McpServerType: MCP Server类型。枚举值:PUBLIC_PACKAGE,公共包安装;AGENT_GENERATED,AI生成。
6365
+ # @param McpServerType: MCP Server类型。枚举值如下:
6366
+
6367
+ # <li>PUBLIC_PACKAGE:公共包安装</li>
6368
+ # <li>AGENT_GENERATED:AI生成</li>
6339
6369
  # @type McpServerType: String
6340
6370
  # @param IconUrl: MCP Server图标地址
6341
6371
  # @type IconUrl: String
@@ -6343,18 +6373,18 @@ module TencentCloud
6343
6373
  # @type Command: String
6344
6374
  # @param State: MCP Server状态。枚举值如下:
6345
6375
 
6346
- # PENDING:表示创建中
6347
- # LAUNCH_FAILED:表示创建失败
6348
- # RUNNING:表示运行中
6349
- # STOPPED:表示关闭
6350
- # STARTING:表示开启中
6351
- # STOPPING:表示关闭中
6352
- # RESTARTING:表示重启中
6353
- # REMOVING:表示删除中
6354
- # UNKNOWN:表示未知
6355
- # ENV_ERROR:表示环境错误
6376
+ # <li>PENDING:表示创建中</li>
6377
+ # <li>LAUNCH_FAILED:表示创建失败</li>
6378
+ # <li>RUNNING:表示运行中</li>
6379
+ # <li>STOPPED:表示关闭</li>
6380
+ # <li>STARTING:表示开启中</li>
6381
+ # <li>STOPPING:表示关闭中</li>
6382
+ # <li>RESTARTING:表示重启中</li>
6383
+ # <li>REMOVING:表示删除中</li>
6384
+ # <li>UNKNOWN:表示未知</li>
6385
+ # <li>ENV_ERROR:表示环境错误</li>
6356
6386
  # @type State: String
6357
- # @param ServerUrl: MCP Server访问地址。
6387
+ # @param ServerUrl: MCP Server访问地址。传输类型 TransportType 为 STREAMABLE_HTTP 时以 /mcp结尾,为 SSE 时以 /sse结尾。
6358
6388
  # @type ServerUrl: String
6359
6389
  # @param Config: MCP Server配置
6360
6390
  # @type Config: String
@@ -6368,10 +6398,15 @@ module TencentCloud
6368
6398
  # @type UpdatedTime: String
6369
6399
  # @param EnvSet: MCP Server环境变量
6370
6400
  # @type EnvSet: Array
6401
+ # @param TransportType: 传输类型。枚举值如下:
6402
+
6403
+ # <li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
6404
+ # <li>SSE:Server-Sent Events,服务器发送事件</li>
6405
+ # @type TransportType: String
6371
6406
 
6372
- attr_accessor :McpServerId, :Name, :McpServerType, :IconUrl, :Command, :State, :ServerUrl, :Config, :Description, :CreatedTime, :UpdatedTime, :EnvSet
6407
+ attr_accessor :McpServerId, :Name, :McpServerType, :IconUrl, :Command, :State, :ServerUrl, :Config, :Description, :CreatedTime, :UpdatedTime, :EnvSet, :TransportType
6373
6408
 
6374
- def initialize(mcpserverid=nil, name=nil, mcpservertype=nil, iconurl=nil, command=nil, state=nil, serverurl=nil, config=nil, description=nil, createdtime=nil, updatedtime=nil, envset=nil)
6409
+ def initialize(mcpserverid=nil, name=nil, mcpservertype=nil, iconurl=nil, command=nil, state=nil, serverurl=nil, config=nil, description=nil, createdtime=nil, updatedtime=nil, envset=nil, transporttype=nil)
6375
6410
  @McpServerId = mcpserverid
6376
6411
  @Name = name
6377
6412
  @McpServerType = mcpservertype
@@ -6384,6 +6419,7 @@ module TencentCloud
6384
6419
  @CreatedTime = createdtime
6385
6420
  @UpdatedTime = updatedtime
6386
6421
  @EnvSet = envset
6422
+ @TransportType = transporttype
6387
6423
  end
6388
6424
 
6389
6425
  def deserialize(params)
@@ -6406,6 +6442,7 @@ module TencentCloud
6406
6442
  @EnvSet << mcpserverenv_tmp
6407
6443
  end
6408
6444
  end
6445
+ @TransportType = params['TransportType']
6409
6446
  end
6410
6447
  end
6411
6448
 
@@ -7102,7 +7139,7 @@ module TencentCloud
7102
7139
  class ModifyMcpServerRequest < TencentCloud::Common::AbstractModel
7103
7140
  # @param InstanceId: 实例ID。可以通过[DescribeInstances](https://cloud.tencent.com/document/api/1207/47573)接口返回值中的InstanceId获取。
7104
7141
  # @type InstanceId: String
7105
- # @param McpServerId: MCP Server ID。可以通过DescribeMcpServers接口返回值中的McpServerId获取。
7142
+ # @param McpServerId: MCP Server ID。可以通[DescribeMcpServers](https://cloud.tencent.com/document/product/1207/122837)接口返回值中的McpServerId获取。
7106
7143
  # @type McpServerId: String
7107
7144
  # @param Name: MCP Server名称。最大长度:64
7108
7145
  # @type Name: String
@@ -7112,16 +7149,22 @@ module TencentCloud
7112
7149
  # @type Description: String
7113
7150
  # @param Envs: MCP Server环境变量。最大长度:10。用于完整替换MCP Server的环境变量。当该字段为空时,系统将清除当前所有环境变量。若无需修改环境变量,请勿传递该字段。
7114
7151
  # @type Envs: Array
7152
+ # @param TransportType: 传输类型。枚举值如下:
7115
7153
 
7116
- attr_accessor :InstanceId, :McpServerId, :Name, :Command, :Description, :Envs
7154
+ # <li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
7155
+ # <li>SSE:Server-Sent Events,服务器发送事件</li>
7156
+ # @type TransportType: String
7117
7157
 
7118
- def initialize(instanceid=nil, mcpserverid=nil, name=nil, command=nil, description=nil, envs=nil)
7158
+ attr_accessor :InstanceId, :McpServerId, :Name, :Command, :Description, :Envs, :TransportType
7159
+
7160
+ def initialize(instanceid=nil, mcpserverid=nil, name=nil, command=nil, description=nil, envs=nil, transporttype=nil)
7119
7161
  @InstanceId = instanceid
7120
7162
  @McpServerId = mcpserverid
7121
7163
  @Name = name
7122
7164
  @Command = command
7123
7165
  @Description = description
7124
7166
  @Envs = envs
7167
+ @TransportType = transporttype
7125
7168
  end
7126
7169
 
7127
7170
  def deserialize(params)
@@ -7138,6 +7181,7 @@ module TencentCloud
7138
7181
  @Envs << mcpserverenv_tmp
7139
7182
  end
7140
7183
  end
7184
+ @TransportType = params['TransportType']
7141
7185
  end
7142
7186
  end
7143
7187
 
@@ -8565,16 +8609,27 @@ module TencentCloud
8565
8609
 
8566
8610
  # SyncBlueprint返回参数结构体
8567
8611
  class SyncBlueprintResponse < TencentCloud::Common::AbstractModel
8612
+ # @param DestinationRegionBlueprintSet: 目标地域镜像信息。
8613
+ # @type DestinationRegionBlueprintSet: Array
8568
8614
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8569
8615
  # @type RequestId: String
8570
8616
 
8571
- attr_accessor :RequestId
8617
+ attr_accessor :DestinationRegionBlueprintSet, :RequestId
8572
8618
 
8573
- def initialize(requestid=nil)
8619
+ def initialize(destinationregionblueprintset=nil, requestid=nil)
8620
+ @DestinationRegionBlueprintSet = destinationregionblueprintset
8574
8621
  @RequestId = requestid
8575
8622
  end
8576
8623
 
8577
8624
  def deserialize(params)
8625
+ unless params['DestinationRegionBlueprintSet'].nil?
8626
+ @DestinationRegionBlueprintSet = []
8627
+ params['DestinationRegionBlueprintSet'].each do |i|
8628
+ destinationregionblueprint_tmp = DestinationRegionBlueprint.new
8629
+ destinationregionblueprint_tmp.deserialize(i)
8630
+ @DestinationRegionBlueprintSet << destinationregionblueprint_tmp
8631
+ end
8632
+ end
8578
8633
  @RequestId = params['RequestId']
8579
8634
  end
8580
8635
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lighthouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1152
4
+ version: 3.0.1162
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-12 00:00:00.000000000 Z
11
+ date: 2025-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-lighthouse.rb
37
36
  - lib/v20200324/client.rb
38
37
  - lib/v20200324/models.rb
38
+ - lib/tencentcloud-sdk-lighthouse.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: