tencentcloud-sdk-ses 3.0.1097 → 3.0.1099

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/v20201002/models.rb +73 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2607364a56279ac3cb1af7b144c6a3be35b2031
4
- data.tar.gz: 2672d34402ec6acfbdf5e3615baf0da1a01e7623
3
+ metadata.gz: b6ef9e9db5112b2dbb8ad10e70ee2dcc1868f9eb
4
+ data.tar.gz: 1adb6e683ca119e1781bd3b261662b49fc32e845
5
5
  SHA512:
6
- metadata.gz: c47278f953850687411070602459fa3e7efba3c8ab92c77113ad25c9563f8b1ba82b3c05a3e14a5307e47703d8d44ddd1f7aabb7500a919212e377673b982019
7
- data.tar.gz: 10c32913402d60491bc87f4aeb23fe5365c235ec8abfd896503146b1cb76fd6b9a57299acf6529591622116cf34a6ef316e4fa2f172ff2a0b48014c380a65972
6
+ metadata.gz: ead3939e98989343bfcd73b5d897ae6bfebe7264a8f448e4636a1fb1b3a768a3533d152a4f612d1b5f1324c753619f46f47aa00672b402e9c557400eefc8918c
7
+ data.tar.gz: 05b3c13e73c8f5eeaee1da13521656e92995f043a89ecddded5e3776bdd0a52f814ec195f3b088b711e15c1ea3f8412c264fc6611822f53d658e950b0998dfb3
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1097
1
+ 3.0.1099
@@ -361,17 +361,28 @@ module TencentCloud
361
361
  # @type EmailIdentity: String
362
362
  # @param DKIMOption: 生成的dkim密钥长度。0:1024,1:2048
363
363
  # @type DKIMOption: Integer
364
+ # @param TagList: tag 标签
365
+ # @type TagList: Array
364
366
 
365
- attr_accessor :EmailIdentity, :DKIMOption
367
+ attr_accessor :EmailIdentity, :DKIMOption, :TagList
366
368
 
367
- def initialize(emailidentity=nil, dkimoption=nil)
369
+ def initialize(emailidentity=nil, dkimoption=nil, taglist=nil)
368
370
  @EmailIdentity = emailidentity
369
371
  @DKIMOption = dkimoption
372
+ @TagList = taglist
370
373
  end
371
374
 
372
375
  def deserialize(params)
373
376
  @EmailIdentity = params['EmailIdentity']
374
377
  @DKIMOption = params['DKIMOption']
378
+ unless params['TagList'].nil?
379
+ @TagList = []
380
+ params['TagList'].each do |i|
381
+ taglist_tmp = TagList.new
382
+ taglist_tmp.deserialize(i)
383
+ @TagList << taglist_tmp
384
+ end
385
+ end
375
386
  end
376
387
  end
377
388
 
@@ -906,16 +917,19 @@ module TencentCloud
906
917
  # @type DailyQuota: Integer
907
918
  # @param SendIp: 域名配置的独立ip
908
919
  # @type SendIp: Array
920
+ # @param TagList: tag 标签
921
+ # @type TagList: Array
909
922
 
910
- attr_accessor :IdentityName, :IdentityType, :SendingEnabled, :CurrentReputationLevel, :DailyQuota, :SendIp
923
+ attr_accessor :IdentityName, :IdentityType, :SendingEnabled, :CurrentReputationLevel, :DailyQuota, :SendIp, :TagList
911
924
 
912
- def initialize(identityname=nil, identitytype=nil, sendingenabled=nil, currentreputationlevel=nil, dailyquota=nil, sendip=nil)
925
+ def initialize(identityname=nil, identitytype=nil, sendingenabled=nil, currentreputationlevel=nil, dailyquota=nil, sendip=nil, taglist=nil)
913
926
  @IdentityName = identityname
914
927
  @IdentityType = identitytype
915
928
  @SendingEnabled = sendingenabled
916
929
  @CurrentReputationLevel = currentreputationlevel
917
930
  @DailyQuota = dailyquota
918
931
  @SendIp = sendip
932
+ @TagList = taglist
919
933
  end
920
934
 
921
935
  def deserialize(params)
@@ -925,6 +939,14 @@ module TencentCloud
925
939
  @CurrentReputationLevel = params['CurrentReputationLevel']
926
940
  @DailyQuota = params['DailyQuota']
927
941
  @SendIp = params['SendIp']
