tencentcloud-sdk-ses 3.0.988 → 3.0.990
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 +29 -8
- 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: 0539c27c658fb73ea074ff09472dfcbef4dbc747
|
4
|
+
data.tar.gz: 98f0ff21436f0c5c44e5e5caab9f3b83d5ed8fca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77a19e287062b1fd0cbe2db75ec43bee5a7b69704503885dd2621fab00e23b5552912c17accacadcdbf8faf333817364bc8e992f1aabc84da80c3cbc655a4e0b
|
7
|
+
data.tar.gz: f3c73dc7a4924503db4ce6555d8f9f49e0f62ce82173849a3f6703203f9e88243d1396406d1f612a73a830dfc4730c746a5a1cd37327b5fc58396ca354ead647
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.990
|
data/lib/v20201002/models.rb
CHANGED
@@ -405,16 +405,36 @@ module TencentCloud
|
|
405
405
|
|
406
406
|
# CreateReceiverDetail返回参数结构体
|
407
407
|
class CreateReceiverDetailResponse < TencentCloud::Common::AbstractModel
|
408
|
+
# @param TotalCount: 收件人总数
|
409
|
+
# @type TotalCount: Integer
|
410
|
+
# @param ValidCount: 实际上传数量
|
411
|
+
# @type ValidCount: Integer
|
412
|
+
# @param TooLongCount: 数据过长数量
|
413
|
+
# @type TooLongCount: Integer
|
414
|
+
# @param EmptyEmailCount: 邮件地址为空数量
|
415
|
+
# @type EmptyEmailCount: Integer
|
416
|
+
# @param RepeatCount: 重复数量
|
417
|
+
# @type RepeatCount: Integer
|
408
418
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
409
419
|
# @type RequestId: String
|
410
420
|
|
411
|
-
attr_accessor :RequestId
|
421
|
+
attr_accessor :TotalCount, :ValidCount, :TooLongCount, :EmptyEmailCount, :RepeatCount, :RequestId
|
412
422
|
|
413
|
-
def initialize(requestid=nil)
|
423
|
+
def initialize(totalcount=nil, validcount=nil, toolongcount=nil, emptyemailcount=nil, repeatcount=nil, requestid=nil)
|
424
|
+
@TotalCount = totalcount
|
425
|
+
@ValidCount = validcount
|
426
|
+
@TooLongCount = toolongcount
|
427
|
+
@EmptyEmailCount = emptyemailcount
|
428
|
+
@RepeatCount = repeatcount
|
414
429
|
@RequestId = requestid
|
415
430
|
end
|
416
431
|
|
417
432
|
def deserialize(params)
|
433
|
+
@TotalCount = params['TotalCount']
|
434
|
+
@ValidCount = params['ValidCount']
|
435
|
+
@TooLongCount = params['TooLongCount']
|
436
|
+
@EmptyEmailCount = params['EmptyEmailCount']
|
437
|
+
@RepeatCount = params['RepeatCount']
|
418
438
|
@RequestId = params['RequestId']
|
419
439
|
end
|
420
440
|
end
|
@@ -812,24 +832,26 @@ module TencentCloud
|
|
812
832
|
# @param EmailAddress: 发信地址
|
813
833
|
# @type EmailAddress: String
|
814
834
|
# @param EmailSenderName: 发信人别名
|
815
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
816
835
|
# @type EmailSenderName: String
|
817
836
|
# @param CreatedTimestamp: 创建时间
|
818
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
819
837
|
# @type CreatedTimestamp: Integer
|
838
|
+
# @param SmtpPwdType: smtp密码类型,0=没有设置密码,1=已经设置了密码
|
839
|
+
# @type SmtpPwdType: Integer
|
820
840
|
|
821
|
-
attr_accessor :EmailAddress, :EmailSenderName, :CreatedTimestamp
|
841
|
+
attr_accessor :EmailAddress, :EmailSenderName, :CreatedTimestamp, :SmtpPwdType
|
822
842
|
|
823
|
-
def initialize(emailaddress=nil, emailsendername=nil, createdtimestamp=nil)
|
843
|
+
def initialize(emailaddress=nil, emailsendername=nil, createdtimestamp=nil, smtppwdtype=nil)
|
824
844
|
@EmailAddress = emailaddress
|
825
845
|
@EmailSenderName = emailsendername
|
826
846
|
@CreatedTimestamp = createdtimestamp
|
847
|
+
@SmtpPwdType = smtppwdtype
|
827
848
|
end
|
828
849
|
|
829
850
|
def deserialize(params)
|
830
851
|
@EmailAddress = params['EmailAddress']
|
831
852
|
@EmailSenderName = params['EmailSenderName']
|
832
853
|
@CreatedTimestamp = params['CreatedTimestamp']
|
854
|
+
@SmtpPwdType = params['SmtpPwdType']
|
833
855
|
end
|
834
856
|
end
|
835
857
|
|
@@ -1192,7 +1214,6 @@ module TencentCloud
|
|
1192
1214
|
# ListEmailAddress返回参数结构体
|
1193
1215
|
class ListEmailAddressResponse < TencentCloud::Common::AbstractModel
|
1194
1216
|
# @param EmailSenders: 发信地址列表详情
|
1195
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1196
1217
|
# @type EmailSenders: Array
|
1197
1218
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1198
1219
|
# @type RequestId: String
|
@@ -1630,7 +1651,7 @@ module TencentCloud
|
|
1630
1651
|
# @type ReplyToAddresses: String
|
1631
1652
|
# @param Cc: 抄送人邮箱地址,最多支持抄送20人。
|
1632
1653
|
# @type Cc: Array
|
1633
|
-
# @param Bcc: 密送人邮箱地址,最多支持抄送20
|
1654
|
+
# @param Bcc: 密送人邮箱地址,最多支持抄送20人,Bcc和Destination不能重复。
|
1634
1655
|
# @type Bcc: Array
|
1635
1656
|
# @param Template: 使用模板发送时,填写模板相关参数。
|
1636
1657
|
# <dx-alert infotype="notice" title="注意"> 如您未申请过特殊配置,则该字段为必填 </dx-alert>
|
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.
|
4
|
+
version: 3.0.990
|
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-01-
|
11
|
+
date: 2025-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|