tencentcloud-sdk-scf 3.0.1169 → 3.0.1198
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/v20180416/models.rb +128 -21
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99636b51570b9a9a0a7cb318f9641c33868b32a2
|
|
4
|
+
data.tar.gz: 2ccf2bdde288b183b92df4927b78bf714d97cda3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff9960889cc51af68d0028937e872cfbbdfc0202c829b0588aa0f86dbaeb5a1b29a082081a2e3c689120f2a2776652cd8e04ef751632f45ae92f7cee24d91e22
|
|
7
|
+
data.tar.gz: 210d8896b81fa2ca056e226341892b835b332b91b1504ac3d34e328367956ca22af96556d91fb1a7306cb2419272e95d3b46bc6e68078a4fda83722769530d95
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1198
|
data/lib/v20180416/models.rb
CHANGED
|
@@ -1550,10 +1550,10 @@ module TencentCloud
|
|
|
1550
1550
|
|
|
1551
1551
|
attr_accessor :FunctionName, :RetMsg, :RequestId, :StartTime, :RetCode, :InvokeFinished, :Duration, :BillDuration, :MemUsage, :Log, :Level, :Source, :RetryNum
|
|
1552
1552
|
extend Gem::Deprecate
|
|
1553
|
-
deprecate :Level, :none,
|
|
1554
|
-
deprecate :Level=, :none,
|
|
1555
|
-
deprecate :Source, :none,
|
|
1556
|
-
deprecate :Source=, :none,
|
|
1553
|
+
deprecate :Level, :none, 2026, 1
|
|
1554
|
+
deprecate :Level=, :none, 2026, 1
|
|
1555
|
+
deprecate :Source, :none, 2026, 1
|
|
1556
|
+
deprecate :Source=, :none, 2026, 1
|
|
1557
1557
|
|
|
1558
1558
|
def initialize(functionname=nil, retmsg=nil, requestid=nil, starttime=nil, retcode=nil, invokefinished=nil, duration=nil, billduration=nil, memusage=nil, log=nil, level=nil, source=nil, retrynum=nil)
|
|
1559
1559
|
@FunctionName = functionname
|
|
@@ -2176,6 +2176,9 @@ module TencentCloud
|
|
|
2176
2176
|
# @param ProtocolParams: HTTP函数配置ProtocolType访问协议,当前协议配置的参数
|
|
2177
2177
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2178
2178
|
# @type ProtocolParams: :class:`Tencentcloud::Scf.v20180416.models.ProtocolParams`
|
|
2179
|
+
# @param InstanceConcurrencyConfig: 单实例多并发配置。只支持Web函数。
|
|
2180
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2181
|
+
# @type InstanceConcurrencyConfig: :class:`Tencentcloud::Scf.v20180416.models.InstanceConcurrencyConfig`
|
|
2179
2182
|
# @param DnsCache: 是否开启DNS缓存
|
|
2180
2183
|
# @type DnsCache: String
|
|
2181
2184
|
# @param IntranetConfig: 内网访问配置
|
|
@@ -2184,9 +2187,9 @@ module TencentCloud
|
|
|
2184
2187
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2185
2188
|
# @type RequestId: String
|
|
2186
2189
|
|
|
2187
|
-
attr_accessor :ModTime, :CodeInfo, :Description, :Triggers, :Handler, :CodeSize, :Timeout, :FunctionVersion, :MemorySize, :Runtime, :FunctionName, :VpcConfig, :UseGpu, :Environment, :CodeResult, :CodeError, :ErrNo, :Namespace, :Role, :InstallDependency, :Status, :StatusDesc, :ClsLogsetId, :ClsTopicId, :FunctionId, :Tags, :EipConfig, :AccessInfo, :Type, :L5Enable, :Layers, :DeadLetterConfig, :AddTime, :PublicNetConfig, :OnsEnable, :CfsConfig, :AvailableStatus, :Qualifier, :InitTimeout, :StatusReasons, :AsyncRunEnable, :TraceEnable, :ImageConfig, :ProtocolType, :ProtocolParams, :DnsCache, :IntranetConfig, :RequestId
|
|
2190
|
+
attr_accessor :ModTime, :CodeInfo, :Description, :Triggers, :Handler, :CodeSize, :Timeout, :FunctionVersion, :MemorySize, :Runtime, :FunctionName, :VpcConfig, :UseGpu, :Environment, :CodeResult, :CodeError, :ErrNo, :Namespace, :Role, :InstallDependency, :Status, :StatusDesc, :ClsLogsetId, :ClsTopicId, :FunctionId, :Tags, :EipConfig, :AccessInfo, :Type, :L5Enable, :Layers, :DeadLetterConfig, :AddTime, :PublicNetConfig, :OnsEnable, :CfsConfig, :AvailableStatus, :Qualifier, :InitTimeout, :StatusReasons, :AsyncRunEnable, :TraceEnable, :ImageConfig, :ProtocolType, :ProtocolParams, :InstanceConcurrencyConfig, :DnsCache, :IntranetConfig, :RequestId
|
|
2188
2191
|
|
|
2189
|
-
def initialize(modtime=nil, codeinfo=nil, description=nil, triggers=nil, handler=nil, codesize=nil, timeout=nil, functionversion=nil, memorysize=nil, runtime=nil, functionname=nil, vpcconfig=nil, usegpu=nil, environment=nil, coderesult=nil, codeerror=nil, errno=nil, namespace=nil, role=nil, installdependency=nil, status=nil, statusdesc=nil, clslogsetid=nil, clstopicid=nil, functionid=nil, tags=nil, eipconfig=nil, accessinfo=nil, type=nil, l5enable=nil, layers=nil, deadletterconfig=nil, addtime=nil, publicnetconfig=nil, onsenable=nil, cfsconfig=nil, availablestatus=nil, qualifier=nil, inittimeout=nil, statusreasons=nil, asyncrunenable=nil, traceenable=nil, imageconfig=nil, protocoltype=nil, protocolparams=nil, dnscache=nil, intranetconfig=nil, requestid=nil)
|
|
2192
|
+
def initialize(modtime=nil, codeinfo=nil, description=nil, triggers=nil, handler=nil, codesize=nil, timeout=nil, functionversion=nil, memorysize=nil, runtime=nil, functionname=nil, vpcconfig=nil, usegpu=nil, environment=nil, coderesult=nil, codeerror=nil, errno=nil, namespace=nil, role=nil, installdependency=nil, status=nil, statusdesc=nil, clslogsetid=nil, clstopicid=nil, functionid=nil, tags=nil, eipconfig=nil, accessinfo=nil, type=nil, l5enable=nil, layers=nil, deadletterconfig=nil, addtime=nil, publicnetconfig=nil, onsenable=nil, cfsconfig=nil, availablestatus=nil, qualifier=nil, inittimeout=nil, statusreasons=nil, asyncrunenable=nil, traceenable=nil, imageconfig=nil, protocoltype=nil, protocolparams=nil, instanceconcurrencyconfig=nil, dnscache=nil, intranetconfig=nil, requestid=nil)
|
|
2190
2193
|
@ModTime = modtime
|
|
2191
2194
|
@CodeInfo = codeinfo
|
|
2192
2195
|
@Description = description
|
|
@@ -2232,6 +2235,7 @@ module TencentCloud
|
|
|
2232
2235
|
@ImageConfig = imageconfig
|
|
2233
2236
|
@ProtocolType = protocoltype
|
|
2234
2237
|
@ProtocolParams = protocolparams
|
|
2238
|
+
@InstanceConcurrencyConfig = instanceconcurrencyconfig
|
|
2235
2239
|
@DnsCache = dnscache
|
|
2236
2240
|
@IntranetConfig = intranetconfig
|
|
2237
2241
|
@RequestId = requestid
|
|
@@ -2338,6 +2342,10 @@ module TencentCloud
|
|
|
2338
2342
|
@ProtocolParams = ProtocolParams.new
|
|
2339
2343
|
@ProtocolParams.deserialize(params['ProtocolParams'])
|
|
2340
2344
|
end
|
|
2345
|
+
unless params['InstanceConcurrencyConfig'].nil?
|
|
2346
|
+
@InstanceConcurrencyConfig = InstanceConcurrencyConfig.new
|
|
2347
|
+
@InstanceConcurrencyConfig.deserialize(params['InstanceConcurrencyConfig'])
|
|
2348
|
+
end
|
|
2341
2349
|
@DnsCache = params['DnsCache']
|
|
2342
2350
|
unless params['IntranetConfig'].nil?
|
|
2343
2351
|
@IntranetConfig = IntranetConfigOut.new
|
|
@@ -2643,17 +2651,43 @@ module TencentCloud
|
|
|
2643
2651
|
# @param MaxConcurrency: 单实例并发数最大值。取值范围 [1,100]
|
|
2644
2652
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
2645
2653
|
# @type MaxConcurrency: Integer
|
|
2654
|
+
# @param InstanceIsolationEnabled: 安全隔离开关
|
|
2655
|
+
# @type InstanceIsolationEnabled: String
|
|
2656
|
+
# @param Type: 基于会话:Session-Based , 或者基于请求:Request-Based,二选一
|
|
2657
|
+
# @type Type: String
|
|
2658
|
+
# @param MixNodeConfig: 动态并发参数
|
|
2659
|
+
# @type MixNodeConfig: Array
|
|
2660
|
+
# @param SessionConfig: 会话配置参数
|
|
2661
|
+
# @type SessionConfig: :class:`Tencentcloud::Scf.v20180416.models.SessionConfig`
|
|
2646
2662
|
|
|
2647
|
-
attr_accessor :DynamicEnabled, :MaxConcurrency
|
|
2663
|
+
attr_accessor :DynamicEnabled, :MaxConcurrency, :InstanceIsolationEnabled, :Type, :MixNodeConfig, :SessionConfig
|
|
2648
2664
|
|
|
2649
|
-
def initialize(dynamicenabled=nil, maxconcurrency=nil)
|
|
2665
|
+
def initialize(dynamicenabled=nil, maxconcurrency=nil, instanceisolationenabled=nil, type=nil, mixnodeconfig=nil, sessionconfig=nil)
|
|
2650
2666
|
@DynamicEnabled = dynamicenabled
|
|
2651
2667
|
@MaxConcurrency = maxconcurrency
|
|
2668
|
+
@InstanceIsolationEnabled = instanceisolationenabled
|
|
2669
|
+
@Type = type
|
|
2670
|
+
@MixNodeConfig = mixnodeconfig
|
|
2671
|
+
@SessionConfig = sessionconfig
|
|
2652
2672
|
end
|
|
2653
2673
|
|
|
2654
2674
|
def deserialize(params)
|
|
2655
2675
|
@DynamicEnabled = params['DynamicEnabled']
|
|
2656
2676
|
@MaxConcurrency = params['MaxConcurrency']
|
|
2677
|
+
@InstanceIsolationEnabled = params['InstanceIsolationEnabled']
|
|
2678
|
+
@Type = params['Type']
|
|
2679
|
+
unless params['MixNodeConfig'].nil?
|
|
2680
|
+
@MixNodeConfig = []
|
|
2681
|
+
params['MixNodeConfig'].each do |i|
|
|
2682
|
+
mixnodeconfig_tmp = MixNodeConfig.new
|
|
2683
|
+
mixnodeconfig_tmp.deserialize(i)
|
|
2684
|
+
@MixNodeConfig << mixnodeconfig_tmp
|
|
2685
|
+
end
|
|
2686
|
+
end
|
|
2687
|
+
unless params['SessionConfig'].nil?
|
|
2688
|
+
@SessionConfig = SessionConfig.new
|
|
2689
|
+
@SessionConfig.deserialize(params['SessionConfig'])
|
|
2690
|
+
end
|
|
2657
2691
|
end
|
|
2658
2692
|
end
|
|
2659
2693
|
|
|
@@ -3228,7 +3262,20 @@ module TencentCloud
|
|
|
3228
3262
|
# @type Namespace: String
|
|
3229
3263
|
# @param Description: 函数描述,支持模糊搜索
|
|
3230
3264
|
# @type Description: String
|
|
3231
|
-
# @param Filters:
|
|
3265
|
+
# @param Filters: `过滤特定属性或者有特定标签的函数。`
|
|
3266
|
+
# - 传值方式
|
|
3267
|
+
# key-value 进行传值
|
|
3268
|
+
# 例如:"Filters": [{ "Name": "Status", "Values": ["CreateFailed","Creating"]}, {"Name": "Type","Values": ["HTTP"]}]上述条件的函数是,函数状态为创建失败或者创建中,且函数类型为 HTTP 函数
|
|
3269
|
+
# - `如果通过标签进行过滤:`Filter 中 Name 字段需要以 `tag-` 起始,`-` 后跟着标签名称,`Values` 指定对应的标签值
|
|
3270
|
+
# 示例值:"Filters": [{"Name":"tag-dmtest","Values":["dmtest"]}]
|
|
3271
|
+
# - `入参限制:`
|
|
3272
|
+
# `Filter`:对应的`Name`支持的字段有:
|
|
3273
|
+
# `单 Value Filter`支持的 `Name` 字段入参:['VpcId', 'SubnetId', 'ClsTopicId', 'ClsLogsetId', 'Role', 'CfsId', 'CfsMountInsId', 'Eip']
|
|
3274
|
+
# `多 Value Filter`支持的 `Name` 字段入参:['Status', 'Runtime', 'Type', 'PublicNetStatus', 'AsyncRunEnable', 'TraceEnable', 'Stamp']
|
|
3275
|
+
|
|
3276
|
+
# 单次 API 请求的`Filters` 的上限为`10`, 即Filters 最多有 10个 {"Name":"","Values":[]} `Name -Values` 的键值对。`Filter.Values`的上限,由 `Filter` 的 `Name` 决定。
|
|
3277
|
+
# 1.[ VpcId', 'SubnetId', 'ClsTopicId', 'ClsLogsetId', 'Role', 'CfsId', 'CfsMountInsId', 'Eip' ] 过滤的 Name 为这些属性时, Values `只能传一个值`
|
|
3278
|
+
# 2.['Status', 'Runtime', 'Type', 'PublicNetStatus', 'AsyncRunEnable', 'TraceEnable', 'Stamp'] 过滤的Name 为这些属性时 ,Values `至多可以传20个值`
|
|
3232
3279
|
# @type Filters: Array
|
|
3233
3280
|
|
|
3234
3281
|
attr_accessor :Order, :Orderby, :Offset, :Limit, :SearchKey, :Namespace, :Description, :Filters
|
|
@@ -3671,6 +3718,26 @@ module TencentCloud
|
|
|
3671
3718
|
end
|
|
3672
3719
|
end
|
|
3673
3720
|
|
|
3721
|
+
# 动态并发配置
|
|
3722
|
+
class MixNodeConfig < TencentCloud::Common::AbstractModel
|
|
3723
|
+
# @param NodeSpec: GPU机型名
|
|
3724
|
+
# @type NodeSpec: String
|
|
3725
|
+
# @param Num: 并发个数
|
|
3726
|
+
# @type Num: Integer
|
|
3727
|
+
|
|
3728
|
+
attr_accessor :NodeSpec, :Num
|
|
3729
|
+
|
|
3730
|
+
def initialize(nodespec=nil, num=nil)
|
|
3731
|
+
@NodeSpec = nodespec
|
|
3732
|
+
@Num = num
|
|
3733
|
+
end
|
|
3734
|
+
|
|
3735
|
+
def deserialize(params)
|
|
3736
|
+
@NodeSpec = params['NodeSpec']
|
|
3737
|
+
@Num = params['Num']
|
|
3738
|
+
end
|
|
3739
|
+
end
|
|
3740
|
+
|
|
3674
3741
|
# 命名空间
|
|
3675
3742
|
class Namespace < TencentCloud::Common::AbstractModel
|
|
3676
3743
|
# @param ModTime: 命名空间创建时间
|
|
@@ -4425,6 +4492,46 @@ module TencentCloud
|
|
|
4425
4492
|
end
|
|
4426
4493
|
end
|
|
4427
4494
|
|
|
4495
|
+
# 会话参数
|
|
4496
|
+
class SessionConfig < TencentCloud::Common::AbstractModel
|
|
4497
|
+
# @param SessionSource: session 来源,三选一:'HEADER', 'COOKIE', 'QUERY_STRING'
|
|
4498
|
+
# @type SessionSource: String
|
|
4499
|
+
# @param SessionName: session 名称,以字母开头,非首字母可包含数字、字母、下划线、中划线,长度5-40个字符
|
|
4500
|
+
# @type SessionName: String
|
|
4501
|
+
# @param MaximumConcurrencySessionPerInstance: 最大并发会话数
|
|
4502
|
+
# @type MaximumConcurrencySessionPerInstance: Integer
|
|
4503
|
+
# @param MaximumTTLInSeconds: 生命周期
|
|
4504
|
+
# @type MaximumTTLInSeconds: Integer
|
|
4505
|
+
# @param MaximumIdleTimeInSeconds: 空闲时长
|
|
4506
|
+
# @type MaximumIdleTimeInSeconds: Integer
|
|
4507
|
+
# @param SessionPath: session 对应的路径信息
|
|
4508
|
+
# @type SessionPath: String
|
|
4509
|
+
# @param IdleTimeoutStrategy: 自动销毁 FATAL、自动暂停PAUSE, 只有启动安全隔离的时候才会有
|
|
4510
|
+
# @type IdleTimeoutStrategy: String
|
|
4511
|
+
|
|
4512
|
+
attr_accessor :SessionSource, :SessionName, :MaximumConcurrencySessionPerInstance, :MaximumTTLInSeconds, :MaximumIdleTimeInSeconds, :SessionPath, :IdleTimeoutStrategy
|
|
4513
|
+
|
|
4514
|
+
def initialize(sessionsource=nil, sessionname=nil, maximumconcurrencysessionperinstance=nil, maximumttlinseconds=nil, maximumidletimeinseconds=nil, sessionpath=nil, idletimeoutstrategy=nil)
|
|
4515
|
+
@SessionSource = sessionsource
|
|
4516
|
+
@SessionName = sessionname
|
|
4517
|
+
@MaximumConcurrencySessionPerInstance = maximumconcurrencysessionperinstance
|
|
4518
|
+
@MaximumTTLInSeconds = maximumttlinseconds
|
|
4519
|
+
@MaximumIdleTimeInSeconds = maximumidletimeinseconds
|
|
4520
|
+
@SessionPath = sessionpath
|
|
4521
|
+
@IdleTimeoutStrategy = idletimeoutstrategy
|
|
4522
|
+
end
|
|
4523
|
+
|
|
4524
|
+
def deserialize(params)
|
|
4525
|
+
@SessionSource = params['SessionSource']
|
|
4526
|
+
@SessionName = params['SessionName']
|
|
4527
|
+
@MaximumConcurrencySessionPerInstance = params['MaximumConcurrencySessionPerInstance']
|
|
4528
|
+
@MaximumTTLInSeconds = params['MaximumTTLInSeconds']
|
|
4529
|
+
@MaximumIdleTimeInSeconds = params['MaximumIdleTimeInSeconds']
|
|
4530
|
+
@SessionPath = params['SessionPath']
|
|
4531
|
+
@IdleTimeoutStrategy = params['IdleTimeoutStrategy']
|
|
4532
|
+
end
|
|
4533
|
+
end
|
|
4534
|
+
|
|
4428
4535
|
# 状态原因描述
|
|
4429
4536
|
class StatusReason < TencentCloud::Common::AbstractModel
|
|
4430
4537
|
# @param ErrorCode: 错误码
|
|
@@ -4560,12 +4667,12 @@ module TencentCloud
|
|
|
4560
4667
|
|
|
4561
4668
|
attr_accessor :ModTime, :Type, :TriggerDesc, :TriggerName, :AddTime, :Enable, :CustomArgument, :AvailableStatus, :ResourceId, :BindStatus, :TriggerAttribute, :Qualifier, :Description
|
|
4562
4669
|
extend Gem::Deprecate
|
|
4563
|
-
deprecate :ResourceId, :none,
|
|
4564
|
-
deprecate :ResourceId=, :none,
|
|
4565
|
-
deprecate :BindStatus, :none,
|
|
4566
|
-
deprecate :BindStatus=, :none,
|
|
4567
|
-
deprecate :TriggerAttribute, :none,
|
|
4568
|
-
deprecate :TriggerAttribute=, :none,
|
|
4670
|
+
deprecate :ResourceId, :none, 2026, 1
|
|
4671
|
+
deprecate :ResourceId=, :none, 2026, 1
|
|
4672
|
+
deprecate :BindStatus, :none, 2026, 1
|
|
4673
|
+
deprecate :BindStatus=, :none, 2026, 1
|
|
4674
|
+
deprecate :TriggerAttribute, :none, 2026, 1
|
|
4675
|
+
deprecate :TriggerAttribute=, :none, 2026, 1
|
|
4569
4676
|
|
|
4570
4677
|
def initialize(modtime=nil, type=nil, triggerdesc=nil, triggername=nil, addtime=nil, enable=nil, customargument=nil, availablestatus=nil, resourceid=nil, bindstatus=nil, triggerattribute=nil, qualifier=nil, description=nil)
|
|
4571
4678
|
@ModTime = modtime
|
|
@@ -4724,12 +4831,12 @@ module TencentCloud
|
|
|
4724
4831
|
|
|
4725
4832
|
attr_accessor :Enable, :Qualifier, :TriggerName, :Type, :TriggerDesc, :AvailableStatus, :CustomArgument, :AddTime, :ModTime, :ResourceId, :BindStatus, :TriggerAttribute, :Description, :BoundResources
|
|
4726
4833
|
extend Gem::Deprecate
|
|
4727
|
-
deprecate :ResourceId, :none,
|
|
4728
|
-
deprecate :ResourceId=, :none,
|
|
4729
|
-
deprecate :BindStatus, :none,
|
|
4730
|
-
deprecate :BindStatus=, :none,
|
|
4731
|
-
deprecate :TriggerAttribute, :none,
|
|
4732
|
-
deprecate :TriggerAttribute=, :none,
|
|
4834
|
+
deprecate :ResourceId, :none, 2026, 1
|
|
4835
|
+
deprecate :ResourceId=, :none, 2026, 1
|
|
4836
|
+
deprecate :BindStatus, :none, 2026, 1
|
|
4837
|
+
deprecate :BindStatus=, :none, 2026, 1
|
|
4838
|
+
deprecate :TriggerAttribute, :none, 2026, 1
|
|
4839
|
+
deprecate :TriggerAttribute=, :none, 2026, 1
|
|
4733
4840
|
|
|
4734
4841
|
def initialize(enable=nil, qualifier=nil, triggername=nil, type=nil, triggerdesc=nil, availablestatus=nil, customargument=nil, addtime=nil, modtime=nil, resourceid=nil, bindstatus=nil, triggerattribute=nil, description=nil, boundresources=nil)
|
|
4735
4842
|
@Enable = enable
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-scf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1198
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|