tencentcloud-sdk-ses 3.0.895 → 3.0.896

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/v20201002/models.rb +75 -10
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bd93ebbb2349372b483a341d481288b231c5760
4
- data.tar.gz: 87ae5fdbeeedde404c15a4b71bbe36238a466722
3
+ metadata.gz: deaeb41f4cc0f54c88af73104deb09c242f57632
4
+ data.tar.gz: 4ed8b40cf2b7f0e188dbd13a3939daedf70139c4
5
5
  SHA512:
6
- metadata.gz: 1005b12821d19d1318ae951c24a7d1d135f4159654db0c9045f72c7f35e4f99d0c56919c0a8e7da9934006919f8afd6fe44a98b1c6a5bedf8e9592ccef806183
7
- data.tar.gz: 79957403b65fdefb3782857da034f9d4ff642db5df0b9327123b31f104e97b69d8f069f8fa32b75eb125003e0f9daf791fe69a18c50d27e6ad2a1b73591fa325
6
+ metadata.gz: e5d7b005038fc3f1e68724e240b9dfa0cda1a00ec3cbf27e7ba7508a5ac19cfe8c2b767482618c0004bcb743c5343d129f4f2a1c21716b06fbf1e086e4771ed6
7
+ data.tar.gz: fa89080da6f5be576dd6399565e2819a416d19eda747e8f8c7c964a5336ddae367d0499916b6b712a7131567644dd25be11184b9b13357120ed0c6f3aa77cd90
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.895
1
+ 3.0.896
@@ -433,16 +433,41 @@ module TencentCloud
433
433
 
434
434
  # CreateReceiverDetailWithData返回参数结构体
435
435
  class CreateReceiverDetailWithDataResponse < TencentCloud::Common::AbstractModel
436
+ # @param TotalCount: 收件人总数
437
+ # 注意:此字段可能返回 null,表示取不到有效值。
438
+ # @type TotalCount: Integer
439
+ # @param ValidCount: 实际上传数量
440
+ # 注意:此字段可能返回 null,表示取不到有效值。
441
+ # @type ValidCount: Integer
442
+ # @param TooLongCount: 数据过长数量
443
+ # 注意:此字段可能返回 null,表示取不到有效值。
444
+ # @type TooLongCount: Integer
445
+ # @param EmptyEmailCount: 邮件地址为空数量
446
+ # 注意:此字段可能返回 null,表示取不到有效值。
447
+ # @type EmptyEmailCount: Integer
448
+ # @param RepeatCount: 重复数量
449
+ # 注意:此字段可能返回 null,表示取不到有效值。
450
+ # @type RepeatCount: Integer
436
451
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
437
452
  # @type RequestId: String
438
453
 
439
- attr_accessor :RequestId
454
+ attr_accessor :TotalCount, :ValidCount, :TooLongCount, :EmptyEmailCount, :RepeatCount, :RequestId
440
455
 
441
- def initialize(requestid=nil)
456
+ def initialize(totalcount=nil, validcount=nil, toolongcount=nil, emptyemailcount=nil, repeatcount=nil, requestid=nil)
457
+ @TotalCount = totalcount
458
+ @ValidCount = validcount
459
+ @TooLongCount = toolongcount
460
+ @EmptyEmailCount = emptyemailcount
461
+ @RepeatCount = repeatcount
442
462
  @RequestId = requestid
443
463
  end
444
464
 
445
465
  def deserialize(params)
466
+ @TotalCount = params['TotalCount']
467
+ @ValidCount = params['ValidCount']
468
+ @TooLongCount = params['TooLongCount']
469
+ @EmptyEmailCount = params['EmptyEmailCount']
470
+ @RepeatCount = params['RepeatCount']
446
471
  @RequestId = params['RequestId']
447
472
  end
448
473
  end
@@ -1284,14 +1309,23 @@ module TencentCloud
1284
1309
  # @type Limit: Integer
1285
1310
  # @param Email: 收件人地址,长度0-50,示例:xxx@te.com,支持模糊查询
1286
1311
  # @type Email: String
1312
+ # @param CreateTimeBegin: 搜索开始时间
1313
+ # @type CreateTimeBegin: String
1314
+ # @param CreateTimeEnd: 搜索结束时间
1315
+ # @type CreateTimeEnd: String
1316
+ # @param Status: 1:有效,2:无效
1317
+ # @type Status: Integer
1287
1318
 
1288
- attr_accessor :ReceiverId, :Offset, :Limit, :Email
1319
+ attr_accessor :ReceiverId, :Offset, :Limit, :Email, :CreateTimeBegin, :CreateTimeEnd, :Status
1289
1320
 
1290
- def initialize(receiverid=nil, offset=nil, limit=nil, email=nil)
1321
+ def initialize(receiverid=nil, offset=nil, limit=nil, email=nil, createtimebegin=nil, createtimeend=nil, status=nil)
1291
1322
  @ReceiverId = receiverid
1292
1323
  @Offset = offset
1293
1324
  @Limit = limit
1294
1325
  @Email = email
1326
+ @CreateTimeBegin = createtimebegin
1327
+ @CreateTimeEnd = createtimeend
1328
+ @Status = status
1295
1329
  end
1296
1330
 
1297
1331
  def deserialize(params)
@@ -1299,6 +1333,9 @@ module TencentCloud
1299
1333
  @Offset = params['Offset']
1300
1334
  @Limit = params['Limit']
1301
1335
  @Email = params['Email']
