tencentcloud-sdk-ses 1.0.360 → 1.0.363

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 +20 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ac87f5904b2604f7c98caf5539d05096ba874b0
4
- data.tar.gz: e2a6179d92a00809dbcbadb689722f748158d60c
3
+ metadata.gz: 1be97fd988caa364f288a4e982639be6a71e9779
4
+ data.tar.gz: 95a8a279bba19543a5957326d0f570b3ddf32bfb
5
5
  SHA512:
6
- metadata.gz: d7cc927cee5bc3132d67b752c83c121754045094f3894bcd6d4d9533f8f73a707196a21b619fca4bff3ae590fe7715737c36bca4ddcdb1f966c4ad886f334bb2
7
- data.tar.gz: 31758e86943f0eae962ff9890b539efad07a1cb0ed0c79563c5cd2b2bcf8a87a20fcb7c47e07b12d3fd498816e05cce6c579ebede7d8b3394cb873c58afe87ab
6
+ metadata.gz: 676b2f3be51dfbed9822a1d065eac1e76e2c9922ab21f2303db7991301bd7170570854ca5eda17309e1d4e0f6d428fd2c8081d65d24cfc13602fb9113a31ec3e
7
+ data.tar.gz: 6684790c4339ff55d40a2df3c003444cf49f30aa3c0ffab2292c085525bfc149bfeb513c5df95bf067a35668b9649dad2ef8e474426788d8135baf104e698c83
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.360
1
+ 1.0.363
@@ -627,19 +627,27 @@ module TencentCloud
627
627
  # @type IdentityType: String
628
628
  # @param SendingEnabled: 是否已通过验证
629
629
  # @type SendingEnabled: Boolean
630
+ # @param CurrentReputationLevel: 当前信誉等级
631
+ # @type CurrentReputationLevel: Integer
632
+ # @param DailyQuota: 当日最高发信量
633
+ # @type DailyQuota: Integer
630
634
 
631
- attr_accessor :IdentityName, :IdentityType, :SendingEnabled
635
+ attr_accessor :IdentityName, :IdentityType, :SendingEnabled, :CurrentReputationLevel, :DailyQuota
632
636
 
633
- def initialize(identityname=nil, identitytype=nil, sendingenabled=nil)
637
+ def initialize(identityname=nil, identitytype=nil, sendingenabled=nil, currentreputationlevel=nil, dailyquota=nil)
634
638
  @IdentityName = identityname
635
639
  @IdentityType = identitytype
636
640
  @SendingEnabled = sendingenabled
641
+ @CurrentReputationLevel = currentreputationlevel
642
+ @DailyQuota = dailyquota
637
643
  end
638
644
 
639
645
  def deserialize(params)
640
646
  @IdentityName = params['IdentityName']
641
647
  @IdentityType = params['IdentityType']
642
648
  @SendingEnabled = params['SendingEnabled']
649
+ @CurrentReputationLevel = params['CurrentReputationLevel']
650
+ @DailyQuota = params['DailyQuota']
643
651
  end
644
652
  end
645
653
 
@@ -1005,13 +1013,19 @@ module TencentCloud
1005
1013
  class ListEmailIdentitiesResponse < TencentCloud::Common::AbstractModel
1006
1014
  # @param EmailIdentities: 发信域名列表
1007
1015
  # @type EmailIdentities: Array
1016
+ # @param MaxReputationLevel: 最大信誉等级
1017
+ # @type MaxReputationLevel: Integer
1018
+ # @param MaxDailyQuota: 单域名最高日发送量
1019
+ # @type MaxDailyQuota: Integer
1008
1020
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1009
1021
  # @type RequestId: String
1010
1022
 
1011
- attr_accessor :EmailIdentities, :RequestId
1023
+ attr_accessor :EmailIdentities, :MaxReputationLevel, :MaxDailyQuota, :RequestId
1012
1024
 
1013
- def initialize(emailidentities=nil, requestid=nil)
1025
+ def initialize(emailidentities=nil, maxreputationlevel=nil, maxdailyquota=nil, requestid=nil)
1014
1026
  @EmailIdentities = emailidentities
1027
+ @MaxReputationLevel = maxreputationlevel
1028
+ @MaxDailyQuota = maxdailyquota
1015
1029
  @RequestId = requestid
1016
1030
  end
1017
1031
 
@@ -1024,6 +1038,8 @@ module TencentCloud
1024
1038
  @EmailIdentities << emailidentity_tmp
1025
1039
  end
1026
1040
  end
1041
+ @MaxReputationLevel = params['MaxReputationLevel']
1042
+ @MaxDailyQuota = params['MaxDailyQuota']
1027
1043
  @RequestId = params['RequestId']
1028
1044
  end
1029
1045
  end
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: 1.0.360
4
+ version: 1.0.363
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-20 00:00:00.000000000 Z
11
+ date: 2022-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common