tencentcloud-sdk-tem 3.0.433 → 3.0.435

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/v20210701/models.rb +325 -26
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f78e4787610275e5977b0f2795f341ea74f1b68
4
- data.tar.gz: 5729bef687f6f670581b638bd0f7cc3cd1fc438a
3
+ metadata.gz: accc259786b4a5e8a2f03fc3fc5cda40b6de3a1f
4
+ data.tar.gz: 3bc55ebc4bf7d5fadce6a4b975ce855a7bd634e5
5
5
  SHA512:
6
- metadata.gz: e56655653a1c810451df67b9b13784583cf7424767e028459c4963db17c55866dc17e934bceefa9c31828e1016927065f5d793d70cd7be4b9a5bcd3f6b0a3435
7
- data.tar.gz: 8058eaa975509781f96f1ed9989eb5e56f9e899042161ab6ab2976bce23020da7652ff26faf82a5c0e563ecbc60ca6a28e372fc6df68102c2958179858bbc610
6
+ metadata.gz: 395408758b9ded8a5d0885fbd7d3b5162c9d679251a1fa995718a000639d53cfc3d933879d6ea0b07ede584456787ebadff71c491e48913de8d3b5a5d25dc855
7
+ data.tar.gz: 0779020b218e1f4877ec4a9a6ae0e9d5350c13df3e919137160e2802d59222ed443716e38ff72b3121e141b8d4422a03f9dde44efb4d789d3a2ecdb20c22d64d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.433
1
+ 3.0.435
@@ -271,10 +271,12 @@ module TencentCloud
271
271
  # @type EnableTracing: Integer
272
272
  # @param UseDefaultImageServiceParameters: 使用默认镜像服务额外参数
273
273
  # @type UseDefaultImageServiceParameters: :class:`Tencentcloud::Tem.v20210701.models.UseDefaultRepoParameters`
274
+ # @param Tags: 标签
275
+ # @type Tags: Array
274
276
 
275
- attr_accessor :ApplicationName, :Description, :UseDefaultImageService, :RepoType, :InstanceId, :RepoServer, :RepoName, :SourceChannel, :SubnetList, :CodingLanguage, :DeployMode, :EnableTracing, :UseDefaultImageServiceParameters
277
+ attr_accessor :ApplicationName, :Description, :UseDefaultImageService, :RepoType, :InstanceId, :RepoServer, :RepoName, :SourceChannel, :SubnetList, :CodingLanguage, :DeployMode, :EnableTracing, :UseDefaultImageServiceParameters, :Tags
276
278
 
277
- def initialize(applicationname=nil, description=nil, usedefaultimageservice=nil, repotype=nil, instanceid=nil, reposerver=nil, reponame=nil, sourcechannel=nil, subnetlist=nil, codinglanguage=nil, deploymode=nil, enabletracing=nil, usedefaultimageserviceparameters=nil)
279
+ def initialize(applicationname=nil, description=nil, usedefaultimageservice=nil, repotype=nil, instanceid=nil, reposerver=nil, reponame=nil, sourcechannel=nil, subnetlist=nil, codinglanguage=nil, deploymode=nil, enabletracing=nil, usedefaultimageserviceparameters=nil, tags=nil)
278
280
  @ApplicationName = applicationname
279
281
  @Description = description
280
282
  @UseDefaultImageService = usedefaultimageservice
@@ -288,6 +290,7 @@ module TencentCloud
288
290
  @DeployMode = deploymode
289
291
  @EnableTracing = enabletracing
290
292
  @UseDefaultImageServiceParameters = usedefaultimageserviceparameters
293
+ @Tags = tags
291
294
  end
292
295
 
293
296
  def deserialize(params)
@@ -307,6 +310,14 @@ module TencentCloud
307
310
  @UseDefaultImageServiceParameters = UseDefaultRepoParameters.new
308
311
  @UseDefaultImageServiceParameters.deserialize(params['UseDefaultImageServiceParameters'])
309
312
  end
313
+ unless params['Tags'].nil?
314
+ @Tags = []
315
+ params['Tags'].each do |i|
316
+ tag_tmp = Tag.new
317
+ tag_tmp.deserialize(i)
318
+ @Tags << tag_tmp
319
+ end
320
+ end
310
321
  end
311
322
  end
312
323
 
@@ -509,10 +520,12 @@ module TencentCloud
509
520
  # @type SourceChannel: Integer
510
521
  # @param EnableTswTraceService: 是否开启tsw服务
511
522
  # @type EnableTswTraceService: Boolean
523
+ # @param Tags: 标签
524
+ # @type Tags: Array
512
525
 
513
- attr_accessor :EnvironmentName, :Vpc, :SubnetIds, :Description, :K8sVersion, :SourceChannel, :EnableTswTraceService
526
+ attr_accessor :EnvironmentName, :Vpc, :SubnetIds, :Description, :K8sVersion, :SourceChannel, :EnableTswTraceService, :Tags
514
527
 
515
- def initialize(environmentname=nil, vpc=nil, subnetids=nil, description=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil)
528
+ def initialize(environmentname=nil, vpc=nil, subnetids=nil, description=nil, k8sversion=nil, sourcechannel=nil, enabletswtraceservice=nil, tags=nil)
516
529
  @EnvironmentName = environmentname
517
530
  @Vpc = vpc
518
531
  @SubnetIds = subnetids
@@ -520,6 +533,7 @@ module TencentCloud
520
533
  @K8sVersion = k8sversion
521
534
  @SourceChannel = sourcechannel
