@alicloud/dm20151123 1.6.0 → 1.6.2
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/dist/client.js +15 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DedicatedIpListResponseBody.d.ts +1 -0
- package/dist/models/DedicatedIpListResponseBody.js +2 -0
- package/dist/models/DedicatedIpListResponseBody.js.map +1 -1
- package/dist/models/DedicatedIpNonePoolListResponseBody.d.ts +1 -0
- package/dist/models/DedicatedIpNonePoolListResponseBody.js +2 -0
- package/dist/models/DedicatedIpNonePoolListResponseBody.js.map +1 -1
- package/dist/models/DedicatedIpPoolListRequest.d.ts +1 -0
- package/dist/models/DedicatedIpPoolListRequest.js +2 -0
- package/dist/models/DedicatedIpPoolListRequest.js.map +1 -1
- package/dist/models/DedicatedIpPoolListResponseBody.d.ts +1 -0
- package/dist/models/DedicatedIpPoolListResponseBody.js +2 -0
- package/dist/models/DedicatedIpPoolListResponseBody.js.map +1 -1
- package/dist/models/GetTrackListByMailFromAndTagNameRequest.d.ts +1 -0
- package/dist/models/GetTrackListByMailFromAndTagNameRequest.js +2 -0
- package/dist/models/GetTrackListByMailFromAndTagNameRequest.js.map +1 -1
- package/dist/models/GetTrackListRequest.d.ts +1 -0
- package/dist/models/GetTrackListRequest.js +2 -0
- package/dist/models/GetTrackListRequest.js.map +1 -1
- package/dist/models/QueryMailAddressByParamResponseBody.d.ts +2 -0
- package/dist/models/QueryMailAddressByParamResponseBody.js +4 -0
- package/dist/models/QueryMailAddressByParamResponseBody.js.map +1 -1
- package/dist/models/QueryTaskByParamResponseBody.d.ts +2 -0
- package/dist/models/QueryTaskByParamResponseBody.js +4 -0
- package/dist/models/QueryTaskByParamResponseBody.js.map +1 -1
- package/dist/models/SenderStatisticsDetailByParamRequest.d.ts +10 -0
- package/dist/models/SenderStatisticsDetailByParamRequest.js +4 -0
- package/dist/models/SenderStatisticsDetailByParamRequest.js.map +1 -1
- package/dist/models/SenderStatisticsDetailByParamResponseBody.d.ts +20 -0
- package/dist/models/SenderStatisticsDetailByParamResponseBody.js +8 -0
- package/dist/models/SenderStatisticsDetailByParamResponseBody.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +20 -0
- package/src/models/DedicatedIpListResponseBody.ts +3 -0
- package/src/models/DedicatedIpNonePoolListResponseBody.ts +3 -0
- package/src/models/DedicatedIpPoolListRequest.ts +3 -0
- package/src/models/DedicatedIpPoolListResponseBody.ts +3 -0
- package/src/models/GetTrackListByMailFromAndTagNameRequest.ts +3 -0
- package/src/models/GetTrackListRequest.ts +3 -0
- package/src/models/QueryMailAddressByParamResponseBody.ts +6 -0
- package/src/models/QueryTaskByParamResponseBody.ts +6 -0
- package/src/models/SenderStatisticsDetailByParamRequest.ts +14 -0
- package/src/models/SenderStatisticsDetailByParamResponseBody.ts +28 -0
|
@@ -11,6 +11,16 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $da
|
|
|
11
11
|
* s***@example.net
|
|
12
12
|
*/
|
|
13
13
|
accountName?: string;
|
|
14
|
+
/**
|
|
15
|
+
* **if can be null:**
|
|
16
|
+
* true
|
|
17
|
+
*/
|
|
18
|
+
configSetId?: string;
|
|
19
|
+
/**
|
|
20
|
+
* **if can be null:**
|
|
21
|
+
* true
|
|
22
|
+
*/
|
|
23
|
+
configSetName?: string;
|
|
14
24
|
/**
|
|
15
25
|
* @remarks
|
|
16
26
|
* Detailed classification of error reasons: - SendOk - SmtpNxBox
|
|
@@ -20,6 +30,16 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $da
|
|
|
20
30
|
* SendOk
|
|
21
31
|
*/
|
|
22
32
|
errorClassification?: string;
|
|
33
|
+
/**
|
|
34
|
+
* **if can be null:**
|
|
35
|
+
* true
|
|
36
|
+
*/
|
|
37
|
+
ipPoolId?: string;
|
|
38
|
+
/**
|
|
39
|
+
* **if can be null:**
|
|
40
|
+
* true
|
|
41
|
+
*/
|
|
42
|
+
ipPoolName?: string;
|
|
23
43
|
/**
|
|
24
44
|
* @remarks
|
|
25
45
|
* Update time
|
|
@@ -71,7 +91,11 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $da
|
|
|
71
91
|
static names(): { [key: string]: string } {
|
|
72
92
|
return {
|
|
73
93
|
accountName: 'AccountName',
|
|
94
|
+
configSetId: 'ConfigSetId',
|
|
95
|
+
configSetName: 'ConfigSetName',
|
|
74
96
|
errorClassification: 'ErrorClassification',
|
|
97
|
+
ipPoolId: 'IpPoolId',
|
|
98
|
+
ipPoolName: 'IpPoolName',
|
|
75
99
|
lastUpdateTime: 'LastUpdateTime',
|
|
76
100
|
message: 'Message',
|
|
77
101
|
status: 'Status',
|
|
@@ -84,7 +108,11 @@ export class SenderStatisticsDetailByParamResponseBodyDataMailDetail extends $da
|
|
|
84
108
|
static types(): { [key: string]: any } {
|
|
85
109
|
return {
|
|
86
110
|
accountName: 'string',
|
|
111
|
+
configSetId: 'string',
|
|
112
|
+
configSetName: 'string',
|
|
87
113
|
errorClassification: 'string',
|
|
114
|
+
ipPoolId: 'string',
|
|
115
|
+
ipPoolName: 'string',
|
|
88
116
|
lastUpdateTime: 'string',
|
|
89
117
|
message: 'string',
|
|
90
118
|
status: 'number',
|