tencentcloud-sdk-tcr 1.0.330 → 1.0.333

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.
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: f097c03d26bd035a1473993cc7233cfa3f163451
4
- data.tar.gz: 076cbd674d6373e96bce95a81383c5a4d7c3aebc
3
+ metadata.gz: 5ec9d9147ca359fb8a3a278b1c87965e4d4488d2
4
+ data.tar.gz: a16ed2d97aad92f34523031a11eb23f278876bf3
5
5
  SHA512:
6
- metadata.gz: fe689d7235c99553068f6bce5a2d691c79ea8a2142fc4795a7ab8d637c6d2f304c042b3da762334488b01ba9e56b88912482b965e292b39c063a8cc9b2c9ab3a
7
- data.tar.gz: 3012cbd1ad255619acd5d57f1e96e43e161e092acb227aa350a2714ad7e358c84cd09ea85b4de2168f6a396dc41fbba8ffb46cdf36ea8dab72d5005a67d37295
6
+ metadata.gz: 5c6a785bc1f517e991c5a75b4805a2f69bd25940d24b17ba0bfab9bb0132e150056e7cf7493fe20e72d64348c1878181cb2c4d36006668eeeff6b8b2da76459f
7
+ data.tar.gz: 86023603e0215631ba6c50c7f2a53e26de35acb9f5d17d9f96a4e078638bf19c4037b314706470d59640d234a9123473e6751787a3fa8ae9588cd2cd4203917f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.330
1
+ 1.0.333
@@ -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.330
4
+ version: 1.0.333
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