522
535
  @EnableTswTraceService = enabletswtraceservice
536
+ @Tags = tags
523
537
  end
524
538
 
525
539
  def deserialize(params)
@@ -530,6 +544,14 @@ module TencentCloud
530
544
  @K8sVersion = params['K8sVersion']
531
545
  @SourceChannel = params['SourceChannel']
532
546
  @EnableTswTraceService = params['EnableTswTraceService']
547
+ unless params['Tags'].nil?
548
+ @Tags = []
549
+ params['Tags'].each do |i|
550
+ tag_tmp = Tag.new
551
+ tag_tmp.deserialize(i)
552
+ @Tags << tag_tmp
553
+ end
554
+ end
533
555
  end
534
556
  end
535
557
 
@@ -1330,16 +1352,20 @@ module TencentCloud
1330
1352
  # @param Webshell: webshell地址
1331
1353
  # 注意:此字段可能返回 null,表示取不到有效值。
1332
1354
  # @type Webshell: String
1355
+ # @param Status: 状态
1356
+ # 注意:此字段可能返回 null,表示取不到有效值。
1357
+ # @type Status: String
1333
1358
 
1334
- attr_accessor :PodId, :PodStatus, :PodVersion, :CreateTime, :Zone, :Webshell
1359
+ attr_accessor :PodId, :PodStatus, :PodVersion, :CreateTime, :Zone, :Webshell, :Status
1335
1360
 
1336
- def initialize(podid=nil, podstatus=nil, podversion=nil, createtime=nil, zone=nil, webshell=nil)
1361
+ def initialize(podid=nil, podstatus=nil, podversion=nil, createtime=nil, zone=nil, webshell=nil, status=nil)
1337
1362
  @PodId = podid
1338
1363
  @PodStatus = podstatus
1339
1364
  @PodVersion = podversion
1340
1365
  @CreateTime = createtime
1341
1366
  @Zone = zone
1342
1367
  @Webshell = webshell
1368
+ @Status = status
1343
1369
  end
1344
1370
 
1345
1371
  def deserialize(params)
@@ -1349,6 +1375,7 @@ module TencentCloud
1349
1375
  @CreateTime = params['CreateTime']
1350
1376
  @Zone = params['Zone']
1351
1377
  @Webshell = params['Webshell']
1378
+ @Status = params['Status']
1352
1379
  end
1353
1380
  end
1354
1381
 
@@ -1614,16 +1641,19 @@ module TencentCloud
1614
1641
  # @type ApplicationId: String
1615
1642
  # @param Keyword: 搜索关键字
1616
1643
  # @type Keyword: String
1644
+ # @param Filters: 查询过滤器
1645
+ # @type Filters: Array
1617
1646
 
1618
- attr_accessor :EnvironmentId, :Limit, :Offset, :SourceChannel, :ApplicationId, :Keyword
1647
+ attr_accessor :EnvironmentId, :Limit, :Offset, :SourceChannel, :ApplicationId, :Keyword, :Filters
1619
1648
 
1620
- def initialize(environmentid=nil, limit=nil, offset=nil, sourcechannel=nil, applicationid=nil, keyword=nil)
1649
+ def initialize(environmentid=nil, limit=nil, offset=nil, sourcechannel=nil, applicationid=nil, keyword=nil, filters=nil)
1621
1650
  @EnvironmentId = environmentid
1622
1651
  @Limit = limit
1623
1652
  @Offset = offset
1624
1653
  @SourceChannel = sourcechannel
1625
1654
  @ApplicationId = applicationid
1626
1655
  @Keyword = keyword
1656
+ @Filters = filters
1627
1657
  end
1628
1658
 
1629
1659
  def deserialize(params)
@@ -1633,6 +1663,14 @@ module TencentCloud
1633
1663
  @SourceChannel = params['SourceChannel']
1634
1664
  @ApplicationId = params['ApplicationId']
1635
1665
  @Keyword = params['Keyword']
1666
+ unless params['Filters'].nil?
1667
+ @Filters = []
1668
+ params['Filters'].each do |i|
1669
+ queryfilter_tmp = QueryFilter.new
1670
+ queryfilter_tmp.deserialize(i)
1671
+ @Filters << queryfilter_tmp
1672
+ end
1673
+ end
1636
1674
  end
1637
1675
  end
1638
1676
 
@@ -1982,19 +2020,30 @@ module TencentCloud
1982
2020
  # @type Offset: Integer
1983
2021
  # @param SourceChannel: 来源source
1984
2022
  # @type SourceChannel: Integer
2023
+ # @param Filters: 查询过滤器
2024
+ # @type Filters: Array
1985
2025
 
1986
- attr_accessor :Limit, :Offset, :SourceChannel
2026
+ attr_accessor :Limit, :Offset, :SourceChannel, :Filters
1987
2027
 
1988
- def initialize(limit=nil, offset=nil, sourcechannel=nil)
2028
+ def initialize(limit=nil, offset=nil, sourcechannel=nil, filters=nil)
1989
2029
  @Limit = limit
1990
2030
  @Offset = offset
1991
2031
  @SourceChannel = sourcechannel
2032
+ @Filters = filters
1992
2033
  end
1993
2034
 
1994
2035
  def deserialize(params)
1995
2036
  @Limit = params['Limit']
1996
2037
  @Offset = params['Offset']
1997
2038
  @SourceChannel = params['SourceChannel']
