tencentcloud-sdk-privatedns 3.0.954 → 3.0.955

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/v20201028/models.rb +19 -6
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7f6e96a73b6e3fa5f1a15ca166ef5fe25638130
4
- data.tar.gz: e797e08d9214d67fba3675b848fab4a5509695bb
3
+ metadata.gz: d2174aa7a090ad63867501b00a60c8dc08a0e442
4
+ data.tar.gz: 000ab239019b88556c62e17e563066e967bc2efa
5
5
  SHA512:
6
- metadata.gz: 1abbd95d0f9b5c02fce2c57cc4c1f8e9657fe3b710d71c4214b288607e68b4e528527202728a3c091ad4adf7032f5a936fd7f7863725e47164569d4bccbf54eb
7
- data.tar.gz: 3911f42b9fa30422d3169a8308145de259c298550f7e73a1991e988bfe80b3c5a5f36f4791383bdc1bfa05ceb6e5f4145d460177c5f4f2837b2e39fd7ce93f2b
6
+ metadata.gz: 51d2011aea8e60ab310ed3aa00dec637b7af067d5c5f45d376bd26114b224e8d77c93b17d9970114e12f50b3219e7578e8e4dd28af81045b7df5e49b263cf94b
7
+ data.tar.gz: 5568bab207d1c23f9c259e127980654d786ac3ddc2f37b99686273789a4bda766244ee86f48cda6cf82b7896535921860d8dec51c56975215c2253bd72b2f041
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.954
1
+ 3.0.955
@@ -299,10 +299,12 @@ module TencentCloud
299
299
  # @type MX: Integer
300
300
  # @param TTL: 记录缓存时间,数值越小生效越快,取值1-86400s, 默认 600
301
301
  # @type TTL: Integer
302
+ # @param Remark: 备注
303
+ # @type Remark: String
302
304
 
303
- attr_accessor :ZoneId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL
305
+ attr_accessor :ZoneId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL, :Remark
304
306
 
305
- def initialize(zoneid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil)
307
+ def initialize(zoneid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil, remark=nil)
306
308
  @ZoneId = zoneid
307
309
  @RecordType = recordtype
308
310
  @SubDomain = subdomain
@@ -310,6 +312,7 @@ module TencentCloud
310
312
  @Weight = weight
311
313
  @MX = mx
312
314
  @TTL = ttl
315
+ @Remark = remark
313
316
  end
314
317
 
315
318
  def deserialize(params)
@@ -320,6 +323,7 @@ module TencentCloud
320
323
  @Weight = params['Weight']
321
324
  @MX = params['MX']
322
325
  @TTL = params['TTL']
326
+ @Remark = params['Remark']
323
327
  end
324
328
  end
325
329
 
@@ -1295,10 +1299,12 @@ module TencentCloud
1295
1299
  # @type MX: Integer
1296
1300
  # @param TTL: 记录缓存时间,数值越小生效越快,取值1-86400s, 默认 600
1297
1301
  # @type TTL: Integer
1302
+ # @param Remark: 备注
1303
+ # @type Remark: String
1298
1304
 
1299
- attr_accessor :ZoneId, :RecordId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL
1305
+ attr_accessor :ZoneId, :RecordId, :RecordType, :SubDomain, :RecordValue, :Weight, :MX, :TTL, :Remark
1300
1306
 
1301
- def initialize(zoneid=nil, recordid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil)
1307
+ def initialize(zoneid=nil, recordid=nil, recordtype=nil, subdomain=nil, recordvalue=nil, weight=nil, mx=nil, ttl=nil, remark=nil)
1302
1308
  @ZoneId = zoneid
1303
1309
  @RecordId = recordid
1304
1310
  @RecordType = recordtype
@@ -1307,6 +1313,7 @@ module TencentCloud
1307
1313
  @Weight = weight
1308
1314
  @MX = mx
1309
1315
  @TTL = ttl
1316
+ @Remark = remark
1310
1317
  end
1311
1318
 
1312
1319
  def deserialize(params)
@@ -1318,6 +1325,7 @@ module TencentCloud
1318
1325
  @Weight = params['Weight']
1319
1326
  @MX = params['MX']
1320
1327
  @TTL = params['TTL']
1328
+ @Remark = params['Remark']
1321
1329
  end
1322
1330
  end
1323
1331
 
@@ -1694,10 +1702,13 @@ module TencentCloud
1694
1702
  # @param Enabled: 0暂停,1启用
1695
1703
  # 注意:此字段可能返回 null,表示取不到有效值。
1696
1704
  # @type Enabled: Integer
1705
+ # @param Remark: 备注
1706
+ # 注意:此字段可能返回 null,表示取不到有效值。
1707
+ # @type Remark: String
1697
1708
 
1698
- attr_accessor :RecordId, :ZoneId, :SubDomain, :RecordType, :RecordValue, :TTL, :MX, :Status, :Weight, :CreatedOn, :UpdatedOn, :Extra, :Enabled
1709
+ attr_accessor :RecordId, :ZoneId, :SubDomain, :RecordType, :RecordValue, :TTL, :MX, :Status, :Weight, :CreatedOn, :UpdatedOn, :Extra, :Enabled, :Remark
1699
1710
 
1700
- def initialize(recordid=nil, zoneid=nil, subdomain=nil, recordtype=nil, recordvalue=nil, ttl=nil, mx=nil, status=nil, weight=nil, createdon=nil, updatedon=nil, extra=nil, enabled=nil)
1711
+ def initialize(recordid=nil, zoneid=nil, subdomain=nil, recordtype=nil, recordvalue=nil, ttl=nil, mx=nil, status=nil, weight=nil, createdon=nil, updatedon=nil, extra=nil, enabled=nil, remark=nil)
1701
1712
  @RecordId = recordid
1702
1713
  @ZoneId = zoneid
1703
1714
  @SubDomain = subdomain
@@ -1711,6 +1722,7 @@ module TencentCloud
1711
1722
  @UpdatedOn = updatedon
1712
1723
  @Extra = extra
1713
1724
  @Enabled = enabled
1725
+ @Remark = remark
1714
1726
  end
1715
1727
 
1716
1728
  def deserialize(params)
@@ -1727,6 +1739,7 @@ module TencentCloud
1727
1739
  @UpdatedOn = params['UpdatedOn']
1728
1740
  @Extra = params['Extra']
1729
1741
  @Enabled = params['Enabled']
1742
+ @Remark = params['Remark']
1730
1743
  end
1731
1744
  end
1732
1745
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-privatedns
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.954
4
+ version: 3.0.955
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud