tencentcloud-sdk-tem 3.0.419 → 3.0.420

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/v20210701/models.rb +63 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 164291cca0fa551bc5f1456446dc37fc5072bfda
4
- data.tar.gz: 479d1ade629d448da709f8904bb316c02afb439d
3
+ metadata.gz: ad65846875f44451127fe9625ebf823ac9670f26
4
+ data.tar.gz: 6fc109d2944b95b6323a770c58d4d217a298efef
5
5
  SHA512:
6
- metadata.gz: 2968b185d4a94ad8e9b48d9e6a6b74a9d5642d6ee3f0f306e8dfde9ca98f0a830932e6de2e1ed62518f71167a3f306e94a672bc8c7ef176d6b40158eea9f8f6e
7
- data.tar.gz: 1e1c02327f5642864d115a75c4a3b624b033adc6d836d0677caa24b34ccdad9a8dbefe2d833a62f6ab423b165217712e7785208fa4c01eaa80c774021056d4e6
6
+ metadata.gz: f22217e4647b2588e3b39202f59f64e80c20c48e882c7f17d575b5b3c70dfcee14cd93b891fb9bb9772fab97a79db398ff22fe3694a751e1848366aae23e4d95
7
+ data.tar.gz: 0813e4872457fedf4656c3fd03b131420bc50c7a8c697cc59255cd3169284f5c407e1f76e105080ce2e297db12e06b32d9e2b6da6b9693e90097fe37abb0efe0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.419
1
+ 3.0.420
@@ -3684,14 +3684,18 @@ module TencentCloud
3684
3684
  # @type Size: Integer
3685
3685
  # @param Pages: 页数
3686
3686
  # @type Pages: Integer
3687
+ # @param Current: 当前条目
3688
+ # 注意:此字段可能返回 null,表示取不到有效值。
3689
+ # @type Current: Integer
3687
3690
 
3688
- attr_accessor :Records, :Total, :Size, :Pages
3691
+ attr_accessor :Records, :Total, :Size, :Pages, :Current
3689
3692
 
3690
- def initialize(records=nil, total=nil, size=nil, pages=nil)
3693
+ def initialize(records=nil, total=nil, size=nil, pages=nil, current=nil)
3691
3694
  @Records = records
3692
3695
  @Total = total
3693
3696
  @Size = size
3694
3697
  @Pages = pages
3698
+ @Current = current
3695
3699
  end
3696
3700
 
3697
3701
  def deserialize(params)
@@ -3706,6 +3710,7 @@ module TencentCloud
3706
3710
  @Total = params['Total']
3707
3711
  @Size = params['Size']
3708
3712
  @Pages = params['Pages']
3713
+ @Current = params['Current']
3709
3714
  end
3710
3715
  end
3711
3716
 
@@ -4466,6 +4471,28 @@ module TencentCloud
4466
4471
  end
4467
4472
  end
4468
4473
 
4474
+ # 标签
4475
+ class Tag < TencentCloud::Common::AbstractModel
4476
+ # @param TagKey: 标签键
4477
+ # 注意:此字段可能返回 null,表示取不到有效值。
4478
+ # @type TagKey: String
4479
+ # @param TagValue: 标签值
4480
+ # 注意:此字段可能返回 null,表示取不到有效值。
4481
+ # @type TagValue: String
4482
+
4483
+ attr_accessor :TagKey, :TagValue
4484
+
4485
+ def initialize(tagkey=nil, tagvalue=nil)
4486
+ @TagKey = tagkey
4487
+ @TagValue = tagvalue
4488
+ end
4489
+
4490
+ def deserialize(params)
4491
+ @TagKey = params['TagKey']
4492
+ @TagValue = params['TagValue']
4493
+ end
4494
+ end
4495
+
4469
4496
  # 分批发布详情
4470
4497
  class TemDeployApplicationDetailInfo < TencentCloud::Common::AbstractModel
4471
4498
  # @param DeployStrategyConf: 分批发布策略
@@ -4645,10 +4672,25 @@ module TencentCloud
4645
4672
  # @type EnableTswTraceService: Boolean
