tencentcloud-sdk-tcr 1.0.330 → 1.0.331
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 +18 -6
- 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: 7b622668ce512464508ebc3854995fd8c0ce8616
|
4
|
+
data.tar.gz: 8a69d5208da9f03a801373225eebd1d97da89f69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03bd8e7780193a5c3020699f3243a542f584fae83a0d70da832cb631bcc776dc0f81cee0724f1c2e13d5bae18f21b2cd565ba055bb8b830edd413d994f3bd907
|
7
|
+
data.tar.gz: d6f74dee2d428ee7bda255d33e77c184a529232855ddfdfee52ab3d14ebecadd7c3de53a3ac9ad2b76812243838c046a00a804409bd7e3ebd532be4f51e953ba
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.331
|
data/lib/v20190924/models.rb
CHANGED
@@ -414,14 +414,17 @@ module TencentCloud
|
|
414
414
|
# @type TagSpecification: :class:`Tencentcloud::Tcr.v20190924.models.TagSpecification`
|
415
415
|
# @param RegistryChargeType: 实例计费类型,0表示按量计费,1表示预付费,默认为按量计费
|
416
416
|
# @type RegistryChargeType: Integer
|
417
|
+
# @param SyncTag: 是否同步TCR云标签至生成的COS Bucket
|
418
|
+
# @type SyncTag: Boolean
|
417
419
|
|
418
|
-
attr_accessor :RegistryName, :RegistryType, :TagSpecification, :RegistryChargeType
|
420
|
+
attr_accessor :RegistryName, :RegistryType, :TagSpecification, :RegistryChargeType, :SyncTag
|
419
421
|
|
420
|
-
def initialize(registryname=nil, registrytype=nil, tagspecification=nil, registrychargetype=nil)
|
422
|
+
def initialize(registryname=nil, registrytype=nil, tagspecification=nil, registrychargetype=nil, synctag=nil)
|
421
423
|
@RegistryName = registryname
|
422
424
|
@RegistryType = registrytype
|
423
425
|
@TagSpecification = tagspecification
|
424
426
|
@RegistryChargeType = registrychargetype
|
427
|
+
@SyncTag = synctag
|
425
428
|
end
|
426
429
|
|
427
430
|
def deserialize(params)
|
@@ -432,6 +435,7 @@ module TencentCloud
|
|
432
435
|
@TagSpecification.deserialize(params['TagSpecification'])
|
433
436
|
end
|
434
437
|
@RegistryChargeType = params['RegistryChargeType']
|
438
|
+
@SyncTag = params['SyncTag']
|
435
439
|
end
|
436
440
|
end
|
437
441
|
|
@@ -690,19 +694,23 @@ module TencentCloud
|
|
690
694
|
# @type ReplicationRegionId: Integer
|
691
695
|
# @param ReplicationRegionName: 复制实例地域名称
|
692
696
|
# @type ReplicationRegionName: String
|
697
|
+
# @param SyncTag: 是否同步TCR云标签至生成的COS Bucket
|
698
|
+
# @type SyncTag: Boolean
|
693
699
|
|
694
|
-
attr_accessor :RegistryId, :ReplicationRegionId, :ReplicationRegionName
|
700
|
+
attr_accessor :RegistryId, :ReplicationRegionId, :ReplicationRegionName, :SyncTag
|
695
701
|
|
696
|
-
def initialize(registryid=nil, replicationregionid=nil, replicationregionname=nil)
|
702
|
+
def initialize(registryid=nil, replicationregionid=nil, replicationregionname=nil, synctag=nil)
|
697
703
|
@RegistryId = registryid
|
698
704
|
@ReplicationRegionId = replicationregionid
|
699
705
|
@ReplicationRegionName = replicationregionname
|
706
|
+
@SyncTag = synctag
|
700
707
|
end
|
701
708
|
|
702
709
|
def deserialize(params)
|
703
710
|
@RegistryId = params['RegistryId']
|
704
711
|
@ReplicationRegionId = params['ReplicationRegionId']
|
705
712
|
@ReplicationRegionName = params['ReplicationRegionName']
|
713
|
+
@SyncTag = params['SyncTag']
|
706
714
|
end
|
707
715
|
end
|
708
716
|
|
@@ -1248,17 +1256,21 @@ module TencentCloud
|
|
1248
1256
|
# @type RegistryId: String
|
1249
1257
|
# @param DeleteBucket: 是否删除存储桶,默认为false
|
1250
1258
|
# @type DeleteBucket: Boolean
|
1259
|
+
# @param DryRun: 是否dryRun模式,缺省值:false
|
1260
|
+
# @type DryRun: Boolean
|
1251
1261
|
|
1252
|
-
attr_accessor :RegistryId, :DeleteBucket
|
1262
|
+
attr_accessor :RegistryId, :DeleteBucket, :DryRun
|
1253
1263
|
|
1254
|
-
def initialize(registryid=nil, deletebucket=nil)
|
1264
|
+
def initialize(registryid=nil, deletebucket=nil, dryrun=nil)
|
1255
1265
|
@RegistryId = registryid
|
1256
1266
|
@DeleteBucket = deletebucket
|
1267
|
+
@DryRun = dryrun
|
1257
1268
|
end
|
1258
1269
|
|
1259
1270
|
def deserialize(params)
|
1260
1271
|
@RegistryId = params['RegistryId']
|
1261
1272
|
@DeleteBucket = params['DeleteBucket']
|
1273
|
+
@DryRun = params['DryRun']
|
1262
1274
|
end
|
1263
1275
|
end
|
1264
1276
|
|
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.331
|
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-06-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|