tencentcloud-sdk-tcb 1.0.303 → 1.0.304

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180608/models.rb +20 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed2e5770b886dfe5f1794b90e2e8a859727de31e
4
- data.tar.gz: c367230bd8499e3ef34749ec8b7c549eff245d35
3
+ metadata.gz: 6320ca1bbf396f9773071a55c81f96c2f4d8b0ae
4
+ data.tar.gz: 560a9c6bcb9ac02671662b6dcdff83650dae75d5
5
5
  SHA512:
6
- metadata.gz: 2cba599607e105c38f81f7a3099e3451497a1331d7cb2a058b8da477f453ca6cceabbb366a50b53241efa0373892c847ec22c3c0dd35a492dd5c8d535940313d
7
- data.tar.gz: be6f9c97d544c9aa21af59da315c28a282fb0d34c0ca631add2db86840cdc55cdef63ed962124e3e23072d731f96eabe2d402d2d81a6b1f82dc84baf2a35f2c1
6
+ metadata.gz: fd629ae36fd5196751875fc99cc2660b36a5f51ca1c646402f06b323052c0726e7d3772aae0dc88a0b9ffd3acd9c0a530363de968c6cf3e95766cc2a07c80783
7
+ data.tar.gz: d5ab4ac2f09a7b2c09dd76fb70c37f9485af9decb330b9ddc06e536e8deef0a854898b3c9c8003b6cb6526ba9ca91f946f489d5a8f2a94f3b329c2b407eb34ad
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.303
1
+ 1.0.304
@@ -2188,19 +2188,24 @@ module TencentCloud
2188
2188
  # @param Region: 所属地域。
2189
2189
  # 当前支持ap-shanghai
2190
2190
  # @type Region: String
2191
+ # @param UpdateTime: 更新时间
2192
+ # 注意:此字段可能返回 null,表示取不到有效值。
2193
+ # @type UpdateTime: String
2191
2194
 
2192
- attr_accessor :InstanceId, :Status, :Region
2195
+ attr_accessor :InstanceId, :Status, :Region, :UpdateTime
2193
2196
 
2194
- def initialize(instanceid=nil, status=nil, region=nil)
2197
+ def initialize(instanceid=nil, status=nil, region=nil, updatetime=nil)
2195
2198
  @InstanceId = instanceid
2196
2199
  @Status = status
2197
2200
  @Region = region
2201
+ @UpdateTime = updatetime
2198
2202
  end
2199
2203
 
2200
2204
  def deserialize(params)
2201
2205
  @InstanceId = params['InstanceId']
2202
2206
  @Status = params['Status']
2203
2207
  @Region = params['Region']
2208
+ @UpdateTime = params['UpdateTime']
2204
2209
  end
2205
2210
  end
2206
2211
 
@@ -5041,15 +5046,19 @@ module TencentCloud
5041
5046
  class DescribeWxCloudBaseRunEnvsRequest < TencentCloud::Common::AbstractModel
5042
5047
  # @param WxAppId: wx应用Id
5043
5048
  # @type WxAppId: String
5049
+ # @param AllRegions: 是否查询全地域
5050
+ # @type AllRegions: Boolean
5044
5051
 
5045
- attr_accessor :WxAppId
5052
+ attr_accessor :WxAppId, :AllRegions
5046
5053
 
5047
- def initialize(wxappid=nil)
5054
+ def initialize(wxappid=nil, allregions=nil)
5048
5055
  @WxAppId = wxappid
5056
+ @AllRegions = allregions
5049
5057
  end
5050
5058
 
5051
5059
  def deserialize(params)
5052
5060
  @WxAppId = params['WxAppId']
5061
+ @AllRegions = params['AllRegions']
5053
5062
  end
5054
5063
  end
5055
5064
 
@@ -5451,10 +5460,13 @@ module TencentCloud
5451
5460
  # @param EnvType: 环境类型:baas, run, hoting, weda
5452
5461
  # 注意:此字段可能返回 null,表示取不到有效值。
5453
5462
  # @type EnvType: String
5463
+ # @param IsDauPackage: 是否是dau新套餐
5464
+ # 注意:此字段可能返回 null,表示取不到有效值。
5465
+ # @type IsDauPackage: Boolean
5454
5466
 
5455
- attr_accessor :EnvId, :Source, :Alias, :CreateTime, :UpdateTime, :Status, :Databases, :Storages, :Functions, :PackageId, :PackageName, :LogServices, :StaticStorages, :IsAutoDegrade, :EnvChannel, :PayMode, :IsDefault, :Region, :Tags, :CustomLogServices, :EnvType
5467
+ attr_accessor :EnvId, :Source, :Alias, :CreateTime, :UpdateTime, :Status, :Databases, :Storages, :Functions, :PackageId, :PackageName, :LogServices, :StaticStorages, :IsAutoDegrade, :EnvChannel, :PayMode, :IsDefault, :Region, :Tags, :CustomLogServices, :EnvType, :IsDauPackage
5456
5468
 
5457
- def initialize(envid=nil, source=nil, _alias=nil, createtime=nil, updatetime=nil, status=nil, databases=nil, storages=nil, functions=nil, packageid=nil, packagename=nil, logservices=nil, staticstorages=nil, isautodegrade=nil, envchannel=nil, paymode=nil, isdefault=nil, region=nil, tags=nil, customlogservices=nil, envtype=nil)
5469
+ def initialize(envid=nil, source=nil, _alias=nil, createtime=nil, updatetime=nil, status=nil, databases=nil, storages=nil, functions=nil, packageid=nil, packagename=nil, logservices=nil, staticstorages=nil, isautodegrade=nil, envchannel=nil, paymode=nil, isdefault=nil, region=nil, tags=nil, customlogservices=nil, envtype=nil, isdaupackage=nil)
5458
5470
  @EnvId = envid
5459
5471
  @Source = source
5460
5472
  @Alias = _alias
@@ -5476,6 +5488,7 @@ module TencentCloud
5476
5488
  @Tags = tags
5477
5489
  @CustomLogServices = customlogservices
5478
5490
  @EnvType = envtype
5491
+ @IsDauPackage = isdaupackage
5479
5492
  end
5480
5493
 
5481
5494
  def deserialize(params)
@@ -5549,6 +5562,7 @@ module TencentCloud
5549
5562
  end
5550
5563
  end
5551
5564
  @EnvType = params['EnvType']
5565
+ @IsDauPackage = params['IsDauPackage']
5552
5566
  end
5553
5567
  end
5554
5568
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.303
4
+ version: 1.0.304
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-26 00:00:00.000000000 Z
11
+ date: 2022-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common