2039
+ unless params['Filters'].nil?
2040
+ @Filters = []
2041
+ params['Filters'].each do |i|
2042
+ queryfilter_tmp = QueryFilter.new
2043
+ queryfilter_tmp.deserialize(i)
2044
+ @Filters << queryfilter_tmp
2045
+ end
2046
+ end
1998
2047
  end
1999
2048
  end
2000
2049
 
@@ -3304,16 +3353,21 @@ module TencentCloud
3304
3353
 
3305
3354
  # ModifyApplicationReplicas返回参数结构体
3306
3355
  class ModifyApplicationReplicasResponse < TencentCloud::Common::AbstractModel
3356
+ # @param Result: 是否成功
3357
+ # 注意:此字段可能返回 null,表示取不到有效值。
3358
+ # @type Result: Boolean
3307
3359
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3308
3360
  # @type RequestId: String
3309
3361
 
3310
- attr_accessor :RequestId
3362
+ attr_accessor :Result, :RequestId
3311
3363
 
3312
- def initialize(requestid=nil)
3364
+ def initialize(result=nil, requestid=nil)
3365
+ @Result = result
3313
3366
  @RequestId = requestid
3314
3367
  end
3315
3368
 
3316
3369
  def deserialize(params)
3370
+ @Result = params['Result']
3317
3371
  @RequestId = params['RequestId']
3318
3372
  end
3319
3373
  end
@@ -3644,10 +3698,13 @@ module TencentCloud
3644
3698
  # @param Locked: 环境是否上锁,1为上锁,0则未上锁
3645
3699
  # 注意:此字段可能返回 null,表示取不到有效值。
3646
3700
  # @type Locked: Integer
3701
+ # @param Tags: 标签
3702
+ # 注意:此字段可能返回 null,表示取不到有效值。
3703
+ # @type Tags: Array
3647
3704
 
3648
- attr_accessor :EnvironmentId, :NamespaceName, :Region, :VpcId, :SubnetIds, :Description, :CreatedDate, :EnvironmentName, :ApmInstanceId, :Locked
3705
+ attr_accessor :EnvironmentId, :NamespaceName, :Region, :VpcId, :SubnetIds, :Description, :CreatedDate, :EnvironmentName, :ApmInstanceId, :Locked, :Tags
3649
3706
 
3650
- def initialize(environmentid=nil, namespacename=nil, region=nil, vpcid=nil, subnetids=nil, description=nil, createddate=nil, environmentname=nil, apminstanceid=nil, locked=nil)
3707
+ def initialize(environmentid=nil, namespacename=nil, region=nil, vpcid=nil, subnetids=nil, description=nil, createddate=nil, environmentname=nil, apminstanceid=nil, locked=nil, tags=nil)
3651
3708
  @EnvironmentId = environmentid
3652
3709
  @NamespaceName = namespacename
3653
3710
  @Region = region
@@ -3658,6 +3715,7 @@ module TencentCloud
3658
3715
  @EnvironmentName = environmentname
3659
3716
  @ApmInstanceId = apminstanceid
3660
3717
  @Locked = locked
3718
+ @Tags = tags
3661
3719
  end
3662
3720
 
3663
3721
  def deserialize(params)
@@ -3671,6 +3729,14 @@ module TencentCloud
3671
3729
  @EnvironmentName = params['EnvironmentName']
3672
3730
  @ApmInstanceId = params['ApmInstanceId']
3673
3731
  @Locked = params['Locked']
3732
+ unless params['Tags'].nil?
3733
+ @Tags = []
3734
+ params['Tags'].each do |i|
3735
+ tag_tmp = Tag.new
3736
+ tag_tmp.deserialize(i)
3737
+ @Tags << tag_tmp
3738
+ end
3739
+ end
3674
3740
  end
3675
3741
  end
3676
3742
 
@@ -3857,6 +3923,26 @@ module TencentCloud
3857
3923
  end
3858
3924
  end
3859
3925
 
3926
+ # 查询过滤器
3927
+ class QueryFilter < TencentCloud::Common::AbstractModel
3928
+ # @param Name: 查询字段名称
3929
+ # @type Name: String
3930
+ # @param Value: 查询字段值
3931
+ # @type Value: Array
3932
+
3933
+ attr_accessor :Name, :Value
3934
+
3935
+ def initialize(name=nil, value=nil)
3936
+ @Name = name
3937
+ @Value = value
3938
+ end
3939
+
3940
+ def deserialize(params)
3941
+ @Name = params['Name']
3942
+ @Value = params['Value']
3943
+ end
3944
+ end
3945
+
3860
3946
  # RestartApplicationPod请求参数结构体
3861
3947
  class RestartApplicationPodRequest < TencentCloud::Common::AbstractModel
3862
3948
  # @param EnvironmentId: 环境id
@@ -4141,10 +4227,28 @@ module TencentCloud
4141
4227
  # @param ContainerState: 容器状态
4142
4228
  # 注意:此字段可能返回 null,表示取不到有效值。
4143
4229
  # @type ContainerState: String
4230
+ # @param NodeInfo: 实例所在节点信息
4231
+ # 注意:此字段可能返回 null,表示取不到有效值。
4232
+ # @type NodeInfo: :class:`Tencentcloud::Tem.v20210701.models.NodeInfo`
4233
+ # @param StartTime: 启动时间
4234
+ # 注意:此字段可能返回 null,表示取不到有效值。
4235
+ # @type StartTime: String
4236
+ # @param Unhealthy: 是否健康
4237
+ # 注意:此字段可能返回 null,表示取不到有效值。
4238
+ # @type Unhealthy: Boolean
4239
+ # @param UnhealthyWarningMsg: 不健康时的提示信息
4240
+ # 注意:此字段可能返回 null,表示取不到有效值。
4241
+ # @type UnhealthyWarningMsg: String
4242
+ # @param VersionId: 版本ID
4243
+ # 注意:此字段可能返回 null,表示取不到有效值。
4244
+ # @type VersionId: String
4245
+ # @param ApplicationName: 应用名称
4246
+ # 注意:此字段可能返回 null,表示取不到有效值。
4247
+ # @type ApplicationName: String
4144
4248
 
