tencentcloud-sdk-nodejs-ses 4.1.74 → 4.1.76
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.
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
9
9
|
/**
|
|
10
10
|
* 获取当前发信域名列表,包含已验证通过与未验证的域名
|
|
11
11
|
*/
|
|
12
|
-
ListEmailIdentities(req
|
|
12
|
+
ListEmailIdentities(req: ListEmailIdentitiesRequest, cb?: (error: string, rep: ListEmailIdentitiesResponse) => void): Promise<ListEmailIdentitiesResponse>;
|
|
13
13
|
/**
|
|
14
14
|
* 在验证了发信域名之后,您需要一个发信地址来发送邮件。例如发信域名是mail.qcloud.com,那么发信地址可以为 service@mail.qcloud.com。如果您想要收件人在收件箱列表中显示您的别名,例如"腾讯云邮件通知"。那么发信地址为: 别名 空格 尖括号 邮箱地址。请注意中间需要有空格
|
|
15
15
|
*/
|
|
@@ -650,15 +650,19 @@ export interface ListEmailIdentitiesResponse {
|
|
|
650
650
|
/**
|
|
651
651
|
* 发信域名列表
|
|
652
652
|
*/
|
|
653
|
-
EmailIdentities
|
|
653
|
+
EmailIdentities?: Array<EmailIdentity>;
|
|
654
654
|
/**
|
|
655
655
|
* 最大信誉等级
|
|
656
656
|
*/
|
|
657
|
-
MaxReputationLevel
|
|
657
|
+
MaxReputationLevel?: number;
|
|
658
658
|
/**
|
|
659
659
|
* 单域名最高日发送量
|
|
660
660
|
*/
|
|
661
|
-
MaxDailyQuota
|
|
661
|
+
MaxDailyQuota?: number;
|
|
662
|
+
/**
|
|
663
|
+
* 总数
|
|
664
|
+
*/
|
|
665
|
+
Total?: number;
|
|
662
666
|
/**
|
|
663
667
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
664
668
|
*/
|
|
@@ -723,7 +727,20 @@ export interface UpdateAddressUnsubscribeConfigRequest {
|
|
|
723
727
|
/**
|
|
724
728
|
* ListEmailIdentities请求参数结构体
|
|
725
729
|
*/
|
|
726
|
-
export
|
|
730
|
+
export interface ListEmailIdentitiesRequest {
|
|
731
|
+
/**
|
|
732
|
+
* tag 标签
|
|
733
|
+
*/
|
|
734
|
+
TagList?: Array<TagList>;
|
|
735
|
+
/**
|
|
736
|
+
* 分页 limit
|
|
737
|
+
*/
|
|
738
|
+
Limit?: number;
|
|
739
|
+
/**
|
|
740
|
+
* 分页 offset
|
|
741
|
+
*/
|
|
742
|
+
Offset?: number;
|
|
743
|
+
}
|
|
727
744
|
/**
|
|
728
745
|
* CreateReceiver返回参数结构体
|
|
729
746
|
*/
|
|
@@ -944,6 +961,10 @@ export interface CreateEmailIdentityRequest {
|
|
|
944
961
|
* 生成的dkim密钥长度。0:1024,1:2048
|
|
945
962
|
*/
|
|
946
963
|
DKIMOption?: number;
|
|
964
|
+
/**
|
|
965
|
+
* tag 标签
|
|
966
|
+
*/
|
|
967
|
+
TagList?: Array<TagList>;
|
|
947
968
|
}
|
|
948
969
|
/**
|
|
949
970
|
* UpdateEmailTemplate请求参数结构体
|
|
@@ -1580,6 +1601,10 @@ export interface EmailIdentity {
|
|
|
1580
1601
|
* 域名配置的独立ip
|
|
1581
1602
|
*/
|
|
1582
1603
|
SendIp?: Array<string>;
|
|
1604
|
+
/**
|
|
1605
|
+
* tag 标签
|
|
1606
|
+
*/
|
|
1607
|
+
TagList?: Array<TagList>;
|
|
1583
1608
|
}
|
|
1584
1609
|
/**
|
|
1585
1610
|
* DeleteReceiver请求参数结构体
|
|
@@ -1633,3 +1658,16 @@ export interface ListReceiversResponse {
|
|
|
1633
1658
|
*/
|
|
1634
1659
|
RequestId?: string;
|
|
1635
1660
|
}
|
|
1661
|
+
/**
|
|
1662
|
+
* 标签
|
|
1663
|
+
*/
|
|
1664
|
+
export interface TagList {
|
|
1665
|
+
/**
|
|
1666
|
+
* 产品
|
|
1667
|
+
*/
|
|
1668
|
+
TagKey: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* ses
|
|
1671
|
+
*/
|
|
1672
|
+
TagValue: string;
|
|
1673
|
+
}
|