tencentcloud-sdk-domain 1.0.215 → 1.0.219
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/v20180808/models.rb +26 -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: fb20418c2b4604e2aae24bdb73efcf1d42f87018
|
4
|
+
data.tar.gz: b99242d4e01db7f8f0348c1ab8b76a6b38234ae1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b997d20b40a5b7477c2ada24ec0531316531d24e870a3e79a8d3b296c92dc5ccabd01d7ba5966eabb5f9694fb14eb66a80e17968f95187f947dc162b4079fec
|
7
|
+
data.tar.gz: a8fe80c56d7f821dd6580333d60bf1a3833a124e861993dbf4c9f59595e608e6e9ed2009de3406b2d17f3098dbe31f5ce974a157d99eb73d6ad48bd0e7bd598f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.219
|
data/lib/v20180808/models.rb
CHANGED
@@ -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
|
|
@@ -1318,19 +1326,23 @@ module TencentCloud
|
|
1318
1326
|
# @type Type: Integer
|
1319
1327
|
# @param CreatedOn: 创建时间
|
1320
1328
|
# @type CreatedOn: String
|
1329
|
+
# @param CheckStatus: 1=控制台校验,2=第三方校验
|
1330
|
+
# @type CheckStatus: Integer
|
1321
1331
|
|
1322
|
-
attr_accessor :Code, :Type, :CreatedOn
|
1332
|
+
attr_accessor :Code, :Type, :CreatedOn, :CheckStatus
|
1323
1333
|
|
1324
|
-
def initialize(code=nil, type=nil, createdon=nil)
|
1334
|
+
def initialize(code=nil, type=nil, createdon=nil, checkstatus=nil)
|
1325
1335
|
@Code = code
|
1326
1336
|
@Type = type
|
1327
1337
|
@CreatedOn = createdon
|
1338
|
+
@CheckStatus = checkstatus
|
1328
1339
|
end
|
1329
1340
|
|
1330
1341
|
def deserialize(params)
|
1331
1342
|
@Code = params['Code']
|
1332
1343
|
@Type = params['Type']
|
1333
1344
|
@CreatedOn = params['CreatedOn']
|
1345
|
+
@CheckStatus = params['CheckStatus']
|
1334
1346
|
end
|
1335
1347
|
end
|
1336
1348
|
|
@@ -1572,16 +1584,22 @@ module TencentCloud
|
|
1572
1584
|
# false:关闭60天内禁止转移注册商锁定
|
1573
1585
|
# 默认 true
|
1574
1586
|
# @type LockTransfer: Boolean
|
1587
|
+
# @param UpdateProhibition: 是否开启更新锁:0=默认不开启,1=开启
|
1588
|
+
# @type UpdateProhibition: Integer
|
1589
|
+
# @param TransferProhibition: 是否开启转移锁:0=默认不开启,1=开启
|
1590
|
+
# @type TransferProhibition: Integer
|
1575
1591
|
|
1576
|
-
attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer
|
1592
|
+
attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer, :UpdateProhibition, :TransferProhibition
|
1577
1593
|
|
1578
|
-
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)
|
1579
1595
|
@Domains = domains
|
1580
1596
|
@PassWords = passwords
|
1581
1597
|
@TemplateId = templateid
|
1582
1598
|
@PayMode = paymode
|
1583
1599
|
@AutoRenewFlag = autorenewflag
|
1584
1600
|
@LockTransfer = locktransfer
|
1601
|
+
@UpdateProhibition = updateprohibition
|
1602
|
+
@TransferProhibition = transferprohibition
|
1585
1603
|
end
|
1586
1604
|
|
1587
1605
|
def deserialize(params)
|
@@ -1591,6 +1609,8 @@ module TencentCloud
|
|
1591
1609
|
@PayMode = params['PayMode']
|
1592
1610
|
@AutoRenewFlag = params['AutoRenewFlag']
|
1593
1611
|
@LockTransfer = params['LockTransfer']
|
1612
|
+
@UpdateProhibition = params['UpdateProhibition']
|
1613
|
+
@TransferProhibition = params['TransferProhibition']
|
1594
1614
|
end
|
1595
1615
|
end
|
1596
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.
|
4
|
+
version: 1.0.219
|
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-
|
11
|
+
date: 2021-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|