tencentcloud-sdk-tke 3.0.1192 → 3.0.1195
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/v20180525/models.rb +14 -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: 350951c377bb38a920814e173512ee5d841e0570
|
|
4
|
+
data.tar.gz: 361f76413896600bf6da301fe594c37b11b5b13a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f1809f32eb9f156ffe49ff74238bac907fbd11426d99cfb0690dff0b635faaeb95962123370c10bdf193f5585105bc55e68b56fb47ee8fdd076029fc944e7d5
|
|
7
|
+
data.tar.gz: cf8a6711d7dc2530f9688129f61e85498bb93e2f22b7701ffc0935d79caad8e8de001156aaa5abc17a55cc8e34b185b26861795f13f5668adfabeeafd971a0e2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1195
|
data/lib/v20180525/models.rb
CHANGED
|
@@ -3394,16 +3394,20 @@ module TencentCloud
|
|
|
3394
3394
|
|
|
3395
3395
|
# CreateGlobalMaintenanceWindowAndExclusions返回参数结构体
|
|
3396
3396
|
class CreateGlobalMaintenanceWindowAndExclusionsResponse < TencentCloud::Common::AbstractModel
|
|
3397
|
+
# @param ID: 维护窗口ID
|
|
3398
|
+
# @type ID: Integer
|
|
3397
3399
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3398
3400
|
# @type RequestId: String
|
|
3399
3401
|
|
|
3400
|
-
attr_accessor :RequestId
|
|
3402
|
+
attr_accessor :ID, :RequestId
|
|
3401
3403
|
|
|
3402
|
-
def initialize(requestid=nil)
|
|
3404
|
+
def initialize(id=nil, requestid=nil)
|
|
3405
|
+
@ID = id
|
|
3403
3406
|
@RequestId = requestid
|
|
3404
3407
|
end
|
|
3405
3408
|
|
|
3406
3409
|
def deserialize(params)
|
|
3410
|
+
@ID = params['ID']
|
|
3407
3411
|
@RequestId = params['RequestId']
|
|
3408
3412
|
end
|
|
3409
3413
|
end
|
|
@@ -8512,7 +8516,8 @@ module TencentCloud
|
|
|
8512
8516
|
# @type Offset: Integer
|
|
8513
8517
|
# @param Limit: 最大输出条目数,默认为20
|
|
8514
8518
|
# @type Limit: Integer
|
|
8515
|
-
# @param Filters:
|
|
8519
|
+
# @param Filters: 筛选项,支持按照以下字段过滤:
|
|
8520
|
+
# - "ID":维护窗口ID,如:10
|
|
8516
8521
|
# @type Filters: Array
|
|
8517
8522
|
|
|
8518
8523
|
attr_accessor :Offset, :Limit, :Filters
|
|
@@ -19887,10 +19892,12 @@ module TencentCloud
|
|
|
19887
19892
|
# @type ResourceType: String
|
|
19888
19893
|
# @param DisasterRecoverGroupId: 置放群组 ID,QuotaType为 exact 时有效,表示购买的精确配额需满足置放群组。可通过 [DescribeDisasterRecoverGroups](https://cloud.tencent.com/document/product/213/17810) 接口返回值中的DisasterRecoverGroupId获取。
|
|
19889
19894
|
# @type DisasterRecoverGroupId: String
|
|
19895
|
+
# @param PriceType: 定价类型
|
|
19896
|
+
# @type PriceType: String
|
|
19890
19897
|
|
|
19891
|
-
attr_accessor :NodeName, :Num, :Cpu, :Memory, :Gpu, :QuotaType, :ChargeType, :ResourceType, :DisasterRecoverGroupId
|
|
19898
|
+
attr_accessor :NodeName, :Num, :Cpu, :Memory, :Gpu, :QuotaType, :ChargeType, :ResourceType, :DisasterRecoverGroupId, :PriceType
|
|
19892
19899
|
|
|
19893
|
-
def initialize(nodename=nil, num=nil, cpu=nil, memory=nil, gpu=nil, quotatype=nil, chargetype=nil, resourcetype=nil, disasterrecovergroupid=nil)
|
|
19900
|
+
def initialize(nodename=nil, num=nil, cpu=nil, memory=nil, gpu=nil, quotatype=nil, chargetype=nil, resourcetype=nil, disasterrecovergroupid=nil, pricetype=nil)
|
|
19894
19901
|
@NodeName = nodename
|
|
19895
19902
|
@Num = num
|
|
19896
19903
|
@Cpu = cpu
|
|
@@ -19900,6 +19907,7 @@ module TencentCloud
|
|
|
19900
19907
|
@ChargeType = chargetype
|
|
19901
19908
|
@ResourceType = resourcetype
|
|
19902
19909
|
@DisasterRecoverGroupId = disasterrecovergroupid
|
|
19910
|
+
@PriceType = pricetype
|
|
19903
19911
|
end
|
|
19904
19912
|
|
|
19905
19913
|
def deserialize(params)
|
|
@@ -19912,6 +19920,7 @@ module TencentCloud
|
|
|
19912
19920
|
@ChargeType = params['ChargeType']
|
|
19913
19921
|
@ResourceType = params['ResourceType']
|
|
19914
19922
|
@DisasterRecoverGroupId = params['DisasterRecoverGroupId']
|
|
19923
|
+
@PriceType = params['PriceType']
|
|
19915
19924
|
end
|
|
19916
19925
|
end
|
|
19917
19926
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1195
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|