tencentcloud-sdk-scf 1.0.201 → 1.0.205
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 +12 -4
- 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: a25acc6c496dae1353f8c9e7521378ec5811fb1d
|
4
|
+
data.tar.gz: b851929deb6a50ee83d79fe2230fd81eca30b104
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71b0b1705686cdbbc78f97d4bacec60342c4971102d4d59a1299acbb1e2e34c7cec963aedc3fdd0714a20bce8afd8ef45510e00b11edecdda2c2a01186da9600
|
7
|
+
data.tar.gz: e0a69921f9c7fc7fd38ee50da3ddbf0f10a13017c779e9e0e1acd1908657e480a8be90a0ae63c433afbfadae93d965a20e072c71a05321ebbcc3329157565320
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.205
|
data/lib/v20180416/models.rb
CHANGED
@@ -439,6 +439,8 @@ module TencentCloud
|
|
439
439
|
# @type Namespace: String
|
440
440
|
# @param Role: 函数绑定的角色
|
441
441
|
# @type Role: String
|
442
|
+
# @param InstallDependency: [在线依赖安装](https://cloud.tencent.com/document/product/583/37920),TRUE 表示安装,默认值为 FALSE。仅支持 Node.js 函数。
|
443
|
+
# @type InstallDependency: String
|
442
444
|
# @param ClsLogsetId: 函数日志投递到的CLS LogsetID
|
443
445
|
# @type ClsLogsetId: String
|
444
446
|
# @param ClsTopicId: 函数日志投递到的CLS TopicID
|
@@ -468,9 +470,9 @@ module TencentCloud
|
|
468
470
|
# @param ProtocolParams: HTTP函数配置ProtocolType访问协议,当前协议可配置的参数
|
469
471
|
# @type ProtocolParams: :class:`Tencentcloud::Scf.v20180416.models.ProtocolParams`
|
470
472
|
|
471
|
-
attr_accessor :FunctionName, :Code, :Handler, :Description, :MemorySize, :Timeout, :Environment, :Runtime, :VpcConfig, :Namespace, :Role, :ClsLogsetId, :ClsTopicId, :Type, :CodeSource, :Layers, :DeadLetterConfig, :PublicNetConfig, :CfsConfig, :InitTimeout, :Tags, :AsyncRunEnable, :TraceEnable, :ProtocolType, :ProtocolParams
|
473
|
+
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, :ProtocolType, :ProtocolParams
|
472
474
|
|
473
|
-
def initialize(functionname=nil, code=nil, handler=nil, description=nil, memorysize=nil, timeout=nil, environment=nil, runtime=nil, vpcconfig=nil, namespace=nil, role=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, protocoltype=nil, protocolparams=nil)
|
475
|
+
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, protocoltype=nil, protocolparams=nil)
|
474
476
|
@FunctionName = functionname
|
475
477
|
@Code = code
|
476
478
|
@Handler = handler
|
@@ -482,6 +484,7 @@ module TencentCloud
|
|
482
484
|
@VpcConfig = vpcconfig
|
483
485
|
@Namespace = namespace
|
484
486
|
@Role = role
|
487
|
+
@InstallDependency = installdependency
|
485
488
|
@ClsLogsetId = clslogsetid
|
486
489
|
@ClsTopicId = clstopicid
|
487
490
|
@Type = type
|
@@ -519,6 +522,7 @@ module TencentCloud
|
|
519
522
|
end
|
520
523
|
@Namespace = params['Namespace']
|
521
524
|
@Role = params['Role']
|
525
|
+
@InstallDependency = params['InstallDependency']
|
522
526
|
@ClsLogsetId = params['ClsLogsetId']
|
523
527
|
@ClsTopicId = params['ClsTopicId']
|
524
528
|
@Type = params['Type']
|
@@ -3920,6 +3924,8 @@ module TencentCloud
|
|
3920
3924
|
# @type VpcConfig: :class:`Tencentcloud::Scf.v20180416.models.VpcConfig`
|
3921
3925
|
# @param Role: 函数绑定的角色
|
3922
3926
|
# @type Role: String
|
3927
|
+
# @param InstallDependency: [在线依赖安装](https://cloud.tencent.com/document/product/583/37920),TRUE 表示安装,默认值为 FALSE。仅支持 Node.js 函数。
|
3928
|
+
# @type InstallDependency: String
|
3923
3929
|
# @param ClsLogsetId: 日志投递到的cls日志集ID
|
3924
3930
|
# @type ClsLogsetId: String
|
3925
3931
|
# @param ClsTopicId: 日志投递到的cls Topic ID
|
@@ -3941,9 +3947,9 @@ module TencentCloud
|
|
3941
3947
|
# @param ProtocolParams: HTTP函数配置ProtocolType访问协议,当前协议可配置的参数
|
3942
3948
|
# @type ProtocolParams: :class:`Tencentcloud::Scf.v20180416.models.ProtocolParams`
|
3943
3949
|
|
3944
|
-
attr_accessor :FunctionName, :Description, :MemorySize, :Timeout, :Runtime, :Environment, :Namespace, :VpcConfig, :Role, :ClsLogsetId, :ClsTopicId, :Publish, :L5Enable, :Layers, :DeadLetterConfig, :PublicNetConfig, :CfsConfig, :InitTimeout, :ProtocolParams
|
3950
|
+
attr_accessor :FunctionName, :Description, :MemorySize, :Timeout, :Runtime, :Environment, :Namespace, :VpcConfig, :Role, :InstallDependency, :ClsLogsetId, :ClsTopicId, :Publish, :L5Enable, :Layers, :DeadLetterConfig, :PublicNetConfig, :CfsConfig, :InitTimeout, :ProtocolParams
|
3945
3951
|
|
3946
|
-
def initialize(functionname=nil, description=nil, memorysize=nil, timeout=nil, runtime=nil, environment=nil, namespace=nil, vpcconfig=nil, role=nil, clslogsetid=nil, clstopicid=nil, publish=nil, l5enable=nil, layers=nil, deadletterconfig=nil, publicnetconfig=nil, cfsconfig=nil, inittimeout=nil, protocolparams=nil)
|
3952
|
+
def initialize(functionname=nil, description=nil, memorysize=nil, timeout=nil, runtime=nil, environment=nil, namespace=nil, vpcconfig=nil, role=nil, installdependency=nil, clslogsetid=nil, clstopicid=nil, publish=nil, l5enable=nil, layers=nil, deadletterconfig=nil, publicnetconfig=nil, cfsconfig=nil, inittimeout=nil, protocolparams=nil)
|
3947
3953
|
@FunctionName = functionname
|
3948
3954
|
@Description = description
|
3949
3955
|
@MemorySize = memorysize
|
@@ -3953,6 +3959,7 @@ module TencentCloud
|
|
3953
3959
|
@Namespace = namespace
|
3954
3960
|
@VpcConfig = vpcconfig
|
3955
3961
|
@Role = role
|
3962
|
+
@InstallDependency = installdependency
|
3956
3963
|
@ClsLogsetId = clslogsetid
|
3957
3964
|
@ClsTopicId = clstopicid
|
3958
3965
|
@Publish = publish
|
@@ -3981,6 +3988,7 @@ module TencentCloud
|
|
3981
3988
|
@VpcConfig.deserialize(params['VpcConfig'])
|
3982
3989
|
end
|
3983
3990
|
@Role = params['Role']
|
3991
|
+
@InstallDependency = params['InstallDependency']
|
3984
3992
|
@ClsLogsetId = params['ClsLogsetId']
|
3985
3993
|
@ClsTopicId = params['ClsTopicId']
|
3986
3994
|
@Publish = params['Publish']
|
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: 1.0.
|
4
|
+
version: 1.0.205
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|