tencentcloud-sdk-dnspod 3.0.608 → 3.0.609

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/v20210323/models.rb +112 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d0cf2577582d0dd4df0bcd5ecc7eba5da47d744
4
- data.tar.gz: 584d90ab40c657550e23e33da99d6d817465462f
3
+ metadata.gz: 0320481fdb37a971b88d3b6a97cb7dd1c0f8c607
4
+ data.tar.gz: 807b668703e797debd15daf1131098476a93b8d0
5
5
  SHA512:
6
- metadata.gz: 93ebac0de78f027e6504db73b9ff02be2afdce5c8d7342ac28d2a8d94159334976ae1c11315d4df603b95eac3eb7786e5d4004586bdedd72482b350441c5b713
7
- data.tar.gz: 4b4da874e0299d13dfa2a5641a32f1120fe84da5f145105e7644f4f04016b9c8f0f3de39dc69936b4f1dddb1e49bc712d5a7586ac8be0ab9e763f90a2849052f
6
+ metadata.gz: 6b6d693d1021d0aa5c3866ee65f457fe010dc713c43e06e1f7901728d3ceefd4f970a791b199e5a69a56683739ae8f3bb412b0108757b402024d93992ce542ab
7
+ data.tar.gz: e44a7d71ad172aebc6d981a02411ebf1a518b00466f3afdb313c9bd9ab16ae7fd1491bc01721a497a5d8c33769f95c77a2dee166f744e64927f0fddcac7dba23
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.608
1
+ 3.0.609
@@ -617,19 +617,34 @@ module TencentCloud
617
617
  # @type GroupId: Integer
618
618
  # @param IsMark: 是否星标域名,”yes”、”no” 分别代表是和否。
619
619
  # @type IsMark: String
620
+ # @param TransferSubDomain: 添加子域名时,是否迁移相关父域名的解析记录。不传默认为 true
621
+ # @type TransferSubDomain: Boolean
622
+ # @param Tags: 域名绑定的标签
623
+ # @type Tags: Array
620
624
 
621
- attr_accessor :Domain, :GroupId, :IsMark
625
+ attr_accessor :Domain, :GroupId, :IsMark, :TransferSubDomain, :Tags
622
626
 
623
- def initialize(domain=nil, groupid=nil, ismark=nil)
627
+ def initialize(domain=nil, groupid=nil, ismark=nil, transfersubdomain=nil, tags=nil)
624
628
  @Domain = domain
625
629
  @GroupId = groupid
626
630
  @IsMark = ismark
631
+ @TransferSubDomain = transfersubdomain
632
+ @Tags = tags
627
633
  end
628
634
 
629
635
  def deserialize(params)
630
636
  @Domain = params['Domain']
631
637
  @GroupId = params['GroupId']
632
638
  @IsMark = params['IsMark']
639
+ @TransferSubDomain = params['TransferSubDomain']
640
+ unless params['Tags'].nil?
641
+ @Tags = []
642
+ params['Tags'].each do |i|
643
+ tagitem_tmp = TagItem.new
644
+ tagitem_tmp.deserialize(i)
645
+ @Tags << tagitem_tmp
646
+ end
647
+ end
633
648
  end
634
649
  end
635
650
 
@@ -1704,10 +1719,12 @@ module TencentCloud
1704
1719
  # @type RecordCountEnd: Integer
1705
1720
  # @param ProjectId: 项目ID
1706
1721
  # @type ProjectId: Integer
1722
+ # @param Tags: 标签过滤
1723
+ # @type Tags: Array
1707
1724
 
1708
- attr_accessor :Type, :Offset, :Limit, :GroupId, :Keyword, :SortField, :SortType, :Status, :Package, :Remark, :UpdatedAtBegin, :UpdatedAtEnd, :RecordCountBegin, :RecordCountEnd, :ProjectId
1725
+ attr_accessor :Type, :Offset, :Limit, :GroupId, :Keyword, :SortField, :SortType, :Status, :Package, :Remark, :UpdatedAtBegin, :UpdatedAtEnd, :RecordCountBegin, :RecordCountEnd, :ProjectId, :Tags
1709
1726
 
