tencentcloud-sdk-tke 3.0.1191 → 3.0.1193
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 +8 -3
- data/lib/v20220501/models.rb +10 -2
- 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: c88d3dcc0f313adb6de3dac01dc7a85ee6823363
|
|
4
|
+
data.tar.gz: 819d3adf325ae95641c449aa8d7fe58fa92923cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65151c4c2d754fce2a88ee722b2537bce58191745352dfc5091d971377f81188bccd00db8b2f61108660d02ffd4126669d9de9e48c4d117335301432f8021fe3
|
|
7
|
+
data.tar.gz: 89b1be508eaaa250aff239fa5407daa54ba6d37b93e4bb79b8f6c0fbf768784118272113d6b261205f54fa7639a2ec266da7079abf07103def54469175dddcb3
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1193
|
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
|
data/lib/v20220501/models.rb
CHANGED
|
@@ -3107,14 +3107,18 @@ module TencentCloud
|
|
|
3107
3107
|
# @type DataDisks: Array
|
|
3108
3108
|
# @param KeyIds: ssh公钥id数组
|
|
3109
3109
|
# @type KeyIds: Array
|
|
3110
|
+
# @param DeletePolicy: 节点移出策略,有Random(随机)、Newest(优先移出最新实例)、Oldest(优先移出最旧实例)三种可选,默认是Newest
|
|
3111
|
+
# @type DeletePolicy: String
|
|
3110
3112
|
# @param GPUConfigs: 节点池 GPU 配置
|
|
3111
3113
|
# @type GPUConfigs: Array
|
|
3114
|
+
# @param AutomationService: 原生节点池安装自动化助手开关状态
|
|
3115
|
+
# @type AutomationService: Boolean
|
|
3112
3116
|
# @param Password: 原生节点池密码
|
|
3113
3117
|
# @type Password: String
|
|
3114
3118
|
|
|
3115
|
-
attr_accessor :Scaling, :SubnetIds, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargeType, :InstanceChargePrepaid, :SystemDisk, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :InstanceTypes, :Replicas, :UpdateExistedNode, :DataDisks, :KeyIds, :GPUConfigs, :Password
|
|
3119
|
+
attr_accessor :Scaling, :SubnetIds, :SecurityGroupIds, :UpgradeSettings, :AutoRepair, :InstanceChargeType, :InstanceChargePrepaid, :SystemDisk, :Management, :HealthCheckPolicyName, :HostNamePattern, :KubeletArgs, :Lifecycle, :RuntimeRootDir, :EnableAutoscaling, :InstanceTypes, :Replicas, :UpdateExistedNode, :DataDisks, :KeyIds, :DeletePolicy, :GPUConfigs, :AutomationService, :Password
|
|
3116
3120
|
|
|
3117
|
-
def initialize(scaling=nil, subnetids=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargetype=nil, instancechargeprepaid=nil, systemdisk=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, instancetypes=nil, replicas=nil, updateexistednode=nil, datadisks=nil, keyids=nil, gpuconfigs=nil, password=nil)
|
|
3121
|
+
def initialize(scaling=nil, subnetids=nil, securitygroupids=nil, upgradesettings=nil, autorepair=nil, instancechargetype=nil, instancechargeprepaid=nil, systemdisk=nil, management=nil, healthcheckpolicyname=nil, hostnamepattern=nil, kubeletargs=nil, lifecycle=nil, runtimerootdir=nil, enableautoscaling=nil, instancetypes=nil, replicas=nil, updateexistednode=nil, datadisks=nil, keyids=nil, deletepolicy=nil, gpuconfigs=nil, automationservice=nil, password=nil)
|
|
3118
3122
|
@Scaling = scaling
|
|
3119
3123
|
@SubnetIds = subnetids
|
|
3120
3124
|
@SecurityGroupIds = securitygroupids
|
|
@@ -3135,7 +3139,9 @@ module TencentCloud
|
|
|
3135
3139
|
@UpdateExistedNode = updateexistednode
|
|
3136
3140
|
@DataDisks = datadisks
|
|
3137
3141
|
@KeyIds = keyids
|
|
3142
|
+
@DeletePolicy = deletepolicy
|
|
3138
3143
|
@GPUConfigs = gpuconfigs
|
|
3144
|
+
@AutomationService = automationservice
|
|
3139
3145
|
@Password = password
|
|
3140
3146
|
end
|
|
3141
3147
|
|
|
@@ -3185,6 +3191,7 @@ module TencentCloud
|
|
|
3185
3191
|
end
|
|
3186
3192
|
end
|
|
3187
3193
|
@KeyIds = params['KeyIds']
|
|
3194
|
+
@DeletePolicy = params['DeletePolicy']
|
|
3188
3195
|
unless params['GPUConfigs'].nil?
|
|
3189
3196
|
@GPUConfigs = []
|
|
3190
3197
|
params['GPUConfigs'].each do |i|
|
|
@@ -3193,6 +3200,7 @@ module TencentCloud
|
|
|
3193
3200
|
@GPUConfigs << gpuconfig_tmp
|
|
3194
3201
|
end
|
|
3195
3202
|
end
|
|
3203
|
+
@AutomationService = params['AutomationService']
|
|
3196
3204
|
@Password = params['Password']
|
|
3197
3205
|
end
|
|
3198
3206
|
end
|
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.1193
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|