942
+ unless params['TagList'].nil?
943
+ @TagList = []
944
+ params['TagList'].each do |i|
945
+ taglist_tmp = TagList.new
946
+ taglist_tmp.deserialize(i)
947
+ @TagList << taglist_tmp
948
+ end
949
+ end
928
950
  end
929
951
  end
930
952
 
@@ -1392,12 +1414,32 @@ module TencentCloud
1392
1414
 
1393
1415
  # ListEmailIdentities请求参数结构体
1394
1416
  class ListEmailIdentitiesRequest < TencentCloud::Common::AbstractModel
1417
+ # @param TagList: tag 标签
1418
+ # @type TagList: Array
1419
+ # @param Limit: 分页 limit
1420
+ # @type Limit: Integer
1421
+ # @param Offset: 分页 offset
1422
+ # @type Offset: Integer
1395
1423
 
1424
+ attr_accessor :TagList, :Limit, :Offset
1396
1425
 
1397
- def initialize()
1426
+ def initialize(taglist=nil, limit=nil, offset=nil)
1427
+ @TagList = taglist
1428
+ @Limit = limit
1429
+ @Offset = offset
1398
1430
  end
1399
1431
 
1400
1432
  def deserialize(params)
1433
+ unless params['TagList'].nil?
1434
+ @TagList = []
1435
+ params['TagList'].each do |i|
1436
+ taglist_tmp = TagList.new
1437
+ taglist_tmp.deserialize(i)
1438
+ @TagList << taglist_tmp
1439
+ end
1440
+ end
1441
+ @Limit = params['Limit']
1442
+ @Offset = params['Offset']
1401
1443
  end
1402
1444
  end
1403
1445
 
@@ -1409,15 +1451,18 @@ module TencentCloud
1409
1451
  # @type MaxReputationLevel: Integer
1410
1452
  # @param MaxDailyQuota: 单域名最高日发送量
1411
1453
  # @type MaxDailyQuota: Integer
1454
+ # @param Total: 总数
1455
+ # @type Total: Integer
1412
1456
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1413
1457
  # @type RequestId: String
1414
1458
 
1415
- attr_accessor :EmailIdentities, :MaxReputationLevel, :MaxDailyQuota, :RequestId
1459
+ attr_accessor :EmailIdentities, :MaxReputationLevel, :MaxDailyQuota, :Total, :RequestId
1416
1460
 
1417
- def initialize(emailidentities=nil, maxreputationlevel=nil, maxdailyquota=nil, requestid=nil)
1461
+ def initialize(emailidentities=nil, maxreputationlevel=nil, maxdailyquota=nil, total=nil, requestid=nil)
1418
1462
  @EmailIdentities = emailidentities
1419
1463
  @MaxReputationLevel = maxreputationlevel
1420
1464
  @MaxDailyQuota = maxdailyquota
1465
+ @Total = total
1421
1466
  @RequestId = requestid
1422
1467
  end
1423
1468
 
@@ -1432,6 +1477,7 @@ module TencentCloud
1432
1477
  end
1433
1478
  @MaxReputationLevel = params['MaxReputationLevel']
1434
1479
  @MaxDailyQuota = params['MaxDailyQuota']
1480
+ @Total = params['Total']
1435
1481
  @RequestId = params['RequestId']
1436
1482
  end
1437
1483
  end
@@ -2091,6 +2137,26 @@ module TencentCloud
2091
2137
  end
2092
2138
  end
2093
2139
 
2140
+ # 标签
2141
+ class TagList < TencentCloud::Common::AbstractModel
2142
+ # @param TagKey: 产品
2143
+ # @type TagKey: String
2144
+ # @param TagValue: ses
2145
+ # @type TagValue: String
2146
+
2147
+ attr_accessor :TagKey, :TagValue
2148
+
2149
+ def initialize(tagkey=nil, tagvalue=nil)
2150
+ @TagKey = tagkey
2151
+ @TagValue = tagvalue
2152
+ end
2153
+
2154
+ def deserialize(params)
2155
+ @TagKey = params['TagKey']
2156
+ @TagValue = params['TagValue']
2157
+ end
2158
+ end
2159
+
2094
2160
  # 模板发送相关信息,包含模板ID,模板变量参数等信息
2095
2161
  class Template < TencentCloud::Common::AbstractModel
2096
2162
  # @param TemplateID: 模板ID。如果没有模板,请先新建一个
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ses
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1097
4
+ version: 3.0.1099
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-07-09 00:00:00.000000000 Z
11
+ date: 2025-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common