tencentcloud-sdk-domain 3.0.512 → 3.0.514

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/v20180808/models.rb +50 -10
  4. metadata +4 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d531ca577825e2bad51837e533aba59d890dab41
4
- data.tar.gz: 79a1954f66f50edbe9c748102901ccc8b39fd1c7
3
+ metadata.gz: 6528685c46e5d2390b7c07f1478453c096d7f553
4
+ data.tar.gz: b6311199496e80a61f345dd4df039986e1d08095
5
5
  SHA512:
6
- metadata.gz: 4964b22b3b9b835353c907d2eda12f9f7ce50c1a2b763dcfd3acd14e3b10809af188c2159111fc148cdb572d0e96f744cbb416f7ff10ad9b9e73bd12754fadf6
7
- data.tar.gz: 9c2bf0d509871e4949d91d9ef0b7f58ef785235813f0f88e9ae8803d0bd8a72b7be1cc5d0f5c480d8f92a2157471805c9a61507f19ab46e933030003583d69ab
6
+ metadata.gz: 08ed42663d59446b8bc7374e8232cb5ce538e960517f992507a3b2528d1aa91bcf6b9b4f7358731f12f5575bc763d426e6179424bafb7598d7c557e921286a94
7
+ data.tar.gz: 3e40f377bd23c84cc685c014200b7a28ec647d32c356eb59e74c4e97c7070aa1e123d5c1c5ad85b67a26dde03c7e451ff227c05104147407cc082c3c87c04eaf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.512
1
+ 3.0.514
@@ -370,10 +370,16 @@ module TencentCloud
370
370
  # @type UpdateProhibition: Integer
371
371
  # @param TransferProhibition: 是否开启转移锁:0=默认不开启,1=开启
372
372
  # @type TransferProhibition: Integer
373
-
374
- attr_accessor :TemplateId, :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId, :UpdateProhibition, :TransferProhibition
373
+ # @param ChannelFrom: 渠道来源,pc/miniprogram/h5等
374
+ # @type ChannelFrom: String
375
+ # @param OrderFrom: 订单来源,common正常/dianshi_active点石活动等
376
+ # @type OrderFrom: String
377
+ # @param ActivityId: 活动id
378
+ # @type ActivityId: String
379
+
380
+ attr_accessor :TemplateId, :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId, :UpdateProhibition, :TransferProhibition, :ChannelFrom, :OrderFrom, :ActivityId
375
381
 
376
- def initialize(templateid=nil, period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil, updateprohibition=nil, transferprohibition=nil)
382
+ def initialize(templateid=nil, period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil, updateprohibition=nil, transferprohibition=nil, channelfrom=nil, orderfrom=nil, activityid=nil)
377
383
  @TemplateId = templateid
378
384
  @Period = period
379
385
  @Domains = domains
@@ -382,6 +388,9 @@ module TencentCloud
382
388
  @PackageResourceId = packageresourceid
383
389
  @UpdateProhibition = updateprohibition
384
390
  @TransferProhibition = transferprohibition
391
+ @ChannelFrom = channelfrom
392
+ @OrderFrom = orderfrom
393
+ @ActivityId = activityid
385
394
  end
386
395
 
387
396
  def deserialize(params)
@@ -393,6 +402,9 @@ module TencentCloud
393
402
  @PackageResourceId = params['PackageResourceId']
394
403
  @UpdateProhibition = params['UpdateProhibition']
395
404
  @TransferProhibition = params['TransferProhibition']
405
+ @ChannelFrom = params['ChannelFrom']
406
+ @OrderFrom = params['OrderFrom']
407
+ @ActivityId = params['ActivityId']
396
408
  end
397
409
  end
398
410
 
@@ -1564,21 +1576,33 @@ module TencentCloud
1564
1576
  # @type Period: Integer
1565
1577
  # @param Domains: 批量续费的域名。
1566
1578
  # @type Domains: Array
1567
- # @param PayMode: 付费模式 0手动在线付费,1使用余额付费。
1579
+ # @param PayMode: 付费模式 0手动在线付费,1使用余额付费,2使用特惠包。
1568
1580
  # @type PayMode: Integer
1569
1581
  # @param AutoRenewFlag: 自动续费开关。有三个可选值:
1570
1582
  # 0 表示关闭,不自动续费
1571
1583
  # 1 表示开启,将自动续费
1572
1584
  # 2 表示不处理,保留域名原有状态(默认值)
1573
1585
  # @type AutoRenewFlag: Integer