1710
- def initialize(type=nil, offset=nil, limit=nil, groupid=nil, keyword=nil, sortfield=nil, sorttype=nil, status=nil, package=nil, remark=nil, updatedatbegin=nil, updatedatend=nil, recordcountbegin=nil, recordcountend=nil, projectid=nil)
1727
+ def initialize(type=nil, offset=nil, limit=nil, groupid=nil, keyword=nil, sortfield=nil, sorttype=nil, status=nil, package=nil, remark=nil, updatedatbegin=nil, updatedatend=nil, recordcountbegin=nil, recordcountend=nil, projectid=nil, tags=nil)
1711
1728
  @Type = type
1712
1729
  @Offset = offset
1713
1730
  @Limit = limit
@@ -1723,6 +1740,7 @@ module TencentCloud
1723
1740
  @RecordCountBegin = recordcountbegin
1724
1741
  @RecordCountEnd = recordcountend
1725
1742
  @ProjectId = projectid
1743
+ @Tags = tags
1726
1744
  end
1727
1745
 
1728
1746
  def deserialize(params)
@@ -1741,6 +1759,14 @@ module TencentCloud
1741
1759
  @RecordCountBegin = params['RecordCountBegin']
1742
1760
  @RecordCountEnd = params['RecordCountEnd']
1743
1761
  @ProjectId = params['ProjectId']
1762
+ unless params['Tags'].nil?
1763
+ @Tags = []
1764
+ params['Tags'].each do |i|
1765
+ tagitemfilter_tmp = TagItemFilter.new
1766
+ tagitemfilter_tmp.deserialize(i)
1767
+ @Tags << tagitemfilter_tmp
1768
+ end
1769
+ end
1744
1770
  end
1745
1771
  end
1746
1772
 
@@ -1828,15 +1854,18 @@ module TencentCloud
1828
1854
  # @type GroupId: Integer
1829
1855
  # @param Keyword: 根据关键字搜索域名
1830
1856
  # @type Keyword: String
1857
+ # @param Tags: 标签过滤
1858
+ # @type Tags: Array
1831
1859
 
1832
- attr_accessor :Type, :Offset, :Limit, :GroupId, :Keyword
1860
+ attr_accessor :Type, :Offset, :Limit, :GroupId, :Keyword, :Tags
1833
1861
 
1834
- def initialize(type=nil, offset=nil, limit=nil, groupid=nil, keyword=nil)
1862
+ def initialize(type=nil, offset=nil, limit=nil, groupid=nil, keyword=nil, tags=nil)
1835
1863
  @Type = type
1836
1864
  @Offset = offset
1837
1865
  @Limit = limit
1838
1866
  @GroupId = groupid
1839
1867
  @Keyword = keyword
1868
+ @Tags = tags
1840
1869
  end
1841
1870
 
1842
1871
  def deserialize(params)
@@ -1845,6 +1874,14 @@ module TencentCloud
1845
1874
  @Limit = params['Limit']
1846
1875
  @GroupId = params['GroupId']
1847
1876
  @Keyword = params['Keyword']
1877
+ unless params['Tags'].nil?
1878
+ @Tags = []
1879
+ params['Tags'].each do |i|
1880
+ tagitemfilter_tmp = TagItemFilter.new
1881
+ tagitemfilter_tmp.deserialize(i)
1882
+ @Tags << tagitemfilter_tmp
1883
+ end
1884
+ end
1848
1885
  end
1849
1886
  end
1850
1887
 
@@ -3319,10 +3356,13 @@ module TencentCloud
3319
3356
  # @param IsSubDomain: 是否是子域名。
3320
3357
  # 注意:此字段可能返回 null,表示取不到有效值。
3321
3358
  # @type IsSubDomain: Boolean
3359
+ # @param TagList: 域名关联的标签列表
3360
+ # 注意:此字段可能返回 null,表示取不到有效值。
3361
+ # @type TagList: Array
3322
3362
 