4145
- attr_accessor :Webshell, :PodId, :Status, :CreateTime, :PodIp, :Zone, :DeployVersion, :RestartCount, :Ready, :ContainerState
4249
+ attr_accessor :Webshell, :PodId, :Status, :CreateTime, :PodIp, :Zone, :DeployVersion, :RestartCount, :Ready, :ContainerState, :NodeInfo, :StartTime, :Unhealthy, :UnhealthyWarningMsg, :VersionId, :ApplicationName
4146
4250
 
4147
- def initialize(webshell=nil, podid=nil, status=nil, createtime=nil, podip=nil, zone=nil, deployversion=nil, restartcount=nil, ready=nil, containerstate=nil)
4251
+ def initialize(webshell=nil, podid=nil, status=nil, createtime=nil, podip=nil, zone=nil, deployversion=nil, restartcount=nil, ready=nil, containerstate=nil, nodeinfo=nil, starttime=nil, unhealthy=nil, unhealthywarningmsg=nil, versionid=nil, applicationname=nil)
4148
4252
  @Webshell = webshell
4149
4253
  @PodId = podid
4150
4254
  @Status = status
@@ -4155,6 +4259,12 @@ module TencentCloud
4155
4259
  @RestartCount = restartcount
4156
4260
  @Ready = ready
4157
4261
  @ContainerState = containerstate
4262
+ @NodeInfo = nodeinfo
4263
+ @StartTime = starttime
4264
+ @Unhealthy = unhealthy
4265
+ @UnhealthyWarningMsg = unhealthywarningmsg
4266
+ @VersionId = versionid
4267
+ @ApplicationName = applicationname
4158
4268
  end
4159
4269
 
4160
4270
  def deserialize(params)
@@ -4168,6 +4278,15 @@ module TencentCloud
4168
4278
  @RestartCount = params['RestartCount']
4169
4279
  @Ready = params['Ready']
4170
4280
  @ContainerState = params['ContainerState']
4281
+ unless params['NodeInfo'].nil?
4282
+ @NodeInfo = NodeInfo.new
4283
+ @NodeInfo.deserialize(params['NodeInfo'])
4284
+ end
4285
+ @StartTime = params['StartTime']
4286
+ @Unhealthy = params['Unhealthy']
4287
+ @UnhealthyWarningMsg = params['UnhealthyWarningMsg']
4288
+ @VersionId = params['VersionId']
4289
+ @ApplicationName = params['ApplicationName']
4171
4290
  end
4172
4291
  end
4173
4292
 
@@ -4181,14 +4300,18 @@ module TencentCloud
4181
4300
  # @type Size: Integer
4182
4301
  # @param Pages: 页数
4183
4302
  # @type Pages: Integer
4303
+ # @param Current: 当前条数
4304
+ # 注意:此字段可能返回 null,表示取不到有效值。
4305
+ # @type Current: Integer
4184
4306
 
4185
- attr_accessor :Records, :Total, :Size, :Pages
4307
+ attr_accessor :Records, :Total, :Size, :Pages, :Current
4186
4308
 
4187
- def initialize(records=nil, total=nil, size=nil, pages=nil)
4309
+ def initialize(records=nil, total=nil, size=nil, pages=nil, current=nil)
4188
4310
  @Records = records
4189
4311
  @Total = total
4190
4312
  @Size = size
4191
4313
  @Pages = pages
4314
+ @Current = current
4192
4315
  end
4193
4316
 
4194
4317
  def deserialize(params)
@@ -4203,6 +4326,7 @@ module TencentCloud
4203
4326
  @Total = params['Total']
4204
4327
  @Size = params['Size']
4205
4328
  @Pages = params['Pages']
4329
+ @Current = params['Current']
4206
4330
  end
4207
4331
  end
4208
4332
 
@@ -4341,10 +4465,28 @@ module TencentCloud
4341
4465
  # @param UnderDeploying: 是否正在发布中
4342
4466
  # 注意:此字段可能返回 null,表示取不到有效值。
4343
4467
  # @type UnderDeploying: Boolean
4468
+ # @param BatchDeployStatus: 分批次部署状态
4469
+ # 注意:此字段可能返回 null,表示取不到有效值。
4470
+ # @type BatchDeployStatus: String
4471
+ # @param Zones: 可用区
4472
+ # 注意:此字段可能返回 null,表示取不到有效值。
4473
+ # @type Zones: Array
4474
+ # @param NodeInfos: 节点信息
4475
+ # 注意:此字段可能返回 null,表示取不到有效值。
4476
+ # @type NodeInfos: Array
4477
+ # @param PodList: 实例信息
4478
+ # 注意:此字段可能返回 null,表示取不到有效值。
4479
+ # @type PodList: :class:`Tencentcloud::Tem.v20210701.models.DescribeRunPodPage`
4480
+ # @param WorkloadInfo: 工作负载信息
4481
+ # 注意:此字段可能返回 null,表示取不到有效值。
4482
+ # @type WorkloadInfo: :class:`Tencentcloud::Tem.v20210701.models.WorkloadInfo`
4483
+ # @param CreateDate: 创建日期
4484
+ # 注意:此字段可能返回 null,表示取不到有效值。
4485
+ # @type CreateDate: String
4344
4486
 