4646
4673
  # @param Locked: 环境锁,1为上锁,0则为上锁
4647
4674
  # @type Locked: Integer
4675
+ # @param AppId: 用户AppId
4676
+ # 注意:此字段可能返回 null,表示取不到有效值。
4677
+ # @type AppId: String
4678
+ # @param Uin: 用户Uin
4679
+ # 注意:此字段可能返回 null,表示取不到有效值。
4680
+ # @type Uin: String
4681
+ # @param SubAccountUin: 用户SubAccountUin
4682
+ # 注意:此字段可能返回 null,表示取不到有效值。
4683
+ # @type SubAccountUin: String
4684
+ # @param ClusterId: 集群ID
4685
+ # 注意:此字段可能返回 null,表示取不到有效值。
4686
+ # @type ClusterId: String
4687
+ # @param Tags: 标签
4688
+ # 注意:此字段可能返回 null,表示取不到有效值。
4689
+ # @type Tags: Array
4648
4690
 
4649
- attr_accessor :EnvironmentId, :Channel, :EnvironmentName, :Region, :Description, :Status, :Vpc, :CreateDate, :ModifyDate, :Modifier, :Creator, :ApplicationNum, :RunInstancesNum, :SubnetId, :ClusterStatus, :EnableTswTraceService, :Locked
4691
+ attr_accessor :EnvironmentId, :Channel, :EnvironmentName, :Region, :Description, :Status, :Vpc, :CreateDate, :ModifyDate, :Modifier, :Creator, :ApplicationNum, :RunInstancesNum, :SubnetId, :ClusterStatus, :EnableTswTraceService, :Locked, :AppId, :Uin, :SubAccountUin, :ClusterId, :Tags
4650
4692
 
4651
- def initialize(environmentid=nil, channel=nil, environmentname=nil, region=nil, description=nil, status=nil, vpc=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, applicationnum=nil, runinstancesnum=nil, subnetid=nil, clusterstatus=nil, enabletswtraceservice=nil, locked=nil)
4693
+ def initialize(environmentid=nil, channel=nil, environmentname=nil, region=nil, description=nil, status=nil, vpc=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, applicationnum=nil, runinstancesnum=nil, subnetid=nil, clusterstatus=nil, enabletswtraceservice=nil, locked=nil, appid=nil, uin=nil, subaccountuin=nil, clusterid=nil, tags=nil)
4652
4694
  @EnvironmentId = environmentid
4653
4695
  @Channel = channel
4654
4696
  @EnvironmentName = environmentname
@@ -4666,6 +4708,11 @@ module TencentCloud
4666
4708
  @ClusterStatus = clusterstatus
4667
4709
  @EnableTswTraceService = enabletswtraceservice
4668
4710
  @Locked = locked
4711
+ @AppId = appid
4712
+ @Uin = uin
4713
+ @SubAccountUin = subaccountuin
4714
+ @ClusterId = clusterid
4715
+ @Tags = tags
4669
4716
  end
4670
4717
 
4671
4718
  def deserialize(params)
@@ -4686,6 +4733,18 @@ module TencentCloud
4686
4733
  @ClusterStatus = params['ClusterStatus']
4687
4734
  @EnableTswTraceService = params['EnableTswTraceService']
4688
4735
  @Locked = params['Locked']
4736
+ @AppId = params['AppId']
4737
+ @Uin = params['Uin']
4738
+ @SubAccountUin = params['SubAccountUin']
4739
+ @ClusterId = params['ClusterId']
4740
+ unless params['Tags'].nil?
4741
+ @Tags = []
4742
+ params['Tags'].each do |i|
4743
+ tag_tmp = Tag.new
4744
+ tag_tmp.deserialize(i)
4745
+ @Tags << tag_tmp
4746
+ end
4747
+ end
4689
4748
  end
4690
4749
  end
4691
4750
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tem
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.419
4
+ version: 3.0.420
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-09-27 00:00:00.000000000 Z
11
+ date: 2022-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common