tencentcloud-sdk-tke 3.0.1191 → 3.0.1192
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/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: 45ad3a0b1eba2aec1fbc6f4f15111cf8dd14f86b
|
|
4
|
+
data.tar.gz: 7d37e2864c65c6d1e0a566250e6455898a9527ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b865db43187fdaf27060747bc91b3074f123357f29fc3c93db5bb4f25f62cf673a4d59711ab0ddabd40245dc24be75e5e69d91bac19cbb43a52126a77044667a
|
|
7
|
+
data.tar.gz: 1b6b16ac53dfe0f49fbdd681f34fb8e2acd34358c7a5ac947aec3840df2d4ebf937b61ed9980930b83a20ea2038e4a101433a56cb587f382d57f08f89defd166
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1192
|
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.1192
|
|
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-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|