tencentcloud-sdk-lighthouse 3.0.1157 → 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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200324/models.rb +44 -20
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf4ca80e060e7b93a530fed7d65d5549fe18db67
|
|
4
|
+
data.tar.gz: 219436e8d45cf9c1bcb9d135f79f8e96f52266f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50154a50ee39a2afb02b8555d542d12d1a2d493c9acd34e498d92242ba11be7f99b2c30785c3e61109c91c97b7dec0d5ff3e7f983bc9f3ebf33ecfc03ea07c1e
|
|
7
|
+
data.tar.gz: 417024ec927281e527f3cf5f7e9c1c30f14a607609c883a57cfa41b6767b5a4603b2e4fe60ce97946a939e062a7b04e8e4629cd80346be62650aaf1ba11edb22
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1162
|
data/lib/v20200324/models.rb
CHANGED
|
@@ -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
|
-
|
|
1289
|
+
# <li>STREAMABLE_HTTP:HTTP协议的流式传输方式。未传传输类型字段时,默认创建此类型的MCP Server</li>
|
|
1290
|
+
# <li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
1291
|
+
# @type TransportType: String
|
|
1289
1292
|
|
|
1290
|
-
|
|
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
|
|
|
@@ -6351,11 +6358,14 @@ module TencentCloud
|
|
|
6351
6358
|
|
|
6352
6359
|
# MCP Server信息
|
|
6353
6360
|
class McpServer < TencentCloud::Common::AbstractModel
|
|
6354
|
-
# @param McpServerId: MCP Server ID
|
|
6361
|
+
# @param McpServerId: MCP Server ID
|
|
6355
6362
|
# @type McpServerId: String
|
|
6356
6363
|
# @param Name: MCP Server名称。最大长度:64
|
|
6357
6364
|
# @type Name: String
|
|
6358
|
-
# @param McpServerType: MCP Server
|
|
6365
|
+
# @param McpServerType: MCP Server类型。枚举值如下:
|
|
6366
|
+
|
|
6367
|
+
# <li>PUBLIC_PACKAGE:公共包安装</li>
|
|
6368
|
+
# <li>AGENT_GENERATED:AI生成</li>
|
|
6359
6369
|
# @type McpServerType: String
|
|
6360
6370
|
# @param IconUrl: MCP Server图标地址
|
|
6361
6371
|
# @type IconUrl: String
|
|
@@ -6363,18 +6373,18 @@ module TencentCloud
|
|
|
6363
6373
|
# @type Command: String
|
|
6364
6374
|
# @param State: MCP Server状态。枚举值如下:
|
|
6365
6375
|
|
|
6366
|
-
# PENDING
|
|
6367
|
-
# LAUNCH_FAILED
|
|
6368
|
-
# RUNNING
|
|
6369
|
-
# STOPPED
|
|
6370
|
-
# STARTING
|
|
6371
|
-
# STOPPING
|
|
6372
|
-
# RESTARTING
|
|
6373
|
-
# REMOVING
|
|
6374
|
-
# UNKNOWN
|
|
6375
|
-
# 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>
|
|
6376
6386
|
# @type State: String
|
|
6377
|
-
# @param ServerUrl: MCP Server
|
|
6387
|
+
# @param ServerUrl: MCP Server访问地址。传输类型 TransportType 为 STREAMABLE_HTTP 时以 /mcp结尾,为 SSE 时以 /sse结尾。
|
|
6378
6388
|
# @type ServerUrl: String
|
|
6379
6389
|
# @param Config: MCP Server配置
|
|
6380
6390
|
# @type Config: String
|
|
@@ -6388,10 +6398,15 @@ module TencentCloud
|
|
|
6388
6398
|
# @type UpdatedTime: String
|
|
6389
6399
|
# @param EnvSet: MCP Server环境变量
|
|
6390
6400
|
# @type EnvSet: Array
|
|
6401
|
+
# @param TransportType: 传输类型。枚举值如下:
|
|
6391
6402
|
|
|
6392
|
-
|
|
6403
|
+
# <li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
|
|
6404
|
+
# <li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
6405
|
+
# @type TransportType: String
|
|
6393
6406
|
|
|
6394
|
-
|
|
6407
|
+
attr_accessor :McpServerId, :Name, :McpServerType, :IconUrl, :Command, :State, :ServerUrl, :Config, :Description, :CreatedTime, :UpdatedTime, :EnvSet, :TransportType
|
|
6408
|
+
|
|
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)
|
|
6395
6410
|
@McpServerId = mcpserverid
|
|
6396
6411
|
@Name = name
|
|
6397
6412
|
@McpServerType = mcpservertype
|
|
@@ -6404,6 +6419,7 @@ module TencentCloud
|
|
|
6404
6419
|
@CreatedTime = createdtime
|
|
6405
6420
|
@UpdatedTime = updatedtime
|
|
6406
6421
|
@EnvSet = envset
|
|
6422
|
+
@TransportType = transporttype
|
|
6407
6423
|
end
|
|
6408
6424
|
|
|
6409
6425
|
def deserialize(params)
|
|
@@ -6426,6 +6442,7 @@ module TencentCloud
|
|
|
6426
6442
|
@EnvSet << mcpserverenv_tmp
|
|
6427
6443
|
end
|
|
6428
6444
|
end
|
|
6445
|
+
@TransportType = params['TransportType']
|
|
6429
6446
|
end
|
|
6430
6447
|
end
|
|
6431
6448
|
|
|
@@ -7122,7 +7139,7 @@ module TencentCloud
|
|
|
7122
7139
|
class ModifyMcpServerRequest < TencentCloud::Common::AbstractModel
|
|
7123
7140
|
# @param InstanceId: 实例ID。可以通过[DescribeInstances](https://cloud.tencent.com/document/api/1207/47573)接口返回值中的InstanceId获取。
|
|
7124
7141
|
# @type InstanceId: String
|
|
7125
|
-
# @param McpServerId: MCP Server ID
|
|
7142
|
+
# @param McpServerId: MCP Server ID。可以通[DescribeMcpServers](https://cloud.tencent.com/document/product/1207/122837)接口返回值中的McpServerId获取。
|
|
7126
7143
|
# @type McpServerId: String
|
|
7127
7144
|
# @param Name: MCP Server名称。最大长度:64
|
|
7128
7145
|
# @type Name: String
|
|
@@ -7132,16 +7149,22 @@ module TencentCloud
|
|
|
7132
7149
|
# @type Description: String
|
|
7133
7150
|
# @param Envs: MCP Server环境变量。最大长度:10。用于完整替换MCP Server的环境变量。当该字段为空时,系统将清除当前所有环境变量。若无需修改环境变量,请勿传递该字段。
|
|
7134
7151
|
# @type Envs: Array
|
|
7152
|
+
# @param TransportType: 传输类型。枚举值如下:
|
|
7153
|
+
|
|
7154
|
+
# <li>STREAMABLE_HTTP:HTTP协议的流式传输方式</li>
|
|
7155
|
+
# <li>SSE:Server-Sent Events,服务器发送事件</li>
|
|
7156
|
+
# @type TransportType: String
|
|
7135
7157
|
|
|
7136
|
-
attr_accessor :InstanceId, :McpServerId, :Name, :Command, :Description, :Envs
|
|
7158
|
+
attr_accessor :InstanceId, :McpServerId, :Name, :Command, :Description, :Envs, :TransportType
|
|
7137
7159
|
|
|
7138
|
-
def initialize(instanceid=nil, mcpserverid=nil, name=nil, command=nil, description=nil, envs=nil)
|
|
7160
|
+
def initialize(instanceid=nil, mcpserverid=nil, name=nil, command=nil, description=nil, envs=nil, transporttype=nil)
|
|
7139
7161
|
@InstanceId = instanceid
|
|
7140
7162
|
@McpServerId = mcpserverid
|
|
7141
7163
|
@Name = name
|
|
7142
7164
|
@Command = command
|
|
7143
7165
|
@Description = description
|
|
7144
7166
|
@Envs = envs
|
|
7167
|
+
@TransportType = transporttype
|
|
7145
7168
|
end
|
|
7146
7169
|
|
|
7147
7170
|
def deserialize(params)
|
|
@@ -7158,6 +7181,7 @@ module TencentCloud
|
|
|
7158
7181
|
@Envs << mcpserverenv_tmp
|
|
7159
7182
|
end
|
|
7160
7183
|
end
|
|
7184
|
+
@TransportType = params['TransportType']
|
|
7161
7185
|
end
|
|
7162
7186
|
end
|
|
7163
7187
|
|
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.
|
|
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-
|
|
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,8 +33,8 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20200324/models.rb
|
|
37
36
|
- lib/v20200324/client.rb
|
|
37
|
+
- lib/v20200324/models.rb
|
|
38
38
|
- lib/tencentcloud-sdk-lighthouse.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|