tencentcloud-sdk-tke 3.0.733 → 3.0.735
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 +60 -7
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b1121ded87a2d6a41141464d758348f1e702be7
|
4
|
+
data.tar.gz: 0d6d5d903b482335f68659648a6a727842f7b55a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e228bf0763b809d71ff29502f96d68543175af69e1e0c17a66960867a4460c2f655f65635690cc158dc1ebbb28eeafe38b1c226931a6e1a2b7a8c4fdcbe7054
|
7
|
+
data.tar.gz: a93053e119c2d4bfdd80a1767c1003cb00ab86803f9b242b0e83ba79373fb3ff13923c20bb205d4898b0e77aaf3d26cf4559292fd9a4dd2ec3e319e87ede5103
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.735
|
data/lib/v20180525/models.rb
CHANGED
@@ -321,6 +321,26 @@ module TencentCloud
|
|
321
321
|
end
|
322
322
|
end
|
323
323
|
|
324
|
+
# 注释
|
325
|
+
class AnnotationValue < TencentCloud::Common::AbstractModel
|
326
|
+
# @param Name: 注释键
|
327
|
+
# @type Name: String
|
328
|
+
# @param Value: 注释值
|
329
|
+
# @type Value: String
|
330
|
+
|
331
|
+
attr_accessor :Name, :Value
|
332
|
+
|
333
|
+
def initialize(name=nil, value=nil)
|
334
|
+
@Name = name
|
335
|
+
@Value = value
|
336
|
+
end
|
337
|
+
|
338
|
+
def deserialize(params)
|
339
|
+
@Name = params['Name']
|
340
|
+
@Value = params['Value']
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
324
344
|
# app所支持的chart
|
325
345
|
class AppChart < TencentCloud::Common::AbstractModel
|
326
346
|
# @param Name: chart名称
|
@@ -2076,7 +2096,7 @@ module TencentCloud
|
|
2076
2096
|
# @type AutoScalingGroupPara: String
|
2077
2097
|
# @param LaunchConfigurePara: LaunchConfigurePara 运行参数,参考 https://cloud.tencent.com/document/product/377/20447
|
2078
2098
|
# @type LaunchConfigurePara: String
|
2079
|
-
# @param InstanceAdvancedSettings: InstanceAdvancedSettings
|
2099
|
+
# @param InstanceAdvancedSettings: InstanceAdvancedSettings
|
2080
2100
|
# @type InstanceAdvancedSettings: :class:`Tencentcloud::Tke.v20180525.models.InstanceAdvancedSettings`
|
2081
2101
|
# @param EnableAutoscale: 是否启用自动伸缩
|
2082
2102
|
# @type EnableAutoscale: Boolean
|
@@ -2086,6 +2106,8 @@ module TencentCloud
|
|
2086
2106
|
# @type Labels: Array
|
2087
2107
|
# @param Taints: Taints互斥
|
2088
2108
|
# @type Taints: Array
|
2109
|
+
# @param Annotations: 节点Annotation 列表
|
2110
|
+
# @type Annotations: Array
|
2089
2111
|
# @param ContainerRuntime: 节点池纬度运行时类型及版本
|
2090
2112
|
# @type ContainerRuntime: String
|
2091
2113
|
# @param RuntimeVersion: 运行时版本
|
@@ -2099,9 +2121,9 @@ module TencentCloud
|
|
2099
2121
|
# @param DeletionProtection: 删除保护开关
|
2100
2122
|
# @type DeletionProtection: Boolean
|
2101
2123
|
|
2102
|
-
attr_accessor :ClusterId, :AutoScalingGroupPara, :LaunchConfigurePara, :InstanceAdvancedSettings, :EnableAutoscale, :Name, :Labels, :Taints, :ContainerRuntime, :RuntimeVersion, :NodePoolOs, :OsCustomizeType, :Tags, :DeletionProtection
|
2124
|
+
attr_accessor :ClusterId, :AutoScalingGroupPara, :LaunchConfigurePara, :InstanceAdvancedSettings, :EnableAutoscale, :Name, :Labels, :Taints, :Annotations, :ContainerRuntime, :RuntimeVersion, :NodePoolOs, :OsCustomizeType, :Tags, :DeletionProtection
|
2103
2125
|
|
2104
|
-
def initialize(clusterid=nil, autoscalinggrouppara=nil, launchconfigurepara=nil, instanceadvancedsettings=nil, enableautoscale=nil, name=nil, labels=nil, taints=nil, containerruntime=nil, runtimeversion=nil, nodepoolos=nil, oscustomizetype=nil, tags=nil, deletionprotection=nil)
|
2126
|
+
def initialize(clusterid=nil, autoscalinggrouppara=nil, launchconfigurepara=nil, instanceadvancedsettings=nil, enableautoscale=nil, name=nil, labels=nil, taints=nil, annotations=nil, containerruntime=nil, runtimeversion=nil, nodepoolos=nil, oscustomizetype=nil, tags=nil, deletionprotection=nil)
|
2105
2127
|
@ClusterId = clusterid
|
2106
2128
|
@AutoScalingGroupPara = autoscalinggrouppara
|
2107
2129
|
@LaunchConfigurePara = launchconfigurepara
|
@@ -2110,6 +2132,7 @@ module TencentCloud
|
|
2110
2132
|
@Name = name
|
2111
2133
|
@Labels = labels
|
2112
2134
|
@Taints = taints
|
2135
|
+
@Annotations = annotations
|
2113
2136
|
@ContainerRuntime = containerruntime
|
2114
2137
|
@RuntimeVersion = runtimeversion
|
2115
2138
|
@NodePoolOs = nodepoolos
|
@@ -2144,6 +2167,14 @@ module TencentCloud
|
|
2144
2167
|
@Taints << taint_tmp
|
2145
2168
|
end
|
2146
2169
|
end
|
2170
|
+
unless params['Annotations'].nil?
|
2171
|
+
@Annotations = []
|
2172
|
+
params['Annotations'].each do |i|
|
2173
|
+
annotationvalue_tmp = AnnotationValue.new
|
2174
|
+
annotationvalue_tmp.deserialize(i)
|
2175
|
+
@Annotations << annotationvalue_tmp
|
2176
|
+
end
|
2177
|
+
end
|
2147
2178
|
@ContainerRuntime = params['ContainerRuntime']
|
2148
2179
|
@RuntimeVersion = params['RuntimeVersion']
|
2149
2180
|
@NodePoolOs = params['NodePoolOs']
|
@@ -13591,6 +13622,8 @@ module TencentCloud
|
|
13591
13622
|
# @type Labels: Array
|
13592
13623
|
# @param Taints: 污点
|
13593
13624
|
# @type Taints: Array
|
13625
|
+
# @param Annotations: 节点 Annotation 列表
|
13626
|
+
# @type Annotations: Array
|
13594
13627
|
# @param EnableAutoscale: 是否开启伸缩
|
13595
13628
|
# @type EnableAutoscale: Boolean
|
13596
13629
|
# @param OsName: 操作系统名称
|
@@ -13616,9 +13649,9 @@ module TencentCloud
|
|
13616
13649
|
# @param PreStartUserScript: base64编码后的自定义脚本
|
13617
13650
|
# @type PreStartUserScript: String
|
13618
13651
|
|
13619
|
-
attr_accessor :ClusterId, :NodePoolId, :Name, :MaxNodesNum, :MinNodesNum, :Labels, :Taints, :EnableAutoscale, :OsName, :OsCustomizeType, :GPUArgs, :UserScript, :IgnoreExistedNode, :ExtraArgs, :Tags, :Unschedulable, :DeletionProtection, :DockerGraphPath, :PreStartUserScript
|
13652
|
+
attr_accessor :ClusterId, :NodePoolId, :Name, :MaxNodesNum, :MinNodesNum, :Labels, :Taints, :Annotations, :EnableAutoscale, :OsName, :OsCustomizeType, :GPUArgs, :UserScript, :IgnoreExistedNode, :ExtraArgs, :Tags, :Unschedulable, :DeletionProtection, :DockerGraphPath, :PreStartUserScript
|
13620
13653
|
|
13621
|
-
def initialize(clusterid=nil, nodepoolid=nil, name=nil, maxnodesnum=nil, minnodesnum=nil, labels=nil, taints=nil, enableautoscale=nil, osname=nil, oscustomizetype=nil, gpuargs=nil, userscript=nil, ignoreexistednode=nil, extraargs=nil, tags=nil, unschedulable=nil, deletionprotection=nil, dockergraphpath=nil, prestartuserscript=nil)
|
13654
|
+
def initialize(clusterid=nil, nodepoolid=nil, name=nil, maxnodesnum=nil, minnodesnum=nil, labels=nil, taints=nil, annotations=nil, enableautoscale=nil, osname=nil, oscustomizetype=nil, gpuargs=nil, userscript=nil, ignoreexistednode=nil, extraargs=nil, tags=nil, unschedulable=nil, deletionprotection=nil, dockergraphpath=nil, prestartuserscript=nil)
|
13622
13655
|
@ClusterId = clusterid
|
13623
13656
|
@NodePoolId = nodepoolid
|
13624
13657
|
@Name = name
|
@@ -13626,6 +13659,7 @@ module TencentCloud
|
|
13626
13659
|
@MinNodesNum = minnodesnum
|
13627
13660
|
@Labels = labels
|
13628
13661
|
@Taints = taints
|
13662
|
+
@Annotations = annotations
|
13629
13663
|
@EnableAutoscale = enableautoscale
|
13630
13664
|
@OsName = osname
|
13631
13665
|
@OsCustomizeType = oscustomizetype
|
@@ -13662,6 +13696,14 @@ module TencentCloud
|
|
13662
13696
|
@Taints << taint_tmp
|
13663
13697
|
end
|
13664
13698
|
end
|
13699
|
+
unless params['Annotations'].nil?
|
13700
|
+
@Annotations = []
|
13701
|
+
params['Annotations'].each do |i|
|
13702
|
+
annotationvalue_tmp = AnnotationValue.new
|
13703
|
+
annotationvalue_tmp.deserialize(i)
|
13704
|
+
@Annotations << annotationvalue_tmp
|
13705
|
+
end
|
13706
|
+
end
|
13665
13707
|
@EnableAutoscale = params['EnableAutoscale']
|
13666
13708
|
@OsName = params['OsName']
|
13667
13709
|
@OsCustomizeType = params['OsCustomizeType']
|
@@ -14324,6 +14366,8 @@ module TencentCloud
|
|
14324
14366
|
# @type Labels: Array
|
14325
14367
|
# @param Taints: Taints 污点标记
|
14326
14368
|
# @type Taints: Array
|
14369
|
+
# @param Annotations: 节点 Annotation 列表
|
14370
|
+
# @type Annotations: Array
|
14327
14371
|
# @param NodeCountSummary: NodeCountSummary 节点列表
|
14328
14372
|
# @type NodeCountSummary: :class:`Tencentcloud::Tke.v20180525.models.NodeCountSummary`
|
14329
14373
|
# @param AutoscalingGroupStatus: 状态信息
|
@@ -14378,9 +14422,9 @@ module TencentCloud
|
|
14378
14422
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
14379
14423
|
# @type PreStartUserScript: String
|
14380
14424
|
|
14381
|
-
attr_accessor :NodePoolId, :Name, :ClusterInstanceId, :LifeState, :LaunchConfigurationId, :AutoscalingGroupId, :Labels, :Taints, :NodeCountSummary, :AutoscalingGroupStatus, :MaxNodesNum, :MinNodesNum, :DesiredNodesNum, :NodePoolOs, :OsCustomizeType, :ImageId, :DesiredPodNum, :UserScript, :Tags, :DeletionProtection, :ExtraArgs, :GPUArgs, :DockerGraphPath, :DataDisks, :Unschedulable, :PreStartUserScript
|
14425
|
+
attr_accessor :NodePoolId, :Name, :ClusterInstanceId, :LifeState, :LaunchConfigurationId, :AutoscalingGroupId, :Labels, :Taints, :Annotations, :NodeCountSummary, :AutoscalingGroupStatus, :MaxNodesNum, :MinNodesNum, :DesiredNodesNum, :NodePoolOs, :OsCustomizeType, :ImageId, :DesiredPodNum, :UserScript, :Tags, :DeletionProtection, :ExtraArgs, :GPUArgs, :DockerGraphPath, :DataDisks, :Unschedulable, :PreStartUserScript
|
14382
14426
|
|
14383
|
-
def initialize(nodepoolid=nil, name=nil, clusterinstanceid=nil, lifestate=nil, launchconfigurationid=nil, autoscalinggroupid=nil, labels=nil, taints=nil, nodecountsummary=nil, autoscalinggroupstatus=nil, maxnodesnum=nil, minnodesnum=nil, desirednodesnum=nil, nodepoolos=nil, oscustomizetype=nil, imageid=nil, desiredpodnum=nil, userscript=nil, tags=nil, deletionprotection=nil, extraargs=nil, gpuargs=nil, dockergraphpath=nil, datadisks=nil, unschedulable=nil, prestartuserscript=nil)
|
14427
|
+
def initialize(nodepoolid=nil, name=nil, clusterinstanceid=nil, lifestate=nil, launchconfigurationid=nil, autoscalinggroupid=nil, labels=nil, taints=nil, annotations=nil, nodecountsummary=nil, autoscalinggroupstatus=nil, maxnodesnum=nil, minnodesnum=nil, desirednodesnum=nil, nodepoolos=nil, oscustomizetype=nil, imageid=nil, desiredpodnum=nil, userscript=nil, tags=nil, deletionprotection=nil, extraargs=nil, gpuargs=nil, dockergraphpath=nil, datadisks=nil, unschedulable=nil, prestartuserscript=nil)
|
14384
14428
|
@NodePoolId = nodepoolid
|
14385
14429
|
@Name = name
|
14386
14430
|
@ClusterInstanceId = clusterinstanceid
|
@@ -14389,6 +14433,7 @@ module TencentCloud
|
|
14389
14433
|
@AutoscalingGroupId = autoscalinggroupid
|
14390
14434
|
@Labels = labels
|
14391
14435
|
@Taints = taints
|
14436
|
+
@Annotations = annotations
|
14392
14437
|
@NodeCountSummary = nodecountsummary
|
14393
14438
|
@AutoscalingGroupStatus = autoscalinggroupstatus
|
14394
14439
|
@MaxNodesNum = maxnodesnum
|
@@ -14432,6 +14477,14 @@ module TencentCloud
|
|
14432
14477
|
@Taints << taint_tmp
|
14433
14478
|
end
|
14434
14479
|
end
|
14480
|
+
unless params['Annotations'].nil?
|
14481
|
+
@Annotations = []
|
14482
|
+
params['Annotations'].each do |i|
|
14483
|
+
annotationvalue_tmp = AnnotationValue.new
|
14484
|
+
annotationvalue_tmp.deserialize(i)
|
14485
|
+
@Annotations << annotationvalue_tmp
|
14486
|
+
end
|
14487
|
+
end
|
14435
14488
|
unless params['NodeCountSummary'].nil?
|
14436
14489
|
@NodeCountSummary = NodeCountSummary.new
|
14437
14490
|
@NodeCountSummary.deserialize(params['NodeCountSummary'])
|
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.735
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-tke.rb
|
37
36
|
- lib/v20180525/client.rb
|
38
37
|
- lib/v20180525/models.rb
|
38
|
+
- lib/tencentcloud-sdk-tke.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|