tencentcloud-sdk-tcr 3.0.386 → 3.0.387

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 +59 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c4d99f4ea27127852cc2761752d92902615930f
4
- data.tar.gz: 8bf357aa692b305eafebb54c4fd2a62575b29876
3
+ metadata.gz: dd74c9e77e1c22674c01469776bc13852d683d44
4
+ data.tar.gz: 8b7ccd2fab3f0daed2694ad2b73d5a5cfeb91b8f
5
5
  SHA512:
6
- metadata.gz: 4f3fa4a4b92f1d99835664353652e290011317d1e39a9f3d638fa81cb27274da1e2fc1b34180dc5f12948177686dad3e65f9cf1a5cba3ab5d2cda2cc50eea102
7
- data.tar.gz: c6d834f3a10950208611ad4847ef612b8dad7902989a7459cd833adc1423c9ec2972c2a309d1c8fe5ece7468e47113251a21965a8381fd64caefbde2402b0c99
6
+ metadata.gz: 26ceb355cd2e56a7d5116080b673581fb4ad38d308d40a96f3fe3194fd825a9b41f87290cb2ddf2d09636f94e4c318d8d97b84591014bcea9e975212cc8a7878
7
+ data.tar.gz: e349dbe8e74decb24fc479d281bd9b7005c8c5a9d795ce85d38b338be609622e7048a7acbc78741f3118eb818e43e005b0a37c0e460ed45ff282d22d11be1f32
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.386
1
+ 3.0.387
@@ -2219,16 +2219,19 @@ module TencentCloud
2219
2219
  # @type Limit: Integer
2220
2220
  # @param Offset: 页数,默认值为1
2221
2221
  # @type Offset: Integer
2222
+ # @param Digest: 指定镜像 Digest 进行查找
2223
+ # @type Digest: String
2222
2224
 
2223
- attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset
2225
+ attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset, :Digest
2224
2226
 
2225
- def initialize(registryid=nil, namespacename=nil, repositoryname=nil, imageversion=nil, limit=nil, offset=nil)
2227
+ def initialize(registryid=nil, namespacename=nil, repositoryname=nil, imageversion=nil, limit=nil, offset=nil, digest=nil)
2226
2228
  @RegistryId = registryid
2227
2229
  @NamespaceName = namespacename
2228
2230
  @RepositoryName = repositoryname
2229
2231
  @ImageVersion = imageversion
2230
2232
  @Limit = limit
2231
2233
  @Offset = offset
2234
+ @Digest = digest
2232
2235
  end
2233
2236
 
2234
2237
  def deserialize(params)
@@ -2238,6 +2241,7 @@ module TencentCloud
2238
2241
  @ImageVersion = params['ImageVersion']
2239
2242
  @Limit = params['Limit']
2240
2243
  @Offset = params['Offset']
2244
+ @Digest = params['Digest']
2241
2245
  end
2242
2246
  end
2243
2247
 
@@ -2656,16 +2660,19 @@ module TencentCloud
2656
2660
  # @type All: Boolean
2657
2661
  # @param Filters: 过滤条件
2658
2662
  # @type Filters: Array
2663
+ # @param KmsSignPolicy: 仅查询启用了 KMS 镜像签名的空间
2664
+ # @type KmsSignPolicy: Boolean
2659
2665
 
2660
- attr_accessor :RegistryId, :NamespaceName, :Limit, :Offset, :All, :Filters
2666
+ attr_accessor :RegistryId, :NamespaceName, :Limit, :Offset, :All, :Filters, :KmsSignPolicy
2661
2667
 
2662
- def initialize(registryid=nil, namespacename=nil, limit=nil, offset=nil, all=nil, filters=nil)
2668
+ def initialize(registryid=nil, namespacename=nil, limit=nil, offset=nil, all=nil, filters=nil, kmssignpolicy=nil)
2663
2669
  @RegistryId = registryid
2664
2670
  @NamespaceName = namespacename
2665
2671
  @Limit = limit
2666
2672
  @Offset = offset
2667
2673
  @All = all
2668
2674
  @Filters = filters
2675
+ @KmsSignPolicy = kmssignpolicy
2669
2676
  end
2670
2677
 
2671
2678
  def deserialize(params)
@@ -2682,6 +2689,7 @@ module TencentCloud
2682
2689
  @Filters << filter_tmp
2683
2690
  end
2684
2691
  end
2692
+ @KmsSignPolicy = params['KmsSignPolicy']
2685
2693
  end
2686
2694
  end
2687
2695
 
@@ -3781,6 +3789,26 @@ module TencentCloud
3781
3789
  end
3782
3790
  end
3783
3791
 
3792
+ # 通用参数字符串键值对
3793
+ class KeyValueString < TencentCloud::Common::AbstractModel
3794
+ # @param Key: 键
3795
+ # @type Key: String
3796
+ # @param Value: 值
3797
+ # @type Value: String
3798
+
3799
+ attr_accessor :Key, :Value
3800
+
3801
+ def initialize(key=nil, value=nil)
3802
+ @Key = key
3803
+ @Value = value
3804
+ end
3805
+
3806
+ def deserialize(params)
3807
+ @Key = params['Key']
3808
+ @Value = params['Value']
3809
+ end
3810
+ end
3811
+
3784
3812
  # 共享镜像仓库用户配额
3785
3813
  class Limit < TencentCloud::Common::AbstractModel
3786
3814
  # @param Username: 用户名
@@ -5560,20 +5588,28 @@ module TencentCloud
5560
5588
  class TcrImageInfo < TencentCloud::Common::AbstractModel
5561
5589
  # @param Digest: 哈希值
5562
5590
  # @type Digest: String
5563
- # @param Size: 镜像大小
5591
+ # @param Size: 镜像体积(单位:字节)
5564
5592
  # @type Size: Integer
5565
5593
  # @param ImageVersion: Tag名称
5566
5594
  # @type ImageVersion: String
5567
5595
  # @param UpdateTime: 更新时间
5568
5596
  # @type UpdateTime: String
5597
+ # @param Kind: 制品类型
5598
+ # 注意:此字段可能返回 null,表示取不到有效值。
5599
+ # @type Kind: String
5600
+ # @param KmsSignature: KMS 签名信息
5601
+ # 注意:此字段可能返回 null,表示取不到有效值。
5602
+ # @type KmsSignature: String
5569
5603
 
5570
- attr_accessor :Digest, :Size, :ImageVersion, :UpdateTime
5604
+ attr_accessor :Digest, :Size, :ImageVersion, :UpdateTime, :Kind, :KmsSignature
5571
5605
 
5572
- def initialize(digest=nil, size=nil, imageversion=nil, updatetime=nil)
5606
+ def initialize(digest=nil, size=nil, imageversion=nil, updatetime=nil, kind=nil, kmssignature=nil)
5573
5607
  @Digest = digest
5574
5608
  @Size = size
5575
5609
  @ImageVersion = imageversion
5576
5610
  @UpdateTime = updatetime
5611
+ @Kind = kind
5612
+ @KmsSignature = kmssignature
5577
5613
  end
5578
5614
 
5579
5615
  def deserialize(params)
@@ -5581,6 +5617,8 @@ module TencentCloud
5581
5617
  @Size = params['Size']
5582
5618
  @ImageVersion = params['ImageVersion']
5583
5619
  @UpdateTime = params['UpdateTime']
5620
+ @Kind = params['Kind']
5621
+ @KmsSignature = params['KmsSignature']
5584
5622
  end
5585
5623
  end
5586
5624
 
@@ -5633,15 +5671,19 @@ module TencentCloud
5633
5671
  # @param TagSpecification: 实例云标签
5634
5672
  # 注意:此字段可能返回 null,表示取不到有效值。
5635
5673
  # @type TagSpecification: :class:`Tencentcloud::Tcr.v20190924.models.TagSpecification`
5674
+ # @param Metadata: 命名空间元数据
5675
+ # 注意:此字段可能返回 null,表示取不到有效值。
5676
+ # @type Metadata: Array
5636
5677
 
5637
- attr_accessor :Name, :CreationTime, :Public, :NamespaceId, :TagSpecification
5678
+ attr_accessor :Name, :CreationTime, :Public, :NamespaceId, :TagSpecification, :Metadata
5638
5679
 
5639
- def initialize(name=nil, creationtime=nil, public=nil, namespaceid=nil, tagspecification=nil)
5680
+ def initialize(name=nil, creationtime=nil, public=nil, namespaceid=nil, tagspecification=nil, metadata=nil)
5640
5681
  @Name = name
5641
5682
  @CreationTime = creationtime
5642
5683
  @Public = public
5643
5684
  @NamespaceId = namespaceid
5644
5685
  @TagSpecification = tagspecification
5686
+ @Metadata = metadata
5645
5687
  end
5646
5688
 
5647
5689
  def deserialize(params)
@@ -5653,6 +5695,14 @@ module TencentCloud
5653
5695
  @TagSpecification = TagSpecification.new
5654
5696
  @TagSpecification.deserialize(params['TagSpecification'])
5655
5697
  end
5698
+ unless params['Metadata'].nil?
5699
+ @Metadata = []
5700
+ params['Metadata'].each do |i|
5701
+ keyvaluestring_tmp = KeyValueString.new
5702
+ keyvaluestring_tmp.deserialize(i)
5703
+ @Metadata << keyvaluestring_tmp
5704
+ end
5705
+ end
5656
5706
  end
5657
5707
  end
5658
5708
 
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.386
4
+ version: 3.0.387
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-08-12 00:00:00.000000000 Z
11
+ date: 2022-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common