tencentcloud-sdk-tcr 3.0.465 → 3.0.467

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190924/models.rb +16 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f6eea3f94dc8a29b746e563c8f0b55a985d698df
4
- data.tar.gz: 3768c4548f5910b97900c364cb084c8a27bd7f8d
3
+ metadata.gz: c9bc5c65a249e62631de21fec8f5042f6f9e7742
4
+ data.tar.gz: 65567b2cceb2093e67e82c35335e9e585743d7dc
5
5
  SHA512:
6
- metadata.gz: 06d6811a7888a9e6749260d06a9f9b93dbbd2ba1ebf06ceee35c0ea007f578ecf107c5705f777600e8b51ed6d1a9bc0b3c7f95c75d4408fa214fb567d26b2c00
7
- data.tar.gz: da0d69ba8a4192615d7312e7b6adf9b1573c2e8096f680ff7860095d15262057d413f2670f075812fe601519c3c3c9006ed018b183b62c48b45e152db0ef88cd
6
+ metadata.gz: 15a3dca23a4d2dd0ad83d7b55817733c4c815b5fbde7de93b9336995271e3e9d6a66efd6b2ae656ef334ab929685fcf1c05ab8b9fdd9dd0c3d82e10dc0aea8a5
7
+ data.tar.gz: b48768945441e65d992175abaf48d9f9f45c2617c421fc60d02da91cde015d41f897f42f32a5a41230882c4ef93749d7741881fd09af13d88889b86f38d72b40
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.465
1
+ 3.0.467
@@ -6280,37 +6280,39 @@ module TencentCloud
6280
6280
  class TagInfo < TencentCloud::Common::AbstractModel
6281
6281
  # @param TagName: Tag名称
6282
6282
  # @type TagName: String
6283
- # @param TagId: 镜像Id
6283
+ # @param TagId: 制品的 ID
6284
6284
  # @type TagId: String
6285
6285
  # @param ImageId: docker image 可以看到的id
6286
6286
  # @type ImageId: String
6287
6287
  # @param Size: 大小
6288
6288
  # @type Size: String
6289
- # @param CreationTime: 镜像的创建时间
6289
+ # @param CreationTime: 制品的创建时间
6290
6290
  # @type CreationTime: String
6291
- # @param DurationDays: 镜像创建至今时间长度
6291
+ # @param DurationDays: 制品创建至今时间长度
6292
6292
  # 注意:此字段可能返回 null,表示取不到有效值。
6293
6293
  # @type DurationDays: String
6294
- # @param Author: 镜像的作者
6294
+ # @param Author: 标注的制品作者
6295
6295
  # @type Author: String
6296
- # @param Architecture: 次镜像建议运行的系统架构
6296
+ # @param Architecture: 标注的制品平台
6297
6297
  # @type Architecture: String
6298
- # @param DockerVersion: 创建此镜像的docker版本
6298
+ # @param DockerVersion: 创建制品的 Docker 版本
6299
6299
  # @type DockerVersion: String
6300
- # @param OS: 此镜像建议运行系统
6300
+ # @param OS: 标注的制品操作系统
6301
6301
  # @type OS: String
6302
- # @param SizeByte: SizeByte
6302
+ # @param SizeByte: 制品大小
6303
6303
  # @type SizeByte: Integer
6304
- # @param Id: Id
6304
+ # @param Id: 序号
6305
6305
  # @type Id: Integer
6306
6306
  # @param UpdateTime: 数据更新时间
6307
6307
  # @type UpdateTime: String
6308
- # @param PushTime: 镜像更新时间
6308
+ # @param PushTime: 制品更新时间
6309
6309
  # @type PushTime: String
6310
+ # @param Kind: 制品类型
6311
+ # @type Kind: String
6310
6312
 
6311
- attr_accessor :TagName, :TagId, :ImageId, :Size, :CreationTime, :DurationDays, :Author, :Architecture, :DockerVersion, :OS, :SizeByte, :Id, :UpdateTime, :PushTime
6313
+ attr_accessor :TagName, :TagId, :ImageId, :Size, :CreationTime, :DurationDays, :Author, :Architecture, :DockerVersion, :OS, :SizeByte, :Id, :UpdateTime, :PushTime, :Kind
6312
6314
 
6313
- def initialize(tagname=nil, tagid=nil, imageid=nil, size=nil, creationtime=nil, durationdays=nil, author=nil, architecture=nil, dockerversion=nil, os=nil, sizebyte=nil, id=nil, updatetime=nil, pushtime=nil)
6315
+ def initialize(tagname=nil, tagid=nil, imageid=nil, size=nil, creationtime=nil, durationdays=nil, author=nil, architecture=nil, dockerversion=nil, os=nil, sizebyte=nil, id=nil, updatetime=nil, pushtime=nil, kind=nil)
6314
6316
  @TagName = tagname
6315
6317
  @TagId = tagid
6316
6318
  @ImageId = imageid
@@ -6325,6 +6327,7 @@ module TencentCloud
6325
6327
  @Id = id
6326
6328
  @UpdateTime = updatetime
6327
6329
  @PushTime = pushtime
6330
+ @Kind = kind
6328
6331
  end
6329
6332
 
6330
6333
  def deserialize(params)
@@ -6342,6 +6345,7 @@ module TencentCloud
6342
6345
  @Id = params['Id']
6343
6346
  @UpdateTime = params['UpdateTime']
6344
6347
  @PushTime = params['PushTime']
6348
+ @Kind = params['Kind']
6345
6349
  end
6346
6350
  end
6347
6351
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.465
4
+ version: 3.0.467
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-05 00:00:00.000000000 Z
11
+ date: 2022-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common