1574
-
1575
- attr_accessor :Period, :Domains, :PayMode, :AutoRenewFlag
1586
+ # @param PackageResourceId: 特惠包ID
1587
+ # @type PackageResourceId: String
1588
+ # @param ChannelFrom: 渠道来源,pc/miniprogram/h5等
1589
+ # @type ChannelFrom: String
1590
+ # @param OrderFrom: 订单来源,common正常/dianshi_active点石活动等
1591
+ # @type OrderFrom: String
1592
+ # @param ActivityId: 活动id
1593
+ # @type ActivityId: String
1594
+
1595
+ attr_accessor :Period, :Domains, :PayMode, :AutoRenewFlag, :PackageResourceId, :ChannelFrom, :OrderFrom, :ActivityId
1576
1596
 
1577
- def initialize(period=nil, domains=nil, paymode=nil, autorenewflag=nil)
1597
+ def initialize(period=nil, domains=nil, paymode=nil, autorenewflag=nil, packageresourceid=nil, channelfrom=nil, orderfrom=nil, activityid=nil)
1578
1598
  @Period = period
1579
1599
  @Domains = domains
1580
1600
  @PayMode = paymode
1581
1601
  @AutoRenewFlag = autorenewflag
1602
+ @PackageResourceId = packageresourceid
1603
+ @ChannelFrom = channelfrom
1604
+ @OrderFrom = orderfrom
1605
+ @ActivityId = activityid
1582
1606
  end
1583
1607
 
1584
1608
  def deserialize(params)
@@ -1586,6 +1610,10 @@ module TencentCloud
1586
1610
  @Domains = params['Domains']
1587
1611
  @PayMode = params['PayMode']
1588
1612
  @AutoRenewFlag = params['AutoRenewFlag']
1613
+ @PackageResourceId = params['PackageResourceId']
1614
+ @ChannelFrom = params['ChannelFrom']
1615
+ @OrderFrom = params['OrderFrom']
1616
+ @ActivityId = params['ActivityId']
1589
1617
  end
1590
1618
  end
1591
1619
 
@@ -1772,10 +1800,16 @@ module TencentCloud
1772
1800
  # @type UpdateProhibition: Integer
1773
1801
  # @param TransferProhibition: 是否开启转移锁:0=默认不开启,1=开启
1774
1802
  # @type TransferProhibition: Integer
1775
-
1776
- attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer, :UpdateProhibition, :TransferProhibition
1803
+ # @param ChannelFrom: 渠道来源,pc/miniprogram/h5等
1804
+ # @type ChannelFrom: String
1805
+ # @param OrderFrom: 订单来源,common正常/dianshi_active点石活动等
1806
+ # @type OrderFrom: String
1807
+ # @param ActivityId: 活动id
1808
+ # @type ActivityId: String
1809
+
1810
+ attr_accessor :Domains, :PassWords, :TemplateId, :PayMode, :AutoRenewFlag, :LockTransfer, :UpdateProhibition, :TransferProhibition, :ChannelFrom, :OrderFrom, :ActivityId
1777
1811
 
1778
- def initialize(domains=nil, passwords=nil, templateid=nil, paymode=nil, autorenewflag=nil, locktransfer=nil, updateprohibition=nil, transferprohibition=nil)
1812
+ def initialize(domains=nil, passwords=nil, templateid=nil, paymode=nil, autorenewflag=nil, locktransfer=nil, updateprohibition=nil, transferprohibition=nil, channelfrom=nil, orderfrom=nil, activityid=nil)
1779
1813
  @Domains = domains
1780
1814
  @PassWords = passwords
1781
1815
  @TemplateId = templateid
@@ -1784,6 +1818,9 @@ module TencentCloud
1784
1818
  @LockTransfer = locktransfer
1785
1819
  @UpdateProhibition = updateprohibition
1786
1820
  @TransferProhibition = transferprohibition
1821
+ @ChannelFrom = channelfrom
1822
+ @OrderFrom = orderfrom
1823
+ @ActivityId = activityid
1787
1824
  end
1788
1825
 
1789
1826
  def deserialize(params)
@@ -1795,6 +1832,9 @@ module TencentCloud
1795
1832
  @LockTransfer = params['LockTransfer']
1796
1833
  @UpdateProhibition = params['UpdateProhibition']
1797
1834
  @TransferProhibition = params['TransferProhibition']
1835
+ @ChannelFrom = params['ChannelFrom']
1836
+ @OrderFrom = params['OrderFrom']
1837
+ @ActivityId = params['ActivityId']
1798
1838
  end
1799
1839
  end
1800
1840
 
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: 3.0.512
4
+ version: 3.0.514
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-20 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/tencentcloud-sdk-domain.rb
37
- - lib/v20180808/client.rb
38
36
  - lib/v20180808/models.rb
37
+ - lib/v20180808/client.rb
38
+ - lib/tencentcloud-sdk-domain.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: