tencentcloud-sdk-scf 3.0.713 → 3.0.715
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 +31 -2
- 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: f99c840a0d5726c7deaba7e8fd1fbb1ed4d82b2f
|
4
|
+
data.tar.gz: 8e334d64d82b261e8642b55fb8509856b1c3facf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea8047bea4e373cea29cd82e332b9ca4e40db9e714191fe3684b8a6d8d02552feadcc71608ec5415b5dcdaedc324297a73661ca3d9367d983581c7d30f2ad8c4
|
7
|
+
data.tar.gz: 24943640768d3aa6f86a1e390dbd2fa4007e491a34d015ea72cdc99bc4fb20381e71173cb2e99afd12b1d2e32a9d45ed5790c9393d1195a7ef331ec19e23de9f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.715
|
data/lib/v20180416/models.rb
CHANGED
@@ -499,10 +499,14 @@ module TencentCloud
|
|
499
499
|
# @type ProtocolParams: :class:`Tencentcloud::Scf.v20180416.models.ProtocolParams`
|
500
500
|
# @param InstanceConcurrencyConfig: 单实例多并发配置。只支持Web函数。
|
501
501
|
# @type InstanceConcurrencyConfig: :class:`Tencentcloud::Scf.v20180416.models.InstanceConcurrencyConfig`
|
502
|
+
# @param DnsCache: 是否开启Dns缓存能力。只支持EVENT函数。默认为FALSE,TRUE 为开启,FALSE为关闭
|
503
|
+
# @type DnsCache: String
|
504
|
+
# @param IntranetConfig: 内网访问配置
|
505
|
+
# @type IntranetConfig: :class:`Tencentcloud::Scf.v20180416.models.IntranetConfigIn`
|
502
506
|
|
503
|
-
attr_accessor :FunctionName, :Code, :Handler, :Description, :MemorySize, :Timeout, :Environment, :Runtime, :VpcConfig, :Namespace, :Role, :InstallDependency, :ClsLogsetId, :ClsTopicId, :Type, :CodeSource, :Layers, :DeadLetterConfig, :PublicNetConfig, :CfsConfig, :InitTimeout, :Tags, :AsyncRunEnable, :TraceEnable, :AutoDeployClsTopicIndex, :AutoCreateClsTopic, :ProtocolType, :ProtocolParams, :InstanceConcurrencyConfig
|
507
|
+
attr_accessor :FunctionName, :Code, :Handler, :Description, :MemorySize, :Timeout, :Environment, :Runtime, :VpcConfig, :Namespace, :Role, :InstallDependency, :ClsLogsetId, :ClsTopicId, :Type, :CodeSource, :Layers, :DeadLetterConfig, :PublicNetConfig, :CfsConfig, :InitTimeout, :Tags, :AsyncRunEnable, :TraceEnable, :AutoDeployClsTopicIndex, :AutoCreateClsTopic, :ProtocolType, :ProtocolParams, :InstanceConcurrencyConfig, :DnsCache, :IntranetConfig
|
504
508
|
|
505
|
-
def initialize(functionname=nil, code=nil, handler=nil, description=nil, memorysize=nil, timeout=nil, environment=nil, runtime=nil, vpcconfig=nil, namespace=nil, role=nil, installdependency=nil, clslogsetid=nil, clstopicid=nil, type=nil, codesource=nil, layers=nil, deadletterconfig=nil, publicnetconfig=nil, cfsconfig=nil, inittimeout=nil, tags=nil, asyncrunenable=nil, traceenable=nil, autodeployclstopicindex=nil, autocreateclstopic=nil, protocoltype=nil, protocolparams=nil, instanceconcurrencyconfig=nil)
|
509
|
+
def initialize(functionname=nil, code=nil, handler=nil, description=nil, memorysize=nil, timeout=nil, environment=nil, runtime=nil, vpcconfig=nil, namespace=nil, role=nil, installdependency=nil, clslogsetid=nil, clstopicid=nil, type=nil, codesource=nil, layers=nil, deadletterconfig=nil, publicnetconfig=nil, cfsconfig=nil, inittimeout=nil, tags=nil, asyncrunenable=nil, traceenable=nil, autodeployclstopicindex=nil, autocreateclstopic=nil, protocoltype=nil, protocolparams=nil, instanceconcurrencyconfig=nil, dnscache=nil, intranetconfig=nil)
|
506
510
|
@FunctionName = functionname
|
507
511
|
@Code = code
|
508
512
|
@Handler = handler
|
@@ -532,6 +536,8 @@ module TencentCloud
|
|
532
536
|
@ProtocolType = protocoltype
|
533
537
|
@ProtocolParams = protocolparams
|
534
538
|
@InstanceConcurrencyConfig = instanceconcurrencyconfig
|
539
|
+
@DnsCache = dnscache
|
540
|
+
@IntranetConfig = intranetconfig
|
535
541
|
end
|
536
542
|
|
537
543
|
def deserialize(params)
|
@@ -602,6 +608,11 @@ module TencentCloud
|
|
602
608
|
@InstanceConcurrencyConfig = InstanceConcurrencyConfig.new
|
603
609
|
@InstanceConcurrencyConfig.deserialize(params['InstanceConcurrencyConfig'])
|
604
610
|
end
|
611
|
+
@DnsCache = params['DnsCache']
|
612
|
+
unless params['IntranetConfig'].nil?
|
613
|
+
@IntranetConfig = IntranetConfigIn.new
|
614
|
+
@IntranetConfig.deserialize(params['IntranetConfig'])
|
615
|
+
end
|
605
616
|
end
|
606
617
|
end
|
607
618
|
|
@@ -2299,6 +2310,24 @@ module TencentCloud
|
|
2299
2310
|
end
|
2300
2311
|
end
|
2301
2312
|
|
2313
|
+
# 内网配置
|
2314
|
+
class IntranetConfigIn < TencentCloud::Common::AbstractModel
|
2315
|
+
# @param IpFixed: 是否开启固定内网IP
|
2316
|
+
# ENABLE 为开启
|
2317
|
+
# DISABLE 为不开启
|
2318
|
+
# @type IpFixed: String
|
2319
|
+
|
2320
|
+
attr_accessor :IpFixed
|
2321
|
+
|
2322
|
+
def initialize(ipfixed=nil)
|
2323
|
+
@IpFixed = ipfixed
|
2324
|
+
end
|
2325
|
+
|
2326
|
+
def deserialize(params)
|
2327
|
+
@IpFixed = params['IpFixed']
|
2328
|
+
end
|
2329
|
+
end
|
2330
|
+
|
2302
2331
|
# 内网配置
|
2303
2332
|
class IntranetConfigOut < TencentCloud::Common::AbstractModel
|
2304
2333
|
# @param IpFixed: 是否启用固定内网IP
|
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.715
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|