tencentcloud-sdk-eis 1.0.333 → 1.0.334
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 +38 -6
- 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: 6e69ea5b73decb27095a36bbe4f1ac088794c5d0
|
4
|
+
data.tar.gz: 3b4fb0017e82ac55813d973aa05d3311e0b9e55e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f398c0e77c4509935c831133e0b385aa65c55acb185781e0207c44a42fbb668281244de352196ec90c32b3acd208f725fdce5d90fa9f10713820666351ac194
|
7
|
+
data.tar.gz: 88fb14d88a12edb4f9c4dbbc096eabf67a7a865203dd10ff825a02c415d45de39adf3c9b8840dc54d90266a59116799f2b24223b778d41fc4c9425f3ec918018
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.334
|
data/lib/v20210601/models.rb
CHANGED
@@ -31,16 +31,22 @@ module TencentCloud
|
|
31
31
|
# @type Area: String
|
32
32
|
# @param Addr: 运行时应用listener地址后缀
|
33
33
|
# @type Addr: String
|
34
|
+
# @param Status: 运行时状态
|
35
|
+
# @type Status: Integer
|
36
|
+
# @param ExpiredAt: 运行时过期时间
|
37
|
+
# @type ExpiredAt: Integer
|
34
38
|
|
35
|
-
attr_accessor :RuntimeId, :DisplayName, :Type, :Zone, :Area, :Addr
|
39
|
+
attr_accessor :RuntimeId, :DisplayName, :Type, :Zone, :Area, :Addr, :Status, :ExpiredAt
|
36
40
|
|
37
|
-
def initialize(runtimeid=nil, displayname=nil, type=nil, zone=nil, area=nil, addr=nil)
|
41
|
+
def initialize(runtimeid=nil, displayname=nil, type=nil, zone=nil, area=nil, addr=nil, status=nil, expiredat=nil)
|
38
42
|
@RuntimeId = runtimeid
|
39
43
|
@DisplayName = displayname
|
40
44
|
@Type = type
|
41
45
|
@Zone = zone
|
42
46
|
@Area = area
|
43
47
|
@Addr = addr
|
48
|
+
@Status = status
|
49
|
+
@ExpiredAt = expiredat
|
44
50
|
end
|
45
51
|
|
46
52
|
def deserialize(params)
|
@@ -50,6 +56,8 @@ module TencentCloud
|
|
50
56
|
@Zone = params['Zone']
|
51
57
|
@Area = params['Area']
|
52
58
|
@Addr = params['Addr']
|
59
|
+
@Status = params['Status']
|
60
|
+
@ExpiredAt = params['ExpiredAt']
|
53
61
|
end
|
54
62
|
end
|
55
63
|
|
@@ -215,16 +223,19 @@ module TencentCloud
|
|
215
223
|
# @type Sort: String
|
216
224
|
# @param Zone: 运行时地域
|
217
225
|
# @type Zone: String
|
226
|
+
# @param ApiVersion: 1:3.0版本新控制台传1;否则传0
|
227
|
+
# @type ApiVersion: Integer
|
218
228
|
|
219
|
-
attr_accessor :RuntimeId, :Limit, :Offset, :SortType, :Sort, :Zone
|
229
|
+
attr_accessor :RuntimeId, :Limit, :Offset, :SortType, :Sort, :Zone, :ApiVersion
|
220
230
|
|
221
|
-
def initialize(runtimeid=nil, limit=nil, offset=nil, sorttype=nil, sort=nil, zone=nil)
|
231
|
+
def initialize(runtimeid=nil, limit=nil, offset=nil, sorttype=nil, sort=nil, zone=nil, apiversion=nil)
|
222
232
|
@RuntimeId = runtimeid
|
223
233
|
@Limit = limit
|
224
234
|
@Offset = offset
|
225
235
|
@SortType = sorttype
|
226
236
|
@Sort = sort
|
227
237
|
@Zone = zone
|
238
|
+
@ApiVersion = apiversion
|
228
239
|
end
|
229
240
|
|
230
241
|
def deserialize(params)
|
@@ -234,6 +245,7 @@ module TencentCloud
|
|
234
245
|
@SortType = params['SortType']
|
235
246
|
@Sort = params['Sort']
|
236
247
|
@Zone = params['Zone']
|
248
|
+
@ApiVersion = params['ApiVersion']
|
237
249
|
end
|
238
250
|
end
|
239
251
|
|
@@ -416,10 +428,22 @@ module TencentCloud
|
|
416
428
|
# @type MemoryUsed: Float
|
417
429
|
# @param MemoryLimit: 内存上限 MB
|
418
430
|
# @type MemoryLimit: Float
|
431
|
+
# @param ExpiredAt: 运行时过期时间
|
432
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
433
|
+
# @type ExpiredAt: Integer
|
434
|
+
# @param ChargeType: 收费类型:0:缺省,1:通过订单页自助下单(支持续费/升配等操作)
|
435
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
436
|
+
# @type ChargeType: Integer
|
437
|
+
# @param ResourceLimitType: 资源限制类型:0:无限制,1:有限制
|
438
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
439
|
+
# @type ResourceLimitType: Integer
|
440
|
+
# @param AutoRenewal: 是否开启自动续费
|
441
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
442
|
+
# @type AutoRenewal: Boolean
|
419
443
|
|
420
|
-
attr_accessor :RuntimeId, :Uin, :DisplayName, :Zone, :Type, :Status, :CreatedAt, :UpdatedAt, :WorkerSize, :WorkerReplica, :RunningInstanceCount, :CpuUsed, :CpuLimit, :MemoryUsed, :MemoryLimit
|
444
|
+
attr_accessor :RuntimeId, :Uin, :DisplayName, :Zone, :Type, :Status, :CreatedAt, :UpdatedAt, :WorkerSize, :WorkerReplica, :RunningInstanceCount, :CpuUsed, :CpuLimit, :MemoryUsed, :MemoryLimit, :ExpiredAt, :ChargeType, :ResourceLimitType, :AutoRenewal
|
421
445
|
|
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)
|
446
|
+
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, expiredat=nil, chargetype=nil, resourcelimittype=nil, autorenewal=nil)
|
423
447
|
@RuntimeId = runtimeid
|
424
448
|
@Uin = uin
|
425
449
|
@DisplayName = displayname
|
@@ -435,6 +459,10 @@ module TencentCloud
|
|
435
459
|
@CpuLimit = cpulimit
|
436
460
|
@MemoryUsed = memoryused
|
437
461
|
@MemoryLimit = memorylimit
|
462
|
+
@ExpiredAt = expiredat
|
463
|
+
@ChargeType = chargetype
|
464
|
+
@ResourceLimitType = resourcelimittype
|
465
|
+
@AutoRenewal = autorenewal
|
438
466
|
end
|
439
467
|
|
440
468
|
def deserialize(params)
|
@@ -453,6 +481,10 @@ module TencentCloud
|
|
453
481
|
@CpuLimit = params['CpuLimit']
|
454
482
|
@MemoryUsed = params['MemoryUsed']
|
455
483
|
@MemoryLimit = params['MemoryLimit']
|
484
|
+
@ExpiredAt = params['ExpiredAt']
|
485
|
+
@ChargeType = params['ChargeType']
|
486
|
+
@ResourceLimitType = params['ResourceLimitType']
|
487
|
+
@AutoRenewal = params['AutoRenewal']
|
456
488
|
end
|
457
489
|
end
|
458
490
|
|
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.334
|
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-06-
|
11
|
+
date: 2022-06-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|