tencentcloud-sdk-dnspod 3.0.1065 → 3.0.1067
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/v20210323/models.rb +2 -14
- 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: f115df84f0782daeb6d44a605599ac4e4febd9ef
|
4
|
+
data.tar.gz: b36f40273317a68b48f6dc7e0a76b3f067ccee5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d978ba9a79a7737266fa0952559704c0066ce29e4aa1e77e5b03490bb60cde20292d2403a4dd9d79f40fb7f7349381571a4a84941691290d8f1beb28bfdd719
|
7
|
+
data.tar.gz: 4e95df4488444c901e20e5164adffb6389b8665cb4fae0755fee9768be6f920f4f2394ce88f1d5ebb669c62f97d65405b4f94e670f753124bebe66caa194a1ea
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1067
|
data/lib/v20210323/models.rb
CHANGED
@@ -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, :
|
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,
|
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
|
|
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.
|
4
|
+
version: 3.0.1067
|
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-
|
11
|
+
date: 2025-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|