tencentcloud-sdk-tcr 3.0.466 → 3.0.468
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/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: c1984c031abd8a7077bb24e46e5b45916b5d91e4
|
4
|
+
data.tar.gz: eaebf369f967b6fc42ed396527f22b08e78d571b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9777b8ea4e103bd9b126da662954a6ed5a85415f555794923f07065c9ed9080601f31b6c7678be0449c8a2c752a868e30733c6b5c4fabc0d1ad3d7fd64928df
|
7
|
+
data.tar.gz: ff0b9c870b0211e64363326bf428c7a6cb14e9e5c899922de90d2b4c25d87e61268db96079e46c19db8f16d5484f50ab68899a5666c83637fcc27a6542ea816e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.468
|
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.468
|
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-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|