tencentcloud-sdk-domain 1.0.216 → 1.0.217

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/v20180808/models.rb +20 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3d1a73ba836561f63be0c3487338a8e24536d6ab
4
- data.tar.gz: d200c59ed5ac5762cb026fdd7f0f134e50b515e3
3
+ metadata.gz: 98c13531d390f455c5ee2fc214810460b1dc7874
4
+ data.tar.gz: cee0203d8abc97452a2819c6604b563712036998
5
5
  SHA512:
6
- metadata.gz: 174c050e70d981a5e48ccf95153de9e2fa4372dcc373b0a5c3c3928a8ba3ea03632b544c0085b3398c23a1c1169285349a3d4988a2c5e9d54dafdfb962998849
7
- data.tar.gz: 85ce52599e077e5add09b3e4387fef57ccbd0ed74205cae8b3be21d28e0fab7f70fc51826745ab5caa293e8e419ffc4dd80d71c790aef735a8e882bf2a2eb344
6
+ metadata.gz: 954cf0486a455f3b26d54ab8059b3a84e66964fd9bf57eddfdb53e7ec154e78530757f7777206679f2cdee4ac2423faacf272c4fc37fd1374a303799657c5206
7
+ data.tar.gz: 94f2ad3e90a4f1b9ea37cd8091c553c4b79844fe2830d21c589cacedc1929d98bf377ab08e9dd88405e1479bb613851085749830d0c9958fcf02828b3c5e4a7f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.216
1
+ 1.0.217
@@ -366,16 +366,22 @@ module TencentCloud
366
366
  # @type AutoRenewFlag: Integer
367
367
  # @param PackageResourceId: 使用的特惠包ID,PayMode为2时必填
368
368
  # @type PackageResourceId: String
369
+ # @param UpdateProhibition: 是否开启更新锁:0=默认不开启,1=开启
370
+ # @type UpdateProhibition: Integer
371
+ # @param TransferProhibition: 是否开启转移锁:0=默认不开启,1=开启
372
+ # @type TransferProhibition: Integer
369
373
 
370
- attr_accessor :TemplateId, :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId
374
+ attr_accessor :TemplateId, :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId, :UpdateProhibition, :TransferProhibition
371
375
 
372
- def initialize(templateid=nil, period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil)
376
+ def initialize(templateid=nil, period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil, updateprohibition=nil, transferprohibition=nil)
373
377
  @TemplateId = templateid
374
378
  @Period = period
375
379
  @Domains = domains
376
380
  @PayMode = paymode
377
381
  @AutoRenewFlag = autorenewflag
378
382
  @PackageResourceId = packageresourceid
383
+ @UpdateProhibition = updateprohibition
384
+ @TransferProhibition = transferprohibition
379
385
  end
380
386
 
381
387
  def deserialize(params)
@@ -385,6 +391,8 @@ module TencentCloud
385
391
  @PayMode = params['PayMode']
386
392
  @AutoRenewFlag = params['AutoRenewFlag']
387
393
  @PackageResourceId = params['PackageResourceId']
394
+ @UpdateProhibition = params['UpdateProhibition']
395
+ @TransferProhibition = params['TransferProhibition']
388
396
  end
389
397
  end
390
398
 
@@ -1576,16 +1584,22 @@ module TencentCloud
1576
1584
  # false:关闭60天内禁止转移注册商锁定
1577
1585
  # 默认 true
1578
1586
  # @type LockTransfer: Boolean
1587
+ # @param UpdateProhibition: 是否开启更新锁:0=默认不开启,1=开启
1588
+ # @type UpdateProhibition: Integer
1589
+ # @param TransferProhibition: 是否开启转移锁:0=默认不开启,1=开启
1590
+ # @type TransferProhibition: Integer
1579
1591
 
1580
- attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer
1592
+ attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer, :UpdateProhibition, :TransferProhibition
1581
1593
 
1582
- def initialize(domains=nil, passwords=nil, templateid=nil, paymode=nil, autorenewflag=nil, locktransfer=nil)
1594
+ def initialize(domains=nil, passwords=nil, templateid=nil, paymode=nil, autorenewflag=nil, locktransfer=nil, updateprohibition=nil, transferprohibition=nil)
1583
1595
  @Domains = domains
1584
1596
  @PassWords = passwords
1585
1597
  @TemplateId = templateid
1586
1598
  @PayMode = paymode
1587
1599
  @AutoRenewFlag = autorenewflag
1588
1600
  @LockTransfer = locktransfer
1601
+ @UpdateProhibition = updateprohibition
1602
+ @TransferProhibition = transferprohibition
1589
1603
  end
1590
1604
 
1591
1605
  def deserialize(params)
@@ -1595,6 +1609,8 @@ module TencentCloud
1595
1609
  @PayMode = params['PayMode']
1596
1610
  @AutoRenewFlag = params['AutoRenewFlag']
1597
1611
  @LockTransfer = params['LockTransfer']
1612
+ @UpdateProhibition = params['UpdateProhibition']
1613
+ @TransferProhibition = params['TransferProhibition']
1598
1614
  end
1599
1615
  end
1600
1616
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-domain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.216
4
+ version: 1.0.217
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-03 00:00:00.000000000 Z
11
+ date: 2021-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common