tencentcloud-sdk-tke 3.0.1101 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180525/models.rb +54 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e9b0261533acb5a625913a74f8d52cadf3324f6e
4
- data.tar.gz: bc67d62c3528b4856ec26143b599933448a46a2d
3
+ metadata.gz: a134250bce64d37fcb09b68a6d28a2faff251b01
4
+ data.tar.gz: 90c231c454099981c08003f9b7a0499d1a330796
5
5
  SHA512:
6
- metadata.gz: ad481c2704215e94ec913aee72bf75062781a57abc04b2d860e8a2aedfcdd32245449e3df3c58117236f91155f30da87670e3dcf32ceba19b1b6ef5ed8cf9872
7
- data.tar.gz: e02b2c81eaa2d76a0874daaa35d702a152e617f9db6b1d925f9a495f59c6c8b6adf6612979e098f3cbfb115a60f6230036fb2eba61f9315805e142f5f2c9f300
6
+ metadata.gz: a026b019f1696fc7faf4c6fdfac2f884871b719b2a5d8f5a3b099bbdab206d9fe18477272e51246aca256167d0fad1865d097f5c1031f0c2ff65fd817852f12d
7
+ data.tar.gz: b8df672d3e5dd242c434c8fb479b18745ae992ed4fd031cd366ea974b4da9f8d23a60c7c4af1d77a1b4ee9404efe1740514a6351f036ba36e6ebd45ab8780ce7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1101
1
+ 3.0.1103
@@ -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
 
@@ -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.1101
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-14 00:00:00.000000000 Z
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