tencentcloud-sdk-tcr 3.0.445 → 3.0.446

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a28ad4859515e7768fe3a84a2a19ad1b43bcaac4
4
- data.tar.gz: 7c3785198d220164629a115b0897d068b0e427e2
3
+ metadata.gz: accc7a4087f3e11c8dc7cc2466d63c8d23334388
4
+ data.tar.gz: a16b799191ac02a2430a4bfd84ba7a729fa78b68
5
5
  SHA512:
6
- metadata.gz: 8a323d524b439646a3002de57203cd204b692dcce8bcb009c2c105f2d700ac7ddd4a8953e26ca81f08a0f3e766dea6cdbd57c0f17f21c741eaf9d40cb6dcd36c
7
- data.tar.gz: 2afa5bd62006f7896a1805d91da90d23928dcf0ae48de2608a77b83b860fb3ab2b7eed7ca2bbb4e62ecf776b52673cbc7252606588af1b46d8cc9c48c6c3cabe
6
+ metadata.gz: accde2eed4d52f173abab7b3b161d9577230812f0f25dac6fd6ae09d4e29c6c4391fd0aa9f13a7fa4d94afa639cef0eaa653591dc020f3987a7cf9f09495e12e
7
+ data.tar.gz: c4bd93b73d223ef11c106010df70bd93ef2d83d32bd11e1f0f98db41b400bf24846f714d3d879fac74e3e9937b53c0378974cd3488e7740b1532114e13f9cda1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.445
1
+ 3.0.446
@@ -2779,10 +2779,12 @@ module TencentCloud
2779
2779
  # @type Offset: Integer
2780
2780
  # @param Digest: 指定镜像 Digest 进行查找
2781
2781
  # @type Digest: String
2782
+ # @param ExactMatch: 指定是否为精准匹配,true为精准匹配,不填为模糊匹配
2783
+ # @type ExactMatch: Boolean
2782
2784
 
2783
- attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset, :Digest
2785
+ attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset, :Digest, :ExactMatch
2784
2786
 
2785
- def initialize(registryid=nil, namespacename=nil, repositoryname=nil, imageversion=nil, limit=nil, offset=nil, digest=nil)
2787
+ def initialize(registryid=nil, namespacename=nil, repositoryname=nil, imageversion=nil, limit=nil, offset=nil, digest=nil, exactmatch=nil)
2786
2788
  @RegistryId = registryid
2787
2789
  @NamespaceName = namespacename
2788
2790
  @RepositoryName = repositoryname
@@ -2790,6 +2792,7 @@ module TencentCloud
2790
2792
  @Limit = limit
2791
2793
  @Offset = offset
2792
2794
  @Digest = digest
2795
+ @ExactMatch = exactmatch
2793
2796
  end
2794
2797
 
2795
2798
  def deserialize(params)
@@ -2800,6 +2803,7 @@ module TencentCloud
2800
2803
  @Limit = params['Limit']
2801
2804
  @Offset = params['Offset']
2802
2805
  @Digest = params['Digest']
2806
+ @ExactMatch = params['ExactMatch']
2803
2807
  end
2804
2808
  end
2805
2809
 
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.445
4
+ version: 3.0.446
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-11-06 00:00:00.000000000 Z
11
+ date: 2022-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '3.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: '1.0'
26
+ version: '3.0'
27
27
  description: Tencent Cloud Ruby SDK is the official software development kit, which
28
28
  allows Ruby developers to write software that makes use of Tencent Cloud service
29
29
  TCR.