4345
- attr_accessor :VersionName, :Status, :EnableEs, :CurrentInstances, :VersionId, :LogOutputConf, :ExpectedInstances, :DeployMode, :BuildTaskId, :EnvironmentId, :EnvironmentName, :ApplicationId, :ApplicationName, :UnderDeploying
4487
+ attr_accessor :VersionName, :Status, :EnableEs, :CurrentInstances, :VersionId, :LogOutputConf, :ExpectedInstances, :DeployMode, :BuildTaskId, :EnvironmentId, :EnvironmentName, :ApplicationId, :ApplicationName, :UnderDeploying, :BatchDeployStatus, :Zones, :NodeInfos, :PodList, :WorkloadInfo, :CreateDate
4346
4488
 
4347
- def initialize(versionname=nil, status=nil, enablees=nil, currentinstances=nil, versionid=nil, logoutputconf=nil, expectedinstances=nil, deploymode=nil, buildtaskid=nil, environmentid=nil, environmentname=nil, applicationid=nil, applicationname=nil, underdeploying=nil)
4489
+ def initialize(versionname=nil, status=nil, enablees=nil, currentinstances=nil, versionid=nil, logoutputconf=nil, expectedinstances=nil, deploymode=nil, buildtaskid=nil, environmentid=nil, environmentname=nil, applicationid=nil, applicationname=nil, underdeploying=nil, batchdeploystatus=nil, zones=nil, nodeinfos=nil, podlist=nil, workloadinfo=nil, createdate=nil)
4348
4490
  @VersionName = versionname
4349
4491
  @Status = status
4350
4492
  @EnableEs = enablees
@@ -4359,6 +4501,12 @@ module TencentCloud
4359
4501
  @ApplicationId = applicationid
4360
4502
  @ApplicationName = applicationname
4361
4503
  @UnderDeploying = underdeploying
4504
+ @BatchDeployStatus = batchdeploystatus
4505
+ @Zones = zones
4506
+ @NodeInfos = nodeinfos
4507
+ @PodList = podlist
4508
+ @WorkloadInfo = workloadinfo
4509
+ @CreateDate = createdate
4362
4510
  end
4363
4511
 
4364
4512
  def deserialize(params)
@@ -4379,6 +4527,25 @@ module TencentCloud
4379
4527
  @ApplicationId = params['ApplicationId']
4380
4528
  @ApplicationName = params['ApplicationName']
4381
4529
  @UnderDeploying = params['UnderDeploying']
4530
+ @BatchDeployStatus = params['BatchDeployStatus']
4531
+ @Zones = params['Zones']
4532
+ unless params['NodeInfos'].nil?
4533
+ @NodeInfos = []
4534
+ params['NodeInfos'].each do |i|
4535
+ nodeinfo_tmp = NodeInfo.new
4536
+ nodeinfo_tmp.deserialize(i)
4537
+ @NodeInfos << nodeinfo_tmp
4538
+ end
4539
+ end
4540
+ unless params['PodList'].nil?
4541
+ @PodList = DescribeRunPodPage.new
4542
+ @PodList.deserialize(params['PodList'])
4543
+ end
4544
+ unless params['WorkloadInfo'].nil?
4545
+ @WorkloadInfo = WorkloadInfo.new
4546
+ @WorkloadInfo.deserialize(params['WorkloadInfo'])
4547
+ end
4548
+ @CreateDate = params['CreateDate']
4382
4549
  end
4383
4550
  end
4384
4551
 
@@ -4798,10 +4965,13 @@ module TencentCloud
4798
4965
  # @param EnableTracing: 是否启用链路追踪
4799
4966
  # 注意:此字段可能返回 null,表示取不到有效值。
4800
4967
  # @type EnableTracing: Integer
4968
+ # @param Tags: 标签
4969
+ # 注意:此字段可能返回 null,表示取不到有效值。
4970
+ # @type Tags: Array
4801
4971
 
4802
- attr_accessor :ApplicationId, :ApplicationName, :Description, :EnvironmentId, :CreateDate, :ModifyDate, :Modifier, :Creator, :RepoType, :InstanceId, :RepoName, :CodingLanguage, :DeployMode, :EnvironmentName, :ActiveVersions, :EnableTracing
4972
+ attr_accessor :ApplicationId, :ApplicationName, :Description, :EnvironmentId, :CreateDate, :ModifyDate, :Modifier, :Creator, :RepoType, :InstanceId, :RepoName, :CodingLanguage, :DeployMode, :EnvironmentName, :ActiveVersions, :EnableTracing, :Tags
4803
4973
 
4804
- def initialize(applicationid=nil, applicationname=nil, description=nil, environmentid=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, repotype=nil, instanceid=nil, reponame=nil, codinglanguage=nil, deploymode=nil, environmentname=nil, activeversions=nil, enabletracing=nil)
4974
+ def initialize(applicationid=nil, applicationname=nil, description=nil, environmentid=nil, createdate=nil, modifydate=nil, modifier=nil, creator=nil, repotype=nil, instanceid=nil, reponame=nil, codinglanguage=nil, deploymode=nil, environmentname=nil, activeversions=nil, enabletracing=nil, tags=nil)
4805
4975
  @ApplicationId = applicationid
4806
4976
  @ApplicationName = applicationname
4807
4977
  @Description = description