1336
+ @CreateTimeBegin = params['CreateTimeBegin']
1337
+ @CreateTimeEnd = params['CreateTimeEnd']
1338
+ @Status = params['Status']
1302
1339
  end
1303
1340
  end
1304
1341
 
@@ -1308,14 +1345,20 @@ module TencentCloud
1308
1345
  # @type TotalCount: Integer
1309
1346
  # @param Data: 数据记录
1310
1347
  # @type Data: Array
1348
+ # @param ValidCount: 有效邮件地址数
1349
+ # @type ValidCount: Integer
1350
+ # @param InvalidCount: 无效邮件地址数
1351
+ # @type InvalidCount: Integer
1311
1352
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1312
1353
  # @type RequestId: String
1313
1354
 
1314
- attr_accessor :TotalCount, :Data, :RequestId
1355
+ attr_accessor :TotalCount, :Data, :ValidCount, :InvalidCount, :RequestId
1315
1356
 
1316
- def initialize(totalcount=nil, data=nil, requestid=nil)
1357
+ def initialize(totalcount=nil, data=nil, validcount=nil, invalidcount=nil, requestid=nil)
1317
1358
  @TotalCount = totalcount
1318
1359
  @Data = data
1360
+ @ValidCount = validcount
1361
+ @InvalidCount = invalidcount
1319
1362
  @RequestId = requestid
1320
1363
  end
1321
1364
 
@@ -1329,6 +1372,8 @@ module TencentCloud
1329
1372
  @Data << receiverdetail_tmp
1330
1373
  end
1331
1374
  end
1375
+ @ValidCount = params['ValidCount']
1376
+ @InvalidCount = params['InvalidCount']
1332
1377
  @RequestId = params['RequestId']
1333
1378
  end
1334
1379
  end
@@ -1471,16 +1516,20 @@ module TencentCloud
1471
1516
  # @type ReceiversStatus: Integer
1472
1517
  # @param CreateTime: 创建时间,如:2021-09-28 16:40:35
1473
1518
  # @type CreateTime: String
1519
+ # @param InvalidCount: 无效收件人数量
1520
+ # 注意:此字段可能返回 null,表示取不到有效值。
1521
+ # @type InvalidCount: Integer
1474
1522
 
1475
- attr_accessor :ReceiverId, :ReceiversName, :Count, :Desc, :ReceiversStatus, :CreateTime
1523
+ attr_accessor :ReceiverId, :ReceiversName, :Count, :Desc, :ReceiversStatus, :CreateTime, :InvalidCount
1476
1524
 
1477
- def initialize(receiverid=nil, receiversname=nil, count=nil, desc=nil, receiversstatus=nil, createtime=nil)
1525
+ def initialize(receiverid=nil, receiversname=nil, count=nil, desc=nil, receiversstatus=nil, createtime=nil, invalidcount=nil)
1478
1526
  @ReceiverId = receiverid
1479
1527
  @ReceiversName = receiversname
1480
1528
  @Count = count
1481
1529
  @Desc = desc
1482
1530
  @ReceiversStatus = receiversstatus
1483
1531
  @CreateTime = createtime
1532
+ @InvalidCount = invalidcount
1484
1533
  end
1485
1534
 
1486
1535
  def deserialize(params)
@@ -1490,6 +1539,7 @@ module TencentCloud
1490
1539
  @Desc = params['Desc']
1491
1540
  @ReceiversStatus = params['ReceiversStatus']
1492
1541
  @CreateTime = params['CreateTime']
1542
+ @InvalidCount = params['InvalidCount']
1493
1543
  end
1494
1544
  end
1495
1545
 
@@ -1501,19 +1551,34 @@ module TencentCloud
1501
1551
  # @type CreateTime: String
1502
1552
  # @param TemplateData: 模板参数
1503
1553
  # @type TemplateData: String
1554
+ # @param Reason: 无效原因
1555
+ # 注意:此字段可能返回 null,表示取不到有效值。
1556
+ # @type Reason: String
1557
+ # @param Status: 1:有效,2:无效
1558
+ # 注意:此字段可能返回 null,表示取不到有效值。
1559
+ # @type Status: Integer
1560
+ # @param EmailId: 收件人地址id
1561
+ # 注意:此字段可能返回 null,表示取不到有效值。
1562
+ # @type EmailId: Integer
1504
1563
 
1505
- attr_accessor :Email, :CreateTime, :TemplateData
1564
+ attr_accessor :Email, :CreateTime, :TemplateData, :Reason, :Status, :EmailId
1506
1565
 
1507
- def initialize(email=nil, createtime=nil, templatedata=nil)
1566
+ def initialize(email=nil, createtime=nil, templatedata=nil, reason=nil, status=nil, emailid=nil)
1508
1567
  @Email = email
1509
1568
  @CreateTime = createtime
1510
1569
  @TemplateData = templatedata
1570
+ @Reason = reason
1571
+ @Status = status
1572
+ @EmailId = emailid
1511
1573
  end
1512
1574
 
1513
1575
  def deserialize(params)
1514
1576
  @Email = params['Email']
1515
1577
  @CreateTime = params['CreateTime']
1516
1578
  @TemplateData = params['TemplateData']
1579
+ @Reason = params['Reason']
1580
+ @Status = params['Status']
1581
+ @EmailId = params['EmailId']
1517
1582
  end
1518
1583
  end
1519
1584
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.895
4
+ version: 3.0.896
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud