tencentcloud-sdk-ses 1.0.359 → 1.0.362
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/v20201002/models.rb +26 -6
- 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: 77c833e8e8083076d3a6199c5bbb7335c44c89a7
|
4
|
+
data.tar.gz: 5e414a989b47a0e0d56e605996efb0387904cf59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 65db368ac9fccb62669a19c116c1f0d2c0ee466f5bd3c6e9705190933c51accf6b1b052c2d11ae9a3b4885195640cb8f51ae38a17ae713589a2c6a7dc5e89eaa
|
7
|
+
data.tar.gz: 9b51c1655ca870436bc1a1b44a1c67d44e3cc1947f29d0287b40a842c0e8617ade00496ce63e09409d775ee4a83ad37ed3478af1ce0de5151dd1bd35c36b9276
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.362
|
data/lib/v20201002/models.rb
CHANGED
@@ -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
|
|
@@ -740,13 +748,16 @@ module TencentCloud
|
|
740
748
|
class GetEmailTemplateResponse < TencentCloud::Common::AbstractModel
|
741
749
|
# @param TemplateContent: 模板内容数据
|
742
750
|
# @type TemplateContent: :class:`Tencentcloud::Ses.v20201002.models.TemplateContent`
|
751
|
+
# @param TemplateStatus: 模板状态 0-审核通过 1-待审核 2-审核拒绝
|
752
|
+
# @type TemplateStatus: Integer
|
743
753
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
744
754
|
# @type RequestId: String
|
745
755
|
|
746
|
-
attr_accessor :TemplateContent, :RequestId
|
756
|
+
attr_accessor :TemplateContent, :TemplateStatus, :RequestId
|
747
757
|
|
748
|
-
def initialize(templatecontent=nil, requestid=nil)
|
758
|
+
def initialize(templatecontent=nil, templatestatus=nil, requestid=nil)
|
749
759
|
@TemplateContent = templatecontent
|
760
|
+
@TemplateStatus = templatestatus
|
750
761
|
@RequestId = requestid
|
751
762
|
end
|
752
763
|
|
@@ -755,6 +766,7 @@ module TencentCloud
|
|
755
766
|
@TemplateContent = TemplateContent.new
|
756
767
|
@TemplateContent.deserialize(params['TemplateContent'])
|
757
768
|
end
|
769
|
+
@TemplateStatus = params['TemplateStatus']
|
758
770
|
@RequestId = params['RequestId']
|
759
771
|
end
|
760
772
|
end
|
@@ -1001,13 +1013,19 @@ module TencentCloud
|
|
1001
1013
|
class ListEmailIdentitiesResponse < TencentCloud::Common::AbstractModel
|
1002
1014
|
# @param EmailIdentities: 发信域名列表
|
1003
1015
|
# @type EmailIdentities: Array
|
1016
|
+
# @param MaxReputationLevel: 最大信誉等级
|
1017
|
+
# @type MaxReputationLevel: Integer
|
1018
|
+
# @param MaxDailyQuota: 单域名最高日发送量
|
1019
|
+
# @type MaxDailyQuota: Integer
|
1004
1020
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1005
1021
|
# @type RequestId: String
|
1006
1022
|
|
1007
|
-
attr_accessor :EmailIdentities, :RequestId
|
1023
|
+
attr_accessor :EmailIdentities, :MaxReputationLevel, :MaxDailyQuota, :RequestId
|
1008
1024
|
|
1009
|
-
def initialize(emailidentities=nil, requestid=nil)
|
1025
|
+
def initialize(emailidentities=nil, maxreputationlevel=nil, maxdailyquota=nil, requestid=nil)
|
1010
1026
|
@EmailIdentities = emailidentities
|
1027
|
+
@MaxReputationLevel = maxreputationlevel
|
1028
|
+
@MaxDailyQuota = maxdailyquota
|
1011
1029
|
@RequestId = requestid
|
1012
1030
|
end
|
1013
1031
|
|
@@ -1020,6 +1038,8 @@ module TencentCloud
|
|
1020
1038
|
@EmailIdentities << emailidentity_tmp
|
1021
1039
|
end
|
1022
1040
|
end
|
1041
|
+
@MaxReputationLevel = params['MaxReputationLevel']
|
1042
|
+
@MaxDailyQuota = params['MaxDailyQuota']
|
1023
1043
|
@RequestId = params['RequestId']
|
1024
1044
|
end
|
1025
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.
|
4
|
+
version: 1.0.362
|
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-
|
11
|
+
date: 2022-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|