tencentcloud-sdk-ses 3.0.1002 → 3.0.1003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201002/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd146e612b38134092718da421e4924df09d9211
|
4
|
+
data.tar.gz: 42ef5f83146469423939d227c9e9228a5fb40847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38108a939e9b0930d04c0af952b3731d770d9875b9bc542cd587b18f1454a93f30b3d4eb3419f95c52bcd186a3d2356588ce0a1c208aa171911203da0442c5ec
|
7
|
+
data.tar.gz: 7cc39b04a95e8b2f73d9ee9f1d85f0f753e0ae7deafe4837b3cd0adafad4f01a6b084356157e24d04e8486805546e8bbfe995d0a26e0fe14d86f168197f1c92c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1003
|
data/lib/v20201002/models.rb
CHANGED
@@ -801,15 +801,18 @@ module TencentCloud
|
|
801
801
|
# @type CurrentReputationLevel: Integer
|
802
802
|
# @param DailyQuota: 当日最高发信量
|
803
803
|
# @type DailyQuota: Integer
|
804
|
+
# @param SendIp: 域名配置的独立ip
|
805
|
+
# @type SendIp: Array
|
804
806
|
|
805
|
-
attr_accessor :IdentityName, :IdentityType, :SendingEnabled, :CurrentReputationLevel, :DailyQuota
|
807
|
+
attr_accessor :IdentityName, :IdentityType, :SendingEnabled, :CurrentReputationLevel, :DailyQuota, :SendIp
|
806
808
|
|
807
|
-
def initialize(identityname=nil, identitytype=nil, sendingenabled=nil, currentreputationlevel=nil, dailyquota=nil)
|
809
|
+
def initialize(identityname=nil, identitytype=nil, sendingenabled=nil, currentreputationlevel=nil, dailyquota=nil, sendip=nil)
|
808
810
|
@IdentityName = identityname
|
809
811
|
@IdentityType = identitytype
|
810
812
|
@SendingEnabled = sendingenabled
|
811
813
|
@CurrentReputationLevel = currentreputationlevel
|
812
814
|
@DailyQuota = dailyquota
|
815
|
+
@SendIp = sendip
|
813
816
|
end
|
814
817
|
|
815
818
|
def deserialize(params)
|
@@ -818,6 +821,7 @@ module TencentCloud
|
|
818
821
|
@SendingEnabled = params['SendingEnabled']
|
819
822
|
@CurrentReputationLevel = params['CurrentReputationLevel']
|
820
823
|
@DailyQuota = params['DailyQuota']
|
824
|
+
@SendIp = params['SendIp']
|
821
825
|
end
|
822
826
|
end
|
823
827
|
|