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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201002/models.rb +26 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 225c08f6f26992f3e96eab3274714f3c29d4e916
4
- data.tar.gz: 7734fdbe400baa9ac810cd2a9d24ab4a62f1183d
3
+ metadata.gz: 77c833e8e8083076d3a6199c5bbb7335c44c89a7
4
+ data.tar.gz: 5e414a989b47a0e0d56e605996efb0387904cf59
5
5
  SHA512:
6
- metadata.gz: c69dcc207aab77c07addaeccb6f017d29039688bbb0a264ee1fe757ebec155a123d7d7dd3aca5a0f98f1d605ae2175fc20fea57a4af3b0c10197febd105c3e22
7
- data.tar.gz: fba7bc6db5d0109697123e2d05d0cd9482132530710a81078e1f11430cec17ff1c4f890300ddbc6c08ed722efcb91eb4983b5145723335c90e090cd521d8cadf
6
+ metadata.gz: 65db368ac9fccb62669a19c116c1f0d2c0ee466f5bd3c6e9705190933c51accf6b1b052c2d11ae9a3b4885195640cb8f51ae38a17ae713589a2c6a7dc5e89eaa
7
+ data.tar.gz: 9b51c1655ca870436bc1a1b44a1c67d44e3cc1947f29d0287b40a842c0e8617ade00496ce63e09409d775ee4a83ad37ed3478af1ce0de5151dd1bd35c36b9276
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.359
1
+ 1.0.362
@@ -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.359
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-19 00:00:00.000000000 Z
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