@@ -4818,6 +4988,7 @@ module TencentCloud
4818
4988
  @EnvironmentName = environmentname
4819
4989
  @ActiveVersions = activeversions
4820
4990
  @EnableTracing = enabletracing
4991
+ @Tags = tags
4821
4992
  end
4822
4993
 
4823
4994
  def deserialize(params)
@@ -4844,6 +5015,14 @@ module TencentCloud
4844
5015
  end
4845
5016
  end
4846
5017
  @EnableTracing = params['EnableTracing']
5018
+ unless params['Tags'].nil?
5019
+ @Tags = []
5020
+ params['Tags'].each do |i|
5021
+ tag_tmp = Tag.new
5022
+ tag_tmp.deserialize(i)
5023
+ @Tags << tag_tmp
5024
+ end
5025
+ end
4847
5026
  end
4848
5027
  end
4849
5028
 
@@ -5050,10 +5229,49 @@ module TencentCloud
5050
5229
  # 0:关闭metrics采集;
5051
5230
  # 注意:此字段可能返回 null,表示取不到有效值。
5052
5231
  # @type EnableMetrics: Integer
5232
+ # @param AppId: 用户AppId
5233
+ # 注意:此字段可能返回 null,表示取不到有效值。
5234
+ # @type AppId: String
5235
+ # @param SubAccountUin: 用户SubAccountUin
5236
+ # 注意:此字段可能返回 null,表示取不到有效值。
5237
+ # @type SubAccountUin: String
5238
+ # @param Uin: 用户Uin
5239
+ # 注意:此字段可能返回 null,表示取不到有效值。
5240
+ # @type Uin: String
5241
+ # @param Region: 地域
5242
+ # 注意:此字段可能返回 null,表示取不到有效值。
5243
+ # @type Region: String
5244
+ # @param GroupId: 应用分组ID
5245
+ # 注意:此字段可能返回 null,表示取不到有效值。
5246
+ # @type GroupId: String
5247
+ # @param EnableRegistry: 是否启用注册中心
5248
+ # 注意:此字段可能返回 null,表示取不到有效值。
5249
+ # @type EnableRegistry: Integer
5250
+ # @param AutoscalerList: 弹性伸缩数组
5251
+ # 注意:此字段可能返回 null,表示取不到有效值。
5252
+ # @type AutoscalerList: Array
5253
+ # @param Modifier: 修改人
5254
+ # 注意:此字段可能返回 null,表示取不到有效值。
5255
+ # @type Modifier: String
5256
+ # @param Creator: 创建人
5257
+ # 注意:此字段可能返回 null,表示取不到有效值。
5258
+ # @type Creator: String
5259
+ # @param DeployStrategyConf: 部署策略
5260
+ # 注意:此字段可能返回 null,表示取不到有效值。
5261
+ # @type DeployStrategyConf: :class:`Tencentcloud::Tem.v20210701.models.DeployStrategyConf`
5262
+ # @param PodList: 实例列表
5263
+ # 注意:此字段可能返回 null,表示取不到有效值。
5264
+ # @type PodList: :class:`Tencentcloud::Tem.v20210701.models.DescribeRunPodPage`
5265
+ # @param ConfEdited: 发布时配置是否有修改
5266
+ # 注意:此字段可能返回 null,表示取不到有效值。
5267
+ # @type ConfEdited: Boolean
5268
+ # @param Tags: 标签
5269
+ # 注意:此字段可能返回 null,表示取不到有效值。
5270
+ # @type Tags: Array
5053
5271
 
5054
- attr_accessor :VersionId, :ApplicationId, :DeployMode, :JdkVersion, :Description, :DeployVersion, :PublishMode, :JvmOpts, :InitPodNum, :CpuSpec, :MemorySpec, :ImgRepo, :ImgName, :ImgVersion, :EsInfo, :EnvConf, :StorageConfs, :Status, :Vpc, :SubnetId, :CreateDate, :ModifyDate, :StorageMountConfs, :VersionName, :LogOutputConf, :ApplicationName, :ApplicationDescription, :EnvironmentName, :EnvironmentId, :PublicDomain, :EnablePublicAccess, :CurrentInstances, :ExpectedInstances, :CodingLanguage, :PkgName, :EsEnable, :EsStrategy, :ImageTag, :LogEnable, :MinAliveInstances, :SecurityGroupIds, :ImageCommand, :ImageArgs, :UseRegistryDefaultConfig, :Service, :SettingConfs, :LogConfs, :PostStart, :PreStop, :Liveness, :Readiness, :HorizontalAutoscaler, :CronHorizontalAutoscaler, :Zones, :LastDeployDate, :LastDeploySuccessDate, :NodeInfos, :ImageType, :EnableTracing, :EnableTracingReport, :RepoType, :BatchDeployStatus, :ApmInstanceId, :WorkloadInfo, :SpeedUp, :StartupProbe, :OsFlavour, :RepoServer, :UnderDeploying, :EnablePrometheusConf, :StoppedManually, :TcrInstanceId, :EnableMetrics
5272
+ attr_accessor :VersionId, :ApplicationId, :DeployMode, :JdkVersion, :Description, :DeployVersion, :PublishMode, :JvmOpts, :InitPodNum, :CpuSpec, :MemorySpec, :ImgRepo, :ImgName, :ImgVersion, :EsInfo, :EnvConf, :StorageConfs, :Status, :Vpc, :SubnetId, :CreateDate, :ModifyDate, :StorageMountConfs, :VersionName, :LogOutputConf, :ApplicationName, :ApplicationDescription, :EnvironmentName, :EnvironmentId, :PublicDomain, :EnablePublicAccess, :CurrentInstances, :ExpectedInstances, :CodingLanguage, :PkgName, :EsEnable, :EsStrategy, :ImageTag, :LogEnable, :MinAliveInstances, :SecurityGroupIds, :ImageCommand, :ImageArgs, :UseRegistryDefaultConfig, :Service, :SettingConfs, :LogConfs, :PostStart, :PreStop, :Liveness, :Readiness, :HorizontalAutoscaler, :CronHorizontalAutoscaler, :Zones, :LastDeployDate, :LastDeploySuccessDate, :NodeInfos, :ImageType, :EnableTracing, :EnableTracingReport, :RepoType, :BatchDeployStatus, :ApmInstanceId, :WorkloadInfo, :SpeedUp, :StartupProbe, :OsFlavour, :RepoServer, :UnderDeploying, :EnablePrometheusConf, :StoppedManually, :TcrInstanceId, :EnableMetrics, :AppId, :SubAccountUin, :Uin, :Region, :GroupId, :EnableRegistry, :AutoscalerList, :Modifier, :Creator, :DeployStrategyConf, :PodList, :ConfEdited, :Tags
5055
5273
 
