tencentcloud-sdk-tcr 1.0.329 → 1.0.332

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 +18 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ec97779564c8c65eb0920250ee37a903a80e7a9
4
- data.tar.gz: 508707eaa04a27f2f38a52d46619f0e83e633824
3
+ metadata.gz: 377e2089b263e9a74a60cbae41b6b330591c1509
4
+ data.tar.gz: 3ff562cd9b75d6553a50e7b688574cee4209cfcf
5
5
  SHA512:
6
- metadata.gz: 275e5a98a9c5b93d8a8ae4f0039bbd560de27289e4b0f83e3226e3f93c95e049233abc6208da7ac70c8a4b9f9ab6a5d9fe4e1f4f260808eec7fc131d7d71adc1
7
- data.tar.gz: 14b8ba3e20e8e26f70059a6024a0d3b543ad3f1aef5fe25301089005d8eb4ed24f5cbb24235e2db73dd54f5614dfdeb12e7e14c359fc91f67e7d42a806f8949b
6
+ metadata.gz: 8c782e8047fab9cc490131de8e45aee536121996491be01e4d31299728f25a03ef1f9c15046b0bf639e7130156c0ad0e99c6f660bdf3350da25052f7e524ffc3
7
+ data.tar.gz: 4d077102111ae9a15210a52a78d334999fd81c63933e3dccafb37da06bd9dea717199c2e1c76a4172145cd42b181285c1c6e4d3ddd015a77b48665ba0ce5c865
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.329
1
+ 1.0.332
@@ -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.329
4
+ version: 1.0.332
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-09 00:00:00.000000000 Z
11
+ date: 2022-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common