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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190924/models.rb +16 -12
- 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: c9bc5c65a249e62631de21fec8f5042f6f9e7742
|
4
|
+
data.tar.gz: 65567b2cceb2093e67e82c35335e9e585743d7dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15a3dca23a4d2dd0ad83d7b55817733c4c815b5fbde7de93b9336995271e3e9d6a66efd6b2ae656ef334ab929685fcf1c05ab8b9fdd9dd0c3d82e10dc0aea8a5
|
7
|
+
data.tar.gz: b48768945441e65d992175abaf48d9f9f45c2617c421fc60d02da91cde015d41f897f42f32a5a41230882c4ef93749d7741881fd09af13d88889b86f38d72b40
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.467
|
data/lib/v20190924/models.rb
CHANGED
@@ -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:
|
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:
|
6298
|
+
# @param DockerVersion: 创建制品的 Docker 版本
|
6299
6299
|
# @type DockerVersion: String
|
6300
|
-
# @param OS:
|
6300
|
+
# @param OS: 标注的制品操作系统
|
6301
6301
|
# @type OS: String
|
6302
|
-
# @param SizeByte:
|
6302
|
+
# @param SizeByte: 制品大小
|
6303
6303
|
# @type SizeByte: Integer
|
6304
|
-
# @param 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.
|
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-
|
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
|