tencentcloud-sdk-tcbr 3.0.976 → 3.0.978

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/v20220217/models.rb +21 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 718e70b0ad55ef78f3c34fd2d5d9ad5adcaa4a3d
4
- data.tar.gz: 85e010a933aa6f8f87987eb30c84a570882328a6
3
+ metadata.gz: efdfa05b8be384dfaaef167143923a116eb59cd6
4
+ data.tar.gz: 9587bd8cc787a9b44d213da9bfcf812de4f5c3ab
5
5
  SHA512:
6
- metadata.gz: c04dd96cba7a230bf993a388bbc760711ce341f0e857af78d6dae8b78c8a01c17306589178dca2a145cbd1f11d37895f1faafb9f04d8acfad98145ad31e0aeaf
7
- data.tar.gz: 191b08cb39179501dab614520062cc640a17f3c037c81759077a7db4fabf292e843561a959ed9de54a350329189e6716c945e71ce3b27bf5de8e6a9812ca49e8
6
+ metadata.gz: 76f47ac73963a198fbb5c1f9e4631bc495b40d79045bc6f308cb62b49bee1e9322bf07cf42fd0fa462cba14fef8048d845be1450a1cd85f0dd0a69c22fb0f191
7
+ data.tar.gz: 08a61594fc8f6e4eedfc3fbc9fa91244de14a3f550faa234d905eb0b18abc17af6db1902665c765c1d257faa5a427d68d581043340c43eacad4ecfcdf14be2a0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.976
1
+ 3.0.978
@@ -27,14 +27,17 @@ module TencentCloud
27
27
  # @type RepoLanguage: String
28
28
  # @param UploadFilename: 上传文件名
29
29
  # @type UploadFilename: String
30
+ # @param LanguageVersion: 语言版本
31
+ # @type LanguageVersion: String
30
32
 
31
- attr_accessor :BaseImage, :EntryPoint, :RepoLanguage, :UploadFilename
33
+ attr_accessor :BaseImage, :EntryPoint, :RepoLanguage, :UploadFilename, :LanguageVersion
32
34
 
33
- def initialize(baseimage=nil, entrypoint=nil, repolanguage=nil, uploadfilename=nil)
35
+ def initialize(baseimage=nil, entrypoint=nil, repolanguage=nil, uploadfilename=nil, languageversion=nil)
34
36
  @BaseImage = baseimage
35
37
  @EntryPoint = entrypoint
36
38
  @RepoLanguage = repolanguage
37
39
  @UploadFilename = uploadfilename
40
+ @LanguageVersion = languageversion
38
41
  end
39
42
 
40
43
  def deserialize(params)
@@ -42,6 +45,7 @@ module TencentCloud
42
45
  @EntryPoint = params['EntryPoint']
43
46
  @RepoLanguage = params['RepoLanguage']
44
47
  @UploadFilename = params['UploadFilename']
48
+ @LanguageVersion = params['LanguageVersion']
45
49
  end
46
50
  end
47
51
 
@@ -91,11 +95,11 @@ module TencentCloud
91
95
  # @type SubNetIds: Array
92
96
  # @param ReqKey: 请求key 用于防重
93
97
  # @type ReqKey: String
94
- # @param Source: 来源:wechat | cloud
98
+ # @param Source: 来源:wechat | cloud | weda
95
99
  # @type Source: String
96
- # @param Channel: 渠道:wechat | cloud
100
+ # @param Channel: 渠道:wechat | cloud | weda
97
101
  # @type Channel: String
98
- # @param EnvId: 环境ID
102
+ # @param EnvId: 环境ID 云开发平台必填
99
103
  # @type EnvId: String
100
104
 
101
105
  attr_accessor :PackageType, :Alias, :FreeQuota, :Flag, :VpcId, :SubNetIds, :ReqKey, :Source, :Channel, :EnvId
@@ -474,13 +478,16 @@ module TencentCloud
474
478
  class DescribeEnvBaseInfoResponse < TencentCloud::Common::AbstractModel
475
479
  # @param EnvBaseInfo: 环境基础信息
476
480
  # @type EnvBaseInfo: :class:`Tencentcloud::Tcbr.v20220217.models.EnvBaseInfo`
481
+ # @param IsExist: 是否存在
482
+ # @type IsExist: Boolean
477
483
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
478
484
  # @type RequestId: String
479
485
 
480
- attr_accessor :EnvBaseInfo, :RequestId
486
+ attr_accessor :EnvBaseInfo, :IsExist, :RequestId
481
487
 
482
- def initialize(envbaseinfo=nil, requestid=nil)
488
+ def initialize(envbaseinfo=nil, isexist=nil, requestid=nil)
483
489
  @EnvBaseInfo = envbaseinfo
490
+ @IsExist = isexist
484
491
  @RequestId = requestid
485
492
  end
486
493
 
@@ -489,6 +496,7 @@ module TencentCloud
489
496
  @EnvBaseInfo = EnvBaseInfo.new
490
497
  @EnvBaseInfo.deserialize(params['EnvBaseInfo'])
491
498
  end
499
+ @IsExist = params['IsExist']
492
500
  @RequestId = params['RequestId']
493
501
  end
494
502
  end
@@ -1118,10 +1126,12 @@ module TencentCloud
1118
1126
  # @type AccessTypes: Array
1119
1127
  # @param CustomDomainNames: 展示自定义域名
1120
1128
  # @type CustomDomainNames: Array
1129
+ # @param ServerType: 服务类型: function 云函数2.0;container 容器服务
1130
+ # @type ServerType: String
1121
1131
 
1122
- attr_accessor :ServerName, :DefaultDomainName, :CustomDomainName, :Status, :UpdateTime, :AccessTypes, :CustomDomainNames
1132
+ attr_accessor :ServerName, :DefaultDomainName, :CustomDomainName, :Status, :UpdateTime, :AccessTypes, :CustomDomainNames, :ServerType
1123
1133
 
1124
- def initialize(servername=nil, defaultdomainname=nil, customdomainname=nil, status=nil, updatetime=nil, accesstypes=nil, customdomainnames=nil)
1134
+ def initialize(servername=nil, defaultdomainname=nil, customdomainname=nil, status=nil, updatetime=nil, accesstypes=nil, customdomainnames=nil, servertype=nil)
1125
1135
  @ServerName = servername
1126
1136
  @DefaultDomainName = defaultdomainname
1127
1137
  @CustomDomainName = customdomainname
@@ -1129,6 +1139,7 @@ module TencentCloud
1129
1139
  @UpdateTime = updatetime
1130
1140
  @AccessTypes = accesstypes
1131
1141
  @CustomDomainNames = customdomainnames
1142
+ @ServerType = servertype
1132
1143
  end
1133
1144
 
1134
1145
  def deserialize(params)
@@ -1139,6 +1150,7 @@ module TencentCloud
1139
1150
  @UpdateTime = params['UpdateTime']
1140
1151
  @AccessTypes = params['AccessTypes']
1141
1152
  @CustomDomainNames = params['CustomDomainNames']
1153
+ @ServerType = params['ServerType']
1142
1154
  end
1143
1155
  end
1144
1156
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcbr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.976
4
+ version: 3.0.978
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-01-06 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common