tencentcloud-sdk-eis 1.0.241 → 1.0.242
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/v20210601/models.rb +25 -5
- 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: 763dd67f2b97089be7825c1d2ea098266d1ff826
|
4
|
+
data.tar.gz: 5bc0960ebd277f1ceb9e8a821829c7f1953cd864
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3be4c636fe44b64c11c251c973cb26a41aab98f5e605d20fb2f42ff3431e94d7bc3f58a54636df54bf755fa5415405a0aa0e72eca184c1698cd5a61c80acfbb2
|
7
|
+
data.tar.gz: 3e5b08e2a27c2f3f09048ffe74da33259deb783701e595c3a537ba503214c2b758a716e45066efc4ebeae19f1412b76ddab22c835d120443fa7e1efd4dbc8d6b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.242
|
data/lib/v20210601/models.rb
CHANGED
@@ -350,10 +350,12 @@ module TencentCloud
|
|
350
350
|
# @type CreatedAt: Integer
|
351
351
|
# @param UpdatedAt: 应用实例部署更新时间
|
352
352
|
# @type UpdatedAt: Integer
|
353
|
+
# @param ProjectType: 应用类型:0:NormalApp普通应用 1:TemplateApp模版应用 2:LightApp轻应用 3:MicroConnTemplate微连接模板 4:MicroConnApp微连接应用
|
354
|
+
# @type ProjectType: Integer
|
353
355
|
|
354
|
-
attr_accessor :GroupId, :GroupName, :ProjectId, :ProjectName, :InstanceId, :InstanceVersion, :InstanceCreatedAt, :Status, :CreatedAt, :UpdatedAt
|
356
|
+
attr_accessor :GroupId, :GroupName, :ProjectId, :ProjectName, :InstanceId, :InstanceVersion, :InstanceCreatedAt, :Status, :CreatedAt, :UpdatedAt, :ProjectType
|
355
357
|
|
356
|
-
def initialize(groupid=nil, groupname=nil, projectid=nil, projectname=nil, instanceid=nil, instanceversion=nil, instancecreatedat=nil, status=nil, createdat=nil, updatedat=nil)
|
358
|
+
def initialize(groupid=nil, groupname=nil, projectid=nil, projectname=nil, instanceid=nil, instanceversion=nil, instancecreatedat=nil, status=nil, createdat=nil, updatedat=nil, projecttype=nil)
|
357
359
|
@GroupId = groupid
|
358
360
|
@GroupName = groupname
|
359
361
|
@ProjectId = projectid
|
@@ -364,6 +366,7 @@ module TencentCloud
|
|
364
366
|
@Status = status
|
365
367
|
@CreatedAt = createdat
|
366
368
|
@UpdatedAt = updatedat
|
369
|
+
@ProjectType = projecttype
|
367
370
|
end
|
368
371
|
|
369
372
|
def deserialize(params)
|
@@ -377,6 +380,7 @@ module TencentCloud
|
|
377
380
|
@Status = params['Status']
|
378
381
|
@CreatedAt = params['CreatedAt']
|
379
382
|
@UpdatedAt = params['UpdatedAt']
|
383
|
+
@ProjectType = params['ProjectType']
|
380
384
|
end
|
381
385
|
end
|
382
386
|
|
@@ -404,10 +408,18 @@ module TencentCloud
|
|
404
408
|
# @type WorkerReplica: Integer
|
405
409
|
# @param RunningInstanceCount: 正在运行的应用实例数量
|
406
410
|
# @type RunningInstanceCount: Integer
|
407
|
-
|
408
|
-
|
411
|
+
# @param CpuUsed: 已使用cpu核数
|
412
|
+
# @type CpuUsed: Float
|
413
|
+
# @param CpuLimit: cpu核数上限
|
414
|
+
# @type CpuLimit: Float
|
415
|
+
# @param MemoryUsed: 已使用内存 MB
|
416
|
+
# @type MemoryUsed: Float
|
417
|
+
# @param MemoryLimit: 内存上限 MB
|
418
|
+
# @type MemoryLimit: Float
|
419
|
+
|
420
|
+
attr_accessor :RuntimeId, :Uin, :DisplayName, :Zone, :Type, :Status, :CreatedAt, :UpdatedAt, :WorkerSize, :WorkerReplica, :RunningInstanceCount, :CpuUsed, :CpuLimit, :MemoryUsed, :MemoryLimit
|
409
421
|
|
410
|
-
def initialize(runtimeid=nil, uin=nil, displayname=nil, zone=nil, type=nil, status=nil, createdat=nil, updatedat=nil, workersize=nil, workerreplica=nil, runninginstancecount=nil)
|
422
|
+
def initialize(runtimeid=nil, uin=nil, displayname=nil, zone=nil, type=nil, status=nil, createdat=nil, updatedat=nil, workersize=nil, workerreplica=nil, runninginstancecount=nil, cpuused=nil, cpulimit=nil, memoryused=nil, memorylimit=nil)
|
411
423
|
@RuntimeId = runtimeid
|
412
424
|
@Uin = uin
|
413
425
|
@DisplayName = displayname
|
@@ -419,6 +431,10 @@ module TencentCloud
|
|
419
431
|
@WorkerSize = workersize
|
420
432
|
@WorkerReplica = workerreplica
|
421
433
|
@RunningInstanceCount = runninginstancecount
|
434
|
+
@CpuUsed = cpuused
|
435
|
+
@CpuLimit = cpulimit
|
436
|
+
@MemoryUsed = memoryused
|
437
|
+
@MemoryLimit = memorylimit
|
422
438
|
end
|
423
439
|
|
424
440
|
def deserialize(params)
|
@@ -433,6 +449,10 @@ module TencentCloud
|
|
433
449
|
@WorkerSize = params['WorkerSize']
|
434
450
|
@WorkerReplica = params['WorkerReplica']
|
435
451
|
@RunningInstanceCount = params['RunningInstanceCount']
|
452
|
+
@CpuUsed = params['CpuUsed']
|
453
|
+
@CpuLimit = params['CpuLimit']
|
454
|
+
@MemoryUsed = params['MemoryUsed']
|
455
|
+
@MemoryLimit = params['MemoryLimit']
|
436
456
|
end
|
437
457
|
end
|
438
458
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-eis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.242
|
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-01-
|
11
|
+
date: 2022-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|