3323
- attr_accessor :DomainId, :Status, :Grade, :GroupId, :IsMark, :TTL, :CnameSpeedup, :Remark, :Punycode, :DnsStatus, :DnspodNsList, :Domain, :GradeLevel, :UserId, :IsVip, :Owner, :GradeTitle, :CreatedOn, :UpdatedOn, :Uin, :ActualNsList, :RecordCount, :OwnerNick, :IsGracePeriod, :VipBuffered, :VipStartAt, :VipEndAt, :VipAutoRenew, :VipResourceId, :IsSubDomain
3363
+ attr_accessor :DomainId, :Status, :Grade, :GroupId, :IsMark, :TTL, :CnameSpeedup, :Remark, :Punycode, :DnsStatus, :DnspodNsList, :Domain, :GradeLevel, :UserId, :IsVip, :Owner, :GradeTitle, :CreatedOn, :UpdatedOn, :Uin, :ActualNsList, :RecordCount, :OwnerNick, :IsGracePeriod, :VipBuffered, :VipStartAt, :VipEndAt, :VipAutoRenew, :VipResourceId, :IsSubDomain, :TagList
3324
3364
 
3325
- def initialize(domainid=nil, status=nil, grade=nil, groupid=nil, ismark=nil, ttl=nil, cnamespeedup=nil, remark=nil, punycode=nil, dnsstatus=nil, dnspodnslist=nil, domain=nil, gradelevel=nil, userid=nil, isvip=nil, owner=nil, gradetitle=nil, createdon=nil, updatedon=nil, uin=nil, actualnslist=nil, recordcount=nil, ownernick=nil, isgraceperiod=nil, vipbuffered=nil, vipstartat=nil, vipendat=nil, vipautorenew=nil, vipresourceid=nil, issubdomain=nil)
3365
+ def initialize(domainid=nil, status=nil, grade=nil, groupid=nil, ismark=nil, ttl=nil, cnamespeedup=nil, remark=nil, punycode=nil, dnsstatus=nil, dnspodnslist=nil, domain=nil, gradelevel=nil, userid=nil, isvip=nil, owner=nil, gradetitle=nil, createdon=nil, updatedon=nil, uin=nil, actualnslist=nil, recordcount=nil, ownernick=nil, isgraceperiod=nil, vipbuffered=nil, vipstartat=nil, vipendat=nil, vipautorenew=nil, vipresourceid=nil, issubdomain=nil, taglist=nil)
3326
3366
  @DomainId = domainid
3327
3367
  @Status = status
3328
3368
  @Grade = grade
@@ -3353,6 +3393,7 @@ module TencentCloud
3353
3393
  @VipAutoRenew = vipautorenew
3354
3394
  @VipResourceId = vipresourceid
3355
3395
  @IsSubDomain = issubdomain
3396
+ @TagList = taglist
3356
3397
  end
3357
3398
 
3358
3399
  def deserialize(params)
@@ -3386,6 +3427,14 @@ module TencentCloud
3386
3427
  @VipAutoRenew = params['VipAutoRenew']
3387
3428
  @VipResourceId = params['VipResourceId']
3388
3429
  @IsSubDomain = params['IsSubDomain']
3430
+ unless params['TagList'].nil?
3431
+ @TagList = []
3432
+ params['TagList'].each do |i|
3433
+ tagitem_tmp = TagItem.new
3434
+ tagitem_tmp.deserialize(i)
3435
+ @TagList << tagitem_tmp
3436
+ end
3437
+ end
3389
3438
  end
3390
3439
  end
3391
3440
 
@@ -3435,10 +3484,13 @@ module TencentCloud
3435
3484
  # @type UpdatedOn: String
3436
3485
  # @param Owner: 域名所属账号
3437
3486
  # @type Owner: String
3487
+ # @param TagList: 域名关联的标签列表
3488
+ # 注意:此字段可能返回 null,表示取不到有效值。
3489
+ # @type TagList: Array
3438
3490
 
3439
- attr_accessor :DomainId, :Name, :Status, :TTL, :CNAMESpeedup, :DNSStatus, :Grade, :GroupId, :SearchEnginePush, :Remark, :Punycode, :EffectiveDNS, :GradeLevel, :GradeTitle, :IsVip, :VipStartAt, :VipEndAt, :VipAutoRenew, :RecordCount, :CreatedOn, :UpdatedOn, :Owner
3491
+ attr_accessor :DomainId, :Name, :Status, :TTL, :CNAMESpeedup, :DNSStatus, :Grade, :GroupId, :SearchEnginePush, :Remark, :Punycode, :EffectiveDNS, :GradeLevel, :GradeTitle, :IsVip, :VipStartAt, :VipEndAt, :VipAutoRenew, :RecordCount, :CreatedOn, :UpdatedOn, :Owner, :TagList
3440
3492
 
