tencentcloud-sdk-tcr 1.0.349 → 1.0.350
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 +37 -7
- 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: a2a520ad4628bfbf7ae0ea3b0d7f3bdc4879ceda
|
4
|
+
data.tar.gz: 9696094fdb4d97d9d2a2533431a8eb0b314a7a1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27ba0f9c4487724b3d45218db9b68bddd6325c05e98f6fdb88e1255f4a6fb8703de3f320a4c229a974df3cf2500f6d9fde5dca07a5dfcae28e806631b06b3089
|
7
|
+
data.tar.gz: 19cb1ebe439f69ce1e61ceef6ebf7f7a70d293026cc6a958a6d3e1b0c03e45b1fe20b9cc7117240a1713a86408830f17622341ec270a0665faeee58a7db74770
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.350
|
data/lib/v20190924/models.rb
CHANGED
@@ -654,19 +654,26 @@ module TencentCloud
|
|
654
654
|
# @type NamespaceName: String
|
655
655
|
# @param IsPublic: 是否公开,true为公开,fale为私有
|
656
656
|
# @type IsPublic: Boolean
|
657
|
+
# @param TagSpecification: 云标签描述
|
658
|
+
# @type TagSpecification: :class:`Tencentcloud::Tcr.v20190924.models.TagSpecification`
|
657
659
|
|
658
|
-
attr_accessor :RegistryId, :NamespaceName, :IsPublic
|
660
|
+
attr_accessor :RegistryId, :NamespaceName, :IsPublic, :TagSpecification
|
659
661
|
|
660
|
-
def initialize(registryid=nil, namespacename=nil, ispublic=nil)
|
662
|
+
def initialize(registryid=nil, namespacename=nil, ispublic=nil, tagspecification=nil)
|
661
663
|
@RegistryId = registryid
|
662
664
|
@NamespaceName = namespacename
|
663
665
|
@IsPublic = ispublic
|
666
|
+
@TagSpecification = tagspecification
|
664
667
|
end
|
665
668
|
|
666
669
|
def deserialize(params)
|
667
670
|
@RegistryId = params['RegistryId']
|
668
671
|
@NamespaceName = params['NamespaceName']
|
669
672
|
@IsPublic = params['IsPublic']
|
673
|
+
unless params['TagSpecification'].nil?
|
674
|
+
@TagSpecification = TagSpecification.new
|
675
|
+
@TagSpecification.deserialize(params['TagSpecification'])
|
676
|
+
end
|
670
677
|
end
|
671
678
|
end
|
672
679
|
|
@@ -2643,16 +2650,22 @@ module TencentCloud
|
|
2643
2650
|
# @type NamespaceName: String
|
2644
2651
|
# @param Limit: 每页个数
|
2645
2652
|
# @type Limit: Integer
|
2646
|
-
# @param Offset:
|
2653
|
+
# @param Offset: 页面偏移(第几页)
|
2647
2654
|
# @type Offset: Integer
|
2655
|
+
# @param All: 列出所有命名空间
|
2656
|
+
# @type All: Boolean
|
2657
|
+
# @param Filters: 过滤条件
|
2658
|
+
# @type Filters: Array
|
2648
2659
|
|
2649
|
-
attr_accessor :RegistryId, :NamespaceName, :Limit, :Offset
|
2660
|
+
attr_accessor :RegistryId, :NamespaceName, :Limit, :Offset, :All, :Filters
|
2650
2661
|
|
2651
|
-
def initialize(registryid=nil, namespacename=nil, limit=nil, offset=nil)
|
2662
|
+
def initialize(registryid=nil, namespacename=nil, limit=nil, offset=nil, all=nil, filters=nil)
|
2652
2663
|
@RegistryId = registryid
|
2653
2664
|
@NamespaceName = namespacename
|
2654
2665
|
@Limit = limit
|
2655
2666
|
@Offset = offset
|
2667
|
+
@All = all
|
2668
|
+
@Filters = filters
|
2656
2669
|
end
|
2657
2670
|
|
2658
2671
|
def deserialize(params)
|
@@ -2660,6 +2673,15 @@ module TencentCloud
|
|
2660
2673
|
@NamespaceName = params['NamespaceName']
|
2661
2674
|
@Limit = params['Limit']
|
2662
2675
|
@Offset = params['Offset']
|
2676
|
+
@All = params['All']
|
2677
|
+
unless params['Filters'].nil?
|
2678
|
+
@Filters = []
|
2679
|
+
params['Filters'].each do |i|
|
2680
|
+
filter_tmp = Filter.new
|
2681
|
+
filter_tmp.deserialize(i)
|
2682
|
+
@Filters << filter_tmp
|
2683
|
+
end
|
2684
|
+
end
|
2663
2685
|
end
|
2664
2686
|
end
|
2665
2687
|
|
@@ -5608,14 +5630,18 @@ module TencentCloud
|
|
5608
5630
|
# @type Public: Boolean
|
5609
5631
|
# @param NamespaceId: 命名空间的Id
|
5610
5632
|
# @type NamespaceId: Integer
|
5633
|
+
# @param TagSpecification: 实例云标签
|
5634
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5635
|
+
# @type TagSpecification: :class:`Tencentcloud::Tcr.v20190924.models.TagSpecification`
|
5611
5636
|
|
5612
|
-
attr_accessor :Name, :CreationTime, :Public, :NamespaceId
|
5637
|
+
attr_accessor :Name, :CreationTime, :Public, :NamespaceId, :TagSpecification
|
5613
5638
|
|
5614
|
-
def initialize(name=nil, creationtime=nil, public=nil, namespaceid=nil)
|
5639
|
+
def initialize(name=nil, creationtime=nil, public=nil, namespaceid=nil, tagspecification=nil)
|
5615
5640
|
@Name = name
|
5616
5641
|
@CreationTime = creationtime
|
5617
5642
|
@Public = public
|
5618
5643
|
@NamespaceId = namespaceid
|
5644
|
+
@TagSpecification = tagspecification
|
5619
5645
|
end
|
5620
5646
|
|
5621
5647
|
def deserialize(params)
|
@@ -5623,6 +5649,10 @@ module TencentCloud
|
|
5623
5649
|
@CreationTime = params['CreationTime']
|
5624
5650
|
@Public = params['Public']
|
5625
5651
|
@NamespaceId = params['NamespaceId']
|
5652
|
+
unless params['TagSpecification'].nil?
|
5653
|
+
@TagSpecification = TagSpecification.new
|
5654
|
+
@TagSpecification.deserialize(params['TagSpecification'])
|
5655
|
+
end
|
5626
5656
|
end
|
5627
5657
|
end
|
5628
5658
|
|
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: 1.0.
|
4
|
+
version: 1.0.350
|
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-07-
|
11
|
+
date: 2022-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|