tencentcloud-sdk-tcr 3.0.444 → 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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190924/models.rb +12 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: accc7a4087f3e11c8dc7cc2466d63c8d23334388
|
4
|
+
data.tar.gz: a16b799191ac02a2430a4bfd84ba7a729fa78b68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: accde2eed4d52f173abab7b3b161d9577230812f0f25dac6fd6ae09d4e29c6c4391fd0aa9f13a7fa4d94afa639cef0eaa653591dc020f3987a7cf9f09495e12e
|
7
|
+
data.tar.gz: c4bd93b73d223ef11c106010df70bd93ef2d83d32bd11e1f0f98db41b400bf24846f714d3d879fac74e3e9937b53c0378974cd3488e7740b1532114e13f9cda1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.446
|
data/lib/v20190924/models.rb
CHANGED
@@ -634,15 +634,18 @@ module TencentCloud
|
|
634
634
|
# @type UsePublicDomain: Boolean
|
635
635
|
# @param RegionName: 解析地域,需要保证和vpc处于同一地域,如果不填则默认为主实例地域
|
636
636
|
# @type RegionName: String
|
637
|
+
# @param RegionId: 请求的地域ID,用于实例复制地域
|
638
|
+
# @type RegionId: Integer
|
637
639
|
|
638
|
-
attr_accessor :InstanceId, :VpcId, :EniLBIp, :UsePublicDomain, :RegionName
|
640
|
+
attr_accessor :InstanceId, :VpcId, :EniLBIp, :UsePublicDomain, :RegionName, :RegionId
|
639
641
|
|
640
|
-
def initialize(instanceid=nil, vpcid=nil, enilbip=nil, usepublicdomain=nil, regionname=nil)
|
642
|
+
def initialize(instanceid=nil, vpcid=nil, enilbip=nil, usepublicdomain=nil, regionname=nil, regionid=nil)
|
641
643
|
@InstanceId = instanceid
|
642
644
|
@VpcId = vpcid
|
643
645
|
@EniLBIp = enilbip
|
644
646
|
@UsePublicDomain = usepublicdomain
|
645
647
|
@RegionName = regionname
|
648
|
+
@RegionId = regionid
|
646
649
|
end
|
647
650
|
|
648
651
|
def deserialize(params)
|
@@ -651,6 +654,7 @@ module TencentCloud
|
|
651
654
|
@EniLBIp = params['EniLBIp']
|
652
655
|
@UsePublicDomain = params['UsePublicDomain']
|
653
656
|
@RegionName = params['RegionName']
|
657
|
+
@RegionId = params['RegionId']
|
654
658
|
end
|
655
659
|
end
|
656
660
|
|
@@ -2775,10 +2779,12 @@ module TencentCloud
|
|
2775
2779
|
# @type Offset: Integer
|
2776
2780
|
# @param Digest: 指定镜像 Digest 进行查找
|
2777
2781
|
# @type Digest: String
|
2782
|
+
# @param ExactMatch: 指定是否为精准匹配,true为精准匹配,不填为模糊匹配
|
2783
|
+
# @type ExactMatch: Boolean
|
2778
2784
|
|
2779
|
-
attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset, :Digest
|
2785
|
+
attr_accessor :RegistryId, :NamespaceName, :RepositoryName, :ImageVersion, :Limit, :Offset, :Digest, :ExactMatch
|
2780
2786
|
|
2781
|
-
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)
|
2782
2788
|
@RegistryId = registryid
|
2783
2789
|
@NamespaceName = namespacename
|
2784
2790
|
@RepositoryName = repositoryname
|
@@ -2786,6 +2792,7 @@ module TencentCloud
|
|
2786
2792
|
@Limit = limit
|
2787
2793
|
@Offset = offset
|
2788
2794
|
@Digest = digest
|
2795
|
+
@ExactMatch = exactmatch
|
2789
2796
|
end
|
2790
2797
|
|
2791
2798
|
def deserialize(params)
|
@@ -2796,6 +2803,7 @@ module TencentCloud
|
|
2796
2803
|
@Limit = params['Limit']
|
2797
2804
|
@Offset = params['Offset']
|
2798
2805
|
@Digest = params['Digest']
|
2806
|
+
@ExactMatch = params['ExactMatch']
|
2799
2807
|
end
|
2800
2808
|
end
|
2801
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.
|
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-
|
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: '
|
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: '
|
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.
|