tencentcloud-sdk-tke 3.0.1098 → 3.0.1103
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 +56 -8
- 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: a134250bce64d37fcb09b68a6d28a2faff251b01
|
4
|
+
data.tar.gz: 90c231c454099981c08003f9b7a0499d1a330796
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a026b019f1696fc7faf4c6fdfac2f884871b719b2a5d8f5a3b099bbdab206d9fe18477272e51246aca256167d0fad1865d097f5c1031f0c2ff65fd817852f12d
|
7
|
+
data.tar.gz: b8df672d3e5dd242c434c8fb479b18745ae992ed4fd031cd366ea974b4da9f8d23a60c7c4af1d77a1b4ee9404efe1740514a6351f036ba36e6ebd45ab8780ce7
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1103
|
data/lib/v20180525/models.rb
CHANGED
@@ -3143,10 +3143,12 @@ module TencentCloud
|
|
3143
3143
|
# @param ResolveConfig: 自定义制作镜像缓存过程中容器实例的宿主机上的 DNS。如:
|
3144
3144
|
# "nameserver 4.4.4.4\nnameserver 8.8.8.8"
|
3145
3145
|
# @type ResolveConfig: String
|
3146
|
+
# @param Tags: 腾讯云标签
|
3147
|
+
# @type Tags: Array
|
3146
3148
|
|
3147
|
-
attr_accessor :Images, :SubnetId, :VpcId, :ImageCacheName, :SecurityGroupIds, :ImageRegistryCredentials, :ExistedEipId, :AutoCreateEip, :AutoCreateEipAttribute, :ImageCacheSize, :RetentionDays, :RegistrySkipVerifyList, :RegistryHttpEndPointList, :ResolveConfig
|
3149
|
+
attr_accessor :Images, :SubnetId, :VpcId, :ImageCacheName, :SecurityGroupIds, :ImageRegistryCredentials, :ExistedEipId, :AutoCreateEip, :AutoCreateEipAttribute, :ImageCacheSize, :RetentionDays, :RegistrySkipVerifyList, :RegistryHttpEndPointList, :ResolveConfig, :Tags
|
3148
3150
|
|
3149
|
-
def initialize(images=nil, subnetid=nil, vpcid=nil, imagecachename=nil, securitygroupids=nil, imageregistrycredentials=nil, existedeipid=nil, autocreateeip=nil, autocreateeipattribute=nil, imagecachesize=nil, retentiondays=nil, registryskipverifylist=nil, registryhttpendpointlist=nil, resolveconfig=nil)
|
3151
|
+
def initialize(images=nil, subnetid=nil, vpcid=nil, imagecachename=nil, securitygroupids=nil, imageregistrycredentials=nil, existedeipid=nil, autocreateeip=nil, autocreateeipattribute=nil, imagecachesize=nil, retentiondays=nil, registryskipverifylist=nil, registryhttpendpointlist=nil, resolveconfig=nil, tags=nil)
|
3150
3152
|
@Images = images
|
3151
3153
|
@SubnetId = subnetid
|
3152
3154
|
@VpcId = vpcid
|
@@ -3161,6 +3163,7 @@ module TencentCloud
|
|
3161
3163
|
@RegistrySkipVerifyList = registryskipverifylist
|
3162
3164
|
@RegistryHttpEndPointList = registryhttpendpointlist
|
3163
3165
|
@ResolveConfig = resolveconfig
|
3166
|
+
@Tags = tags
|
3164
3167
|
end
|
3165
3168
|
|
3166
3169
|
def deserialize(params)
|
@@ -3188,6 +3191,14 @@ module TencentCloud
|
|
3188
3191
|
@RegistrySkipVerifyList = params['RegistrySkipVerifyList']
|
3189
3192
|
@RegistryHttpEndPointList = params['RegistryHttpEndPointList']
|
3190
3193
|
@ResolveConfig = params['ResolveConfig']
|
3194
|
+
unless params['Tags'].nil?
|
3195
|
+
@Tags = []
|
3196
|
+
params['Tags'].each do |i|
|
3197
|
+
tag_tmp = Tag.new
|
3198
|
+
tag_tmp.deserialize(i)
|
3199
|
+
@Tags << tag_tmp
|
3200
|
+
end
|
3201
|
+
end
|
3191
3202
|
end
|
3192
3203
|
end
|
3193
3204
|
|
@@ -12359,10 +12370,16 @@ module TencentCloud
|
|
12359
12370
|
# UpdateFailed:更新失败
|
12360
12371
|
# 只有状态为Ready时,才能正常使用镜像缓存
|
12361
12372
|
# @type Status: String
|
12373
|
+
# @param RetentionDays: 镜像缓存保留时间天数,过期将会自动清理,默认为0,永不过期。
|
12374
|
+
# @type RetentionDays: Integer
|
12375
|
+
# @param ImageRegistryCredentials: 镜像拉取凭证
|
12376
|
+
# @type ImageRegistryCredentials: Array
|
12377
|
+
# @param Tags: 腾讯云标签
|
12378
|
+
# @type Tags: Array
|
12362
12379
|
|
12363
|
-
attr_accessor :ImageCacheId, :ImageCacheName, :ImageCacheSize, :Images, :CreationTime, :ExpireDateTime, :Events, :LastMatchedTime, :SnapshotId, :Status
|
12380
|
+
attr_accessor :ImageCacheId, :ImageCacheName, :ImageCacheSize, :Images, :CreationTime, :ExpireDateTime, :Events, :LastMatchedTime, :SnapshotId, :Status, :RetentionDays, :ImageRegistryCredentials, :Tags
|
12364
12381
|
|
12365
|
-
def initialize(imagecacheid=nil, imagecachename=nil, imagecachesize=nil, images=nil, creationtime=nil, expiredatetime=nil, events=nil, lastmatchedtime=nil, snapshotid=nil, status=nil)
|
12382
|
+
def initialize(imagecacheid=nil, imagecachename=nil, imagecachesize=nil, images=nil, creationtime=nil, expiredatetime=nil, events=nil, lastmatchedtime=nil, snapshotid=nil, status=nil, retentiondays=nil, imageregistrycredentials=nil, tags=nil)
|
12366
12383
|
@ImageCacheId = imagecacheid
|
12367
12384
|
@ImageCacheName = imagecachename
|
12368
12385
|
@ImageCacheSize = imagecachesize
|
@@ -12373,6 +12390,9 @@ module TencentCloud
|
|
12373
12390
|
@LastMatchedTime = lastmatchedtime
|
12374
12391
|
@SnapshotId = snapshotid
|
12375
12392
|
@Status = status
|
12393
|
+
@RetentionDays = retentiondays
|
12394
|
+
@ImageRegistryCredentials = imageregistrycredentials
|
12395
|
+
@Tags = tags
|
12376
12396
|
end
|
12377
12397
|
|
12378
12398
|
def deserialize(params)
|
@@ -12393,6 +12413,23 @@ module TencentCloud
|
|
12393
12413
|
@LastMatchedTime = params['LastMatchedTime']
|
12394
12414
|
@SnapshotId = params['SnapshotId']
|
12395
12415
|
@Status = params['Status']
|
12416
|
+
@RetentionDays = params['RetentionDays']
|
12417
|
+
unless params['ImageRegistryCredentials'].nil?
|
12418
|
+
@ImageRegistryCredentials = []
|
12419
|
+
params['ImageRegistryCredentials'].each do |i|
|
12420
|
+
imageregistrycredential_tmp = ImageRegistryCredential.new
|
12421
|
+
imageregistrycredential_tmp.deserialize(i)
|
12422
|
+
@ImageRegistryCredentials << imageregistrycredential_tmp
|
12423
|
+
end
|
12424
|
+
end
|
12425
|
+
unless params['Tags'].nil?
|
12426
|
+
@Tags = []
|
12427
|
+
params['Tags'].each do |i|
|
12428
|
+
tag_tmp = Tag.new
|
12429
|
+
tag_tmp.deserialize(i)
|
12430
|
+
@Tags << tag_tmp
|
12431
|
+
end
|
12432
|
+
end
|
12396
12433
|
end
|
12397
12434
|
end
|
12398
12435
|
|
@@ -12679,10 +12716,10 @@ module TencentCloud
|
|
12679
12716
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12680
12717
|
# @type Taints: Array
|
12681
12718
|
# @param MountTarget: 数据盘挂载点, 默认不挂载数据盘. 已格式化的 ext3,ext4,xfs 文件系统的数据盘将直接挂载,其他文件系统或未格式化的数据盘将自动格式化为ext4 (tlinux系统格式化成xfs)并挂载,请注意备份数据! 无数据盘或有多块数据盘的云主机此设置不生效。
|
12682
|
-
#
|
12719
|
+
# 注意:多盘场景请使用下方的DataDisks数据结构,设置对应的云盘类型、云盘大小、挂载路径、是否格式化等信息。
|
12683
12720
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12684
12721
|
# @type MountTarget: String
|
12685
|
-
# @param DockerGraphPath: dockerd --graph
|
12722
|
+
# @param DockerGraphPath: dockerd --graph 指定值。若未指定此参数,将使用内置默认路径 /var/lib/docker 作为存储根目录。
|
12686
12723
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12687
12724
|
# @type DockerGraphPath: String
|
12688
12725
|
# @param UserScript: base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看, 如果要求节点需要在进行初始化完成后才可加入调度, 可配合 unschedulable 参数使用, 在 userScript 最后初始化完成后, 添加 kubectl uncordon nodename --kubeconfig=/root/.kube/config 命令使节点加入调度
|
@@ -18960,10 +18997,12 @@ module TencentCloud
|
|
18960
18997
|
# @type RetentionDays: Integer
|
18961
18998
|
# @param SecurityGroupIds: 安全组Id
|
18962
18999
|
# @type SecurityGroupIds: Array
|
19000
|
+
# @param Tags: 腾讯云标签
|
19001
|
+
# @type Tags: Array
|
18963
19002
|
|
18964
|
-
attr_accessor :ImageCacheId, :ImageCacheName, :ImageRegistryCredentials, :Images, :ImageCacheSize, :RetentionDays, :SecurityGroupIds
|
19003
|
+
attr_accessor :ImageCacheId, :ImageCacheName, :ImageRegistryCredentials, :Images, :ImageCacheSize, :RetentionDays, :SecurityGroupIds, :Tags
|
18965
19004
|
|
18966
|
-
def initialize(imagecacheid=nil, imagecachename=nil, imageregistrycredentials=nil, images=nil, imagecachesize=nil, retentiondays=nil, securitygroupids=nil)
|
19005
|
+
def initialize(imagecacheid=nil, imagecachename=nil, imageregistrycredentials=nil, images=nil, imagecachesize=nil, retentiondays=nil, securitygroupids=nil, tags=nil)
|
18967
19006
|
@ImageCacheId = imagecacheid
|
18968
19007
|
@ImageCacheName = imagecachename
|
18969
19008
|
@ImageRegistryCredentials = imageregistrycredentials
|
@@ -18971,6 +19010,7 @@ module TencentCloud
|
|
18971
19010
|
@ImageCacheSize = imagecachesize
|
18972
19011
|
@RetentionDays = retentiondays
|
18973
19012
|
@SecurityGroupIds = securitygroupids
|
19013
|
+
@Tags = tags
|
18974
19014
|
end
|
18975
19015
|
|
18976
19016
|
def deserialize(params)
|
@@ -18988,6 +19028,14 @@ module TencentCloud
|
|
18988
19028
|
@ImageCacheSize = params['ImageCacheSize']
|
18989
19029
|
@RetentionDays = params['RetentionDays']
|
18990
19030
|
@SecurityGroupIds = params['SecurityGroupIds']
|
19031
|
+
unless params['Tags'].nil?
|
19032
|
+
@Tags = []
|
19033
|
+
params['Tags'].each do |i|
|
19034
|
+
tag_tmp = Tag.new
|
19035
|
+
tag_tmp.deserialize(i)
|
19036
|
+
@Tags << tag_tmp
|
19037
|
+
end
|
19038
|
+
end
|
18991
19039
|
end
|
18992
19040
|
end
|
18993
19041
|
|
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.1103
|
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-07-
|
11
|
+
date: 2025-07-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|