5056
- def initialize(versionid=nil, applicationid=nil, deploymode=nil, jdkversion=nil, description=nil, deployversion=nil, publishmode=nil, jvmopts=nil, initpodnum=nil, cpuspec=nil, memoryspec=nil, imgrepo=nil, imgname=nil, imgversion=nil, esinfo=nil, envconf=nil, storageconfs=nil, status=nil, vpc=nil, subnetid=nil, createdate=nil, modifydate=nil, storagemountconfs=nil, versionname=nil, logoutputconf=nil, applicationname=nil, applicationdescription=nil, environmentname=nil, environmentid=nil, publicdomain=nil, enablepublicaccess=nil, currentinstances=nil, expectedinstances=nil, codinglanguage=nil, pkgname=nil, esenable=nil, esstrategy=nil, imagetag=nil, logenable=nil, minaliveinstances=nil, securitygroupids=nil, imagecommand=nil, imageargs=nil, useregistrydefaultconfig=nil, service=nil, settingconfs=nil, logconfs=nil, poststart=nil, prestop=nil, liveness=nil, readiness=nil, horizontalautoscaler=nil, cronhorizontalautoscaler=nil, zones=nil, lastdeploydate=nil, lastdeploysuccessdate=nil, nodeinfos=nil, imagetype=nil, enabletracing=nil, enabletracingreport=nil, repotype=nil, batchdeploystatus=nil, apminstanceid=nil, workloadinfo=nil, speedup=nil, startupprobe=nil, osflavour=nil, reposerver=nil, underdeploying=nil, enableprometheusconf=nil, stoppedmanually=nil, tcrinstanceid=nil, enablemetrics=nil)
5274
+ def initialize(versionid=nil, applicationid=nil, deploymode=nil, jdkversion=nil, description=nil, deployversion=nil, publishmode=nil, jvmopts=nil, initpodnum=nil, cpuspec=nil, memoryspec=nil, imgrepo=nil, imgname=nil, imgversion=nil, esinfo=nil, envconf=nil, storageconfs=nil, status=nil, vpc=nil, subnetid=nil, createdate=nil, modifydate=nil, storagemountconfs=nil, versionname=nil, logoutputconf=nil, applicationname=nil, applicationdescription=nil, environmentname=nil, environmentid=nil, publicdomain=nil, enablepublicaccess=nil, currentinstances=nil, expectedinstances=nil, codinglanguage=nil, pkgname=nil, esenable=nil, esstrategy=nil, imagetag=nil, logenable=nil, minaliveinstances=nil, securitygroupids=nil, imagecommand=nil, imageargs=nil, useregistrydefaultconfig=nil, service=nil, settingconfs=nil, logconfs=nil, poststart=nil, prestop=nil, liveness=nil, readiness=nil, horizontalautoscaler=nil, cronhorizontalautoscaler=nil, zones=nil, lastdeploydate=nil, lastdeploysuccessdate=nil, nodeinfos=nil, imagetype=nil, enabletracing=nil, enabletracingreport=nil, repotype=nil, batchdeploystatus=nil, apminstanceid=nil, workloadinfo=nil, speedup=nil, startupprobe=nil, osflavour=nil, reposerver=nil, underdeploying=nil, enableprometheusconf=nil, stoppedmanually=nil, tcrinstanceid=nil, enablemetrics=nil, appid=nil, subaccountuin=nil, uin=nil, region=nil, groupid=nil, enableregistry=nil, autoscalerlist=nil, modifier=nil, creator=nil, deploystrategyconf=nil, podlist=nil, confedited=nil, tags=nil)
5057
5275
  @VersionId = versionid
5058
5276
  @ApplicationId = applicationid
5059
5277
  @DeployMode = deploymode
@@ -5127,6 +5345,19 @@ module TencentCloud
5127
5345
  @StoppedManually = stoppedmanually
5128
5346
  @TcrInstanceId = tcrinstanceid
5129
5347
  @EnableMetrics = enablemetrics
5348
+ @AppId = appid
5349
+ @SubAccountUin = subaccountuin
5350
+ @Uin = uin
5351
+ @Region = region
5352
+ @GroupId = groupid
5353
+ @EnableRegistry = enableregistry
5354
+ @AutoscalerList = autoscalerlist
5355
+ @Modifier = modifier
5356
+ @Creator = creator
5357
+ @DeployStrategyConf = deploystrategyconf
5358
+ @PodList = podlist
5359
+ @ConfEdited = confedited
5360
+ @Tags = tags
5130
5361
  end