3441
- def initialize(domainid=nil, name=nil, status=nil, ttl=nil, cnamespeedup=nil, dnsstatus=nil, grade=nil, groupid=nil, searchenginepush=nil, remark=nil, punycode=nil, effectivedns=nil, gradelevel=nil, gradetitle=nil, isvip=nil, vipstartat=nil, vipendat=nil, vipautorenew=nil, recordcount=nil, createdon=nil, updatedon=nil, owner=nil)
3493
+ def initialize(domainid=nil, name=nil, status=nil, ttl=nil, cnamespeedup=nil, dnsstatus=nil, grade=nil, groupid=nil, searchenginepush=nil, remark=nil, punycode=nil, effectivedns=nil, gradelevel=nil, gradetitle=nil, isvip=nil, vipstartat=nil, vipendat=nil, vipautorenew=nil, recordcount=nil, createdon=nil, updatedon=nil, owner=nil, taglist=nil)
3442
3494
  @DomainId = domainid
3443
3495
  @Name = name
3444
3496
  @Status = status
@@ -3461,6 +3513,7 @@ module TencentCloud
3461
3513
  @CreatedOn = createdon
3462
3514
  @UpdatedOn = updatedon
3463
3515
  @Owner = owner
3516
+ @TagList = taglist
3464
3517
  end
3465
3518
 
3466
3519
  def deserialize(params)
@@ -3486,6 +3539,14 @@ module TencentCloud
3486
3539
  @CreatedOn = params['CreatedOn']
3487
3540
  @UpdatedOn = params['UpdatedOn']
3488
3541
  @Owner = params['Owner']
3542
+ unless params['TagList'].nil?
3543
+ @TagList = []
3544
+ params['TagList'].each do |i|
3545
+ tagitem_tmp = TagItem.new
3546
+ tagitem_tmp.deserialize(i)
3547
+ @TagList << tagitem_tmp
3548
+ end
3549
+ end
3489
3550
  end
3490
3551
  end
3491
3552
 
@@ -5244,6 +5305,47 @@ module TencentCloud
5244
5305
  end
5245
5306
  end
5246
5307
 
5308
+ # 标签项
5309
+ class TagItem < TencentCloud::Common::AbstractModel
5310
+ # @param TagKey: 标签键
5311
+ # @type TagKey: String
5312
+ # @param TagValue: 标签值
5313
+ # 注意:此字段可能返回 null,表示取不到有效值。
5314
+ # @type TagValue: String
5315
+
5316
+ attr_accessor :TagKey, :TagValue
5317
+
5318
+ def initialize(tagkey=nil, tagvalue=nil)
5319
+ @TagKey = tagkey
5320
+ @TagValue = tagvalue
5321
+ end
5322
+
5323
+ def deserialize(params)
5324
+ @TagKey = params['TagKey']
5325
+ @TagValue = params['TagValue']
5326
+ end
5327
+ end
5328
+
5329
+ # 标签过滤条件
5330
+ class TagItemFilter < TencentCloud::Common::AbstractModel
5331
+ # @param TagKey: 标签键
5332
+ # @type TagKey: String
5333
+ # @param TagValue: 标签键
5334
+ # @type TagValue: Array
5335
+
5336
+ attr_accessor :TagKey, :TagValue
5337
+
5338
+ def initialize(tagkey=nil, tagvalue=nil)
5339
+ @TagKey = tagkey
5340
+ @TagValue = tagvalue
5341
+ end
5342
+
5343
+ def deserialize(params)
5344
+ @TagKey = params['TagKey']
5345
+ @TagValue = params['TagValue']
5346
+ end
5347
+ end
5348
+
5247
5349
  # 用户信息
5248
5350
  class UserInfo < TencentCloud::Common::AbstractModel
5249
5351
  # @param Nick: 用户昵称
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dnspod
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.608
4
+ version: 3.0.609
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-07-07 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common