tencentcloud-sdk-dnspod 3.0.1066 → 3.0.1068

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 +3 -15
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9021a01236464b3a05c1feb532b4e60bf78003f
4
- data.tar.gz: 0f9b1199019051d9403f8c4050eeb1a28f518b4e
3
+ metadata.gz: 6a06b62ae466791e5057d545120fcc78d963aa8c
4
+ data.tar.gz: 21222bd26f34e8ab8c8d2256bbe73597cf4e86e9
5
5
  SHA512:
6
- metadata.gz: 66330ef90b3608ee216e769dc8098122c5edc326c3789ca9ed14f3ed5feb457324367d596509c517ef81a8c127ac88cf3d9290e301f7436ae368c617ef1f41ac
7
- data.tar.gz: 232a59eb3a6aea031826d005537b36730471eef32454dc1798f6a2e93c9935d6978cb229d6bd7cd48ab1d564f94ece32630ea49b50b5ae4bdfe322957c8deaeb
6
+ metadata.gz: ede9f005281e424beba301258e79a1760487959c30b3003cc4fb6524eef3daae66161826393b1ab7a70b9c213b73f6734d1aeed15100d167f1a7a60afb8b5816
7
+ data.tar.gz: 66ac1fafd94c22ee192e7e8eeeb7803553c81a7ba9f1d0dd29d2feefb31475bfea89bba35217eeaabe07671a15b1f692d221ee806cfebbd58d2d1744bbad326d
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1066
1
+ 3.0.1068
@@ -29,30 +29,21 @@ module TencentCloud
29
29
  # @type RecordLine: String
30
30
  # @param RecordLineId: 解析记录的线路 ID,RecordLine和RecordLineId都有时,系统优先取 RecordLineId。
31
31
  # @type RecordLineId: String
32
- # @param Weight: 记录权重值(暂未支持)。
33
- # @type Weight: Integer
34
32
  # @param MX: 记录的 MX 记录值,非 MX 记录类型,默认为 0,MX记录则必选。
35
33
  # @type MX: Integer
36
34
  # @param TTL: 记录的 TTL 值,默认600。
37
35
  # @type TTL: Integer
38
- # @param Enabled: 记录状态(暂未支持)。0表示禁用,1表示启用。默认启用。
39
- # @type Enabled: Integer
40
- # @param Remark: 记录备注(暂未支持)。
41
- # @type Remark: String
42
36
 
43
- attr_accessor :RecordType, :Value, :SubDomain, :RecordLine, :RecordLineId, :Weight, :MX, :TTL, :Enabled, :Remark
37
+ attr_accessor :RecordType, :Value, :SubDomain, :RecordLine, :RecordLineId, :MX, :TTL
44
38
 
45
- def initialize(recordtype=nil, value=nil, subdomain=nil, recordline=nil, recordlineid=nil, weight=nil, mx=nil, ttl=nil, enabled=nil, remark=nil)
39
+ def initialize(recordtype=nil, value=nil, subdomain=nil, recordline=nil, recordlineid=nil, mx=nil, ttl=nil)
46
40
  @RecordType = recordtype
47
41
  @Value = value
48
42
  @SubDomain = subdomain
49
43
  @RecordLine = recordline
50
44
  @RecordLineId = recordlineid
51
- @Weight = weight
52
45
  @MX = mx
53
46
  @TTL = ttl
54
- @Enabled = enabled
55
- @Remark = remark
56
47
  end
57
48
 
58
49
  def deserialize(params)
@@ -61,11 +52,8 @@ module TencentCloud
61
52
  @SubDomain = params['SubDomain']
62
53
  @RecordLine = params['RecordLine']
63
54
  @RecordLineId = params['RecordLineId']
64
- @Weight = params['Weight']
65
55
  @MX = params['MX']
66
56
  @TTL = params['TTL']
67
- @Enabled = params['Enabled']
68
- @Remark = params['Remark']
69
57
  end
70
58
  end
71
59
 
@@ -5562,7 +5550,7 @@ module TencentCloud
5562
5550
 
5563
5551
  # ModifyRecordBatch请求参数结构体
5564
5552
  class ModifyRecordBatchRequest < TencentCloud::Common::AbstractModel
5565
- # @param RecordIdList: 记录ID数组。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId
5553
+ # @param RecordIdList: 记录ID数组。可以通过接口DescribeRecordList查到所有的解析记录列表以及对应的RecordId。单次最多修改5000条记录。
5566
5554
  # @type RecordIdList: Array
5567
5555
  # @param Change: 要修改的字段,可选值为 [“sub_domain”、”record_type”、”area”、”value”、”mx”、”ttl”、”status”] 中的某一个。
5568
5556
  # @type Change: String
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.1066
4
+ version: 3.0.1068
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-22 00:00:00.000000000 Z
11
+ date: 2025-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common