5131
5362
 
5132
5363
  def deserialize(params)
@@ -5276,6 +5507,39 @@ module TencentCloud
5276
5507
  @StoppedManually = params['StoppedManually']
5277
5508
  @TcrInstanceId = params['TcrInstanceId']
5278
5509
  @EnableMetrics = params['EnableMetrics']
5510
+ @AppId = params['AppId']
5511
+ @SubAccountUin = params['SubAccountUin']
5512
+ @Uin = params['Uin']
5513
+ @Region = params['Region']
5514
+ @GroupId = params['GroupId']
5515
+ @EnableRegistry = params['EnableRegistry']
5516
+ unless params['AutoscalerList'].nil?
5517
+ @AutoscalerList = []
5518
+ params['AutoscalerList'].each do |i|
5519
+ autoscaler_tmp = Autoscaler.new
5520
+ autoscaler_tmp.deserialize(i)
5521
+ @AutoscalerList << autoscaler_tmp
5522
+ end
5523
+ end
5524
+ @Modifier = params['Modifier']
5525
+ @Creator = params['Creator']
5526
+ unless params['DeployStrategyConf'].nil?
5527
+ @DeployStrategyConf = DeployStrategyConf.new
5528
+ @DeployStrategyConf.deserialize(params['DeployStrategyConf'])
5529
+ end
5530
+ unless params['PodList'].nil?
5531
+ @PodList = DescribeRunPodPage.new
5532
+ @PodList.deserialize(params['PodList'])
5533
+ end
5534
+ @ConfEdited = params['ConfEdited']
5535
+ unless params['Tags'].nil?
5536
+ @Tags = []
5537
+ params['Tags'].each do |i|
5538
+ tag_tmp = Tag.new
5539
+ tag_tmp.deserialize(i)
5540
+ @Tags << tag_tmp
5541
+ end
5542
+ end
5279
5543
  end
5280
5544
  end
5281
5545
 
@@ -5314,17 +5578,52 @@ module TencentCloud
5314
5578
  # @param ApplicationName: 应用名
5315
5579
  # 注意:此字段可能返回 null,表示取不到有效值。
5316
5580
  # @type ApplicationName: String
5581
+ # @param VersionName: 版本名称
5582
+ # 注意:此字段可能返回 null,表示取不到有效值。
5583
+ # @type VersionName: String
5584
+ # @param ReadyReplicas: Ready实例数
5585
+ # 注意:此字段可能返回 null,表示取不到有效值。
5586
+ # @type ReadyReplicas: Integer
5587
+ # @param Replicas: 实例数
5588
+ # 注意:此字段可能返回 null,表示取不到有效值。
5589
+ # @type Replicas: Integer
5590
+ # @param UpdatedReplicas: Updated实例数
5591
+ # 注意:此字段可能返回 null,表示取不到有效值。
5592
+ # @type UpdatedReplicas: Integer
5593
+ # @param UpdatedReadyReplicas: UpdatedReady实例数
5594
+ # 注意:此字段可能返回 null,表示取不到有效值。
5595
+ # @type UpdatedReadyReplicas: Integer
5596
+ # @param UpdateRevision: 更新版本
5597
+ # 注意:此字段可能返回 null,表示取不到有效值。
5598
+ # @type UpdateRevision: String
5599
+ # @param CurrentRevision: 当前版本
5600
+ # 注意:此字段可能返回 null,表示取不到有效值。
5601
+ # @type CurrentRevision: String
5317
5602
 
5318
- attr_accessor :ClusterId, :ApplicationName
5603
+ attr_accessor :ClusterId, :ApplicationName, :VersionName, :ReadyReplicas, :Replicas, :UpdatedReplicas, :UpdatedReadyReplicas, :UpdateRevision, :CurrentRevision
5319
5604
 
5320
- def initialize(clusterid=nil, applicationname=nil)
5605
+ def initialize(clusterid=nil, applicationname=nil, versionname=nil, readyreplicas=nil, replicas=nil, updatedreplicas=nil, updatedreadyreplicas=nil, updaterevision=nil, currentrevision=nil)
5321
5606
  @ClusterId = clusterid
5322
5607
  @ApplicationName = applicationname
5608
+ @VersionName = versionname
5609
+ @ReadyReplicas = readyreplicas
5610
+ @Replicas = replicas
5611
+ @UpdatedReplicas = updatedreplicas
5612
+ @UpdatedReadyReplicas = updatedreadyreplicas
5613
+ @UpdateRevision = updaterevision
5614
+ @CurrentRevision = currentrevision
5323
5615
  end
5324
5616
 
5325
5617
  def deserialize(params)
5326
5618
  @ClusterId = params['ClusterId']
5327
5619
  @ApplicationName = params['ApplicationName']
5620
+ @VersionName = params['VersionName']
5621
+ @ReadyReplicas = params['ReadyReplicas']
5622
+ @Replicas = params['Replicas']
5623
+ @UpdatedReplicas = params['UpdatedReplicas']
5624
+ @UpdatedReadyReplicas = params['UpdatedReadyReplicas']
5625
+ @UpdateRevision = params['UpdateRevision']
5626
+ @CurrentRevision = params['CurrentRevision']
5328
5627
  end
5329
5628
  end
5330
5629
 
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.433
4
+ version: 3.0.435
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-10-21 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common