@alicloud/dm20151123 1.4.0 → 1.6.0
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.d.ts +45 -0
- package/dist/client.js +144 -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/DescAccountSummaryResponseBody.d.ts +5 -0
- package/dist/models/DescAccountSummaryResponseBody.js +2 -0
- package/dist/models/DescAccountSummaryResponseBody.js.map +1 -1
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.d.ts +17 -0
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.js +64 -0
- package/dist/models/GetDedicatedIpWarmUpDetailRequest.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.d.ts +19 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.js +69 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponse.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.d.ts +31 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.js +88 -0
- package/dist/models/GetDedicatedIpWarmUpDetailResponseBody.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.d.ts +14 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.js +58 -0
- package/dist/models/GetDedicatedIpWarmUpInfoRequest.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.d.ts +19 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.js +69 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponse.js.map +1 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.d.ts +29 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.js +84 -0
- package/dist/models/GetDedicatedIpWarmUpInfoResponseBody.js.map +1 -0
- package/dist/models/ListBlockSendingRequest.d.ts +51 -0
- package/dist/models/ListBlockSendingRequest.js +70 -0
- package/dist/models/ListBlockSendingRequest.js.map +1 -0
- package/dist/models/ListBlockSendingResponse.d.ts +19 -0
- package/dist/models/ListBlockSendingResponse.js +69 -0
- package/dist/models/ListBlockSendingResponse.js.map +1 -0
- package/dist/models/ListBlockSendingResponseBody.d.ts +66 -0
- package/dist/models/ListBlockSendingResponseBody.js +94 -0
- package/dist/models/ListBlockSendingResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +12 -0
- package/dist/models/model.js +29 -5
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +162 -0
- package/src/models/DedicatedIpListResponseBody.ts +3 -0
- package/src/models/DescAccountSummaryResponseBody.ts +7 -0
- package/src/models/GetDedicatedIpWarmUpDetailRequest.ts +36 -0
- package/src/models/GetDedicatedIpWarmUpDetailResponse.ts +40 -0
- package/src/models/GetDedicatedIpWarmUpDetailResponseBody.ts +65 -0
- package/src/models/GetDedicatedIpWarmUpInfoRequest.ts +27 -0
- package/src/models/GetDedicatedIpWarmUpInfoResponse.ts +40 -0
- package/src/models/GetDedicatedIpWarmUpInfoResponseBody.ts +59 -0
- package/src/models/ListBlockSendingRequest.ts +76 -0
- package/src/models/ListBlockSendingResponse.ts +40 -0
- package/src/models/ListBlockSendingResponseBody.ts +106 -0
- package/src/models/model.ts +12 -0
|
@@ -43,6 +43,11 @@ export class DescAccountSummaryResponseBody extends $dara.Model {
|
|
|
43
43
|
* 0
|
|
44
44
|
*/
|
|
45
45
|
enableTimes?: number;
|
|
46
|
+
/**
|
|
47
|
+
* **if can be null:**
|
|
48
|
+
* true
|
|
49
|
+
*/
|
|
50
|
+
ipChannelType?: string;
|
|
46
51
|
/**
|
|
47
52
|
* @remarks
|
|
48
53
|
* Number of sending addresses
|
|
@@ -158,6 +163,7 @@ export class DescAccountSummaryResponseBody extends $dara.Model {
|
|
|
158
163
|
dayuStatus: 'DayuStatus',
|
|
159
164
|
domains: 'Domains',
|
|
160
165
|
enableTimes: 'EnableTimes',
|
|
166
|
+
ipChannelType: 'IpChannelType',
|
|
161
167
|
mailAddresses: 'MailAddresses',
|
|
162
168
|
maxQuotaLevel: 'MaxQuotaLevel',
|
|
163
169
|
monthQuota: 'MonthQuota',
|
|
@@ -181,6 +187,7 @@ export class DescAccountSummaryResponseBody extends $dara.Model {
|
|
|
181
187
|
dayuStatus: 'number',
|
|
182
188
|
domains: 'number',
|
|
183
189
|
enableTimes: 'number',
|
|
190
|
+
ipChannelType: 'string',
|
|
184
191
|
mailAddresses: 'number',
|
|
185
192
|
maxQuotaLevel: 'number',
|
|
186
193
|
monthQuota: 'number',
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetDedicatedIpWarmUpDetailRequest extends $dara.Model {
|
|
6
|
+
dedicatedIp?: string;
|
|
7
|
+
endDayMark?: number;
|
|
8
|
+
esp?: string;
|
|
9
|
+
startDayMark?: number;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
dedicatedIp: 'DedicatedIp',
|
|
13
|
+
endDayMark: 'EndDayMark',
|
|
14
|
+
esp: 'Esp',
|
|
15
|
+
startDayMark: 'StartDayMark',
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
static types(): { [key: string]: any } {
|
|
20
|
+
return {
|
|
21
|
+
dedicatedIp: 'string',
|
|
22
|
+
endDayMark: 'number',
|
|
23
|
+
esp: 'string',
|
|
24
|
+
startDayMark: 'number',
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
validate() {
|
|
29
|
+
super.validate();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
constructor(map?: { [key: string]: any }) {
|
|
33
|
+
super(map);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { GetDedicatedIpWarmUpDetailResponseBody } from "./GetDedicatedIpWarmUpDetailResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GetDedicatedIpWarmUpDetailResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: GetDedicatedIpWarmUpDetailResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: GetDedicatedIpWarmUpDetailResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetDedicatedIpWarmUpDetailResponseBodyDetail extends $dara.Model {
|
|
6
|
+
dayMark?: number;
|
|
7
|
+
deliverCounts?: number;
|
|
8
|
+
esp?: string;
|
|
9
|
+
sendCounts?: number;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
dayMark: 'DayMark',
|
|
13
|
+
deliverCounts: 'DeliverCounts',
|
|
14
|
+
esp: 'Esp',
|
|
15
|
+
sendCounts: 'SendCounts',
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
static types(): { [key: string]: any } {
|
|
20
|
+
return {
|
|
21
|
+
dayMark: 'number',
|
|
22
|
+
deliverCounts: 'number',
|
|
23
|
+
esp: 'string',
|
|
24
|
+
sendCounts: 'number',
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
validate() {
|
|
29
|
+
super.validate();
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
constructor(map?: { [key: string]: any }) {
|
|
33
|
+
super(map);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export class GetDedicatedIpWarmUpDetailResponseBody extends $dara.Model {
|
|
38
|
+
detail?: GetDedicatedIpWarmUpDetailResponseBodyDetail[];
|
|
39
|
+
requestId?: string;
|
|
40
|
+
static names(): { [key: string]: string } {
|
|
41
|
+
return {
|
|
42
|
+
detail: 'Detail',
|
|
43
|
+
requestId: 'RequestId',
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static types(): { [key: string]: any } {
|
|
48
|
+
return {
|
|
49
|
+
detail: { 'type': 'array', 'itemType': GetDedicatedIpWarmUpDetailResponseBodyDetail },
|
|
50
|
+
requestId: 'string',
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
validate() {
|
|
55
|
+
if(Array.isArray(this.detail)) {
|
|
56
|
+
$dara.Model.validateArray(this.detail);
|
|
57
|
+
}
|
|
58
|
+
super.validate();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
constructor(map?: { [key: string]: any }) {
|
|
62
|
+
super(map);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetDedicatedIpWarmUpInfoRequest extends $dara.Model {
|
|
6
|
+
dedicatedIp?: string;
|
|
7
|
+
static names(): { [key: string]: string } {
|
|
8
|
+
return {
|
|
9
|
+
dedicatedIp: 'DedicatedIp',
|
|
10
|
+
};
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
static types(): { [key: string]: any } {
|
|
14
|
+
return {
|
|
15
|
+
dedicatedIp: 'string',
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
validate() {
|
|
20
|
+
super.validate();
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
constructor(map?: { [key: string]: any }) {
|
|
24
|
+
super(map);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { GetDedicatedIpWarmUpInfoResponseBody } from "./GetDedicatedIpWarmUpInfoResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GetDedicatedIpWarmUpInfoResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: GetDedicatedIpWarmUpInfoResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: GetDedicatedIpWarmUpInfoResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GetDedicatedIpWarmUpInfoResponseBodyInfo extends $dara.Model {
|
|
6
|
+
esp?: string;
|
|
7
|
+
finished?: boolean;
|
|
8
|
+
static names(): { [key: string]: string } {
|
|
9
|
+
return {
|
|
10
|
+
esp: 'Esp',
|
|
11
|
+
finished: 'Finished',
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
static types(): { [key: string]: any } {
|
|
16
|
+
return {
|
|
17
|
+
esp: 'string',
|
|
18
|
+
finished: 'boolean',
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
validate() {
|
|
23
|
+
super.validate();
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
constructor(map?: { [key: string]: any }) {
|
|
27
|
+
super(map);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export class GetDedicatedIpWarmUpInfoResponseBody extends $dara.Model {
|
|
32
|
+
info?: GetDedicatedIpWarmUpInfoResponseBodyInfo[];
|
|
33
|
+
requestId?: string;
|
|
34
|
+
static names(): { [key: string]: string } {
|
|
35
|
+
return {
|
|
36
|
+
info: 'Info',
|
|
37
|
+
requestId: 'RequestId',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static types(): { [key: string]: any } {
|
|
42
|
+
return {
|
|
43
|
+
info: { 'type': 'array', 'itemType': GetDedicatedIpWarmUpInfoResponseBodyInfo },
|
|
44
|
+
requestId: 'string',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
validate() {
|
|
49
|
+
if(Array.isArray(this.info)) {
|
|
50
|
+
$dara.Model.validateArray(this.info);
|
|
51
|
+
}
|
|
52
|
+
super.validate();
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
constructor(map?: { [key: string]: any }) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListBlockSendingRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 1731463398242
|
|
9
|
+
*/
|
|
10
|
+
beginTime?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* xxxx@rcpt.com
|
|
14
|
+
*/
|
|
15
|
+
blockEmail?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* This parameter is required.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* UNSUB
|
|
22
|
+
*/
|
|
23
|
+
blockType?: string;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* 1732463398242
|
|
27
|
+
*/
|
|
28
|
+
endTime?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* 50
|
|
32
|
+
*/
|
|
33
|
+
maxResults?: number;
|
|
34
|
+
/**
|
|
35
|
+
* @example
|
|
36
|
+
* xxxxxyyyyyy
|
|
37
|
+
*/
|
|
38
|
+
nextToken?: string;
|
|
39
|
+
/**
|
|
40
|
+
* @example
|
|
41
|
+
* xxxx@sender.com
|
|
42
|
+
*/
|
|
43
|
+
senderEmail?: string;
|
|
44
|
+
static names(): { [key: string]: string } {
|
|
45
|
+
return {
|
|
46
|
+
beginTime: 'BeginTime',
|
|
47
|
+
blockEmail: 'BlockEmail',
|
|
48
|
+
blockType: 'BlockType',
|
|
49
|
+
endTime: 'EndTime',
|
|
50
|
+
maxResults: 'MaxResults',
|
|
51
|
+
nextToken: 'NextToken',
|
|
52
|
+
senderEmail: 'SenderEmail',
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
static types(): { [key: string]: any } {
|
|
57
|
+
return {
|
|
58
|
+
beginTime: 'number',
|
|
59
|
+
blockEmail: 'string',
|
|
60
|
+
blockType: 'string',
|
|
61
|
+
endTime: 'number',
|
|
62
|
+
maxResults: 'number',
|
|
63
|
+
nextToken: 'string',
|
|
64
|
+
senderEmail: 'string',
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
validate() {
|
|
69
|
+
super.validate();
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
constructor(map?: { [key: string]: any }) {
|
|
73
|
+
super(map);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListBlockSendingResponseBody } from "./ListBlockSendingResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListBlockSendingResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListBlockSendingResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: ListBlockSendingResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListBlockSendingResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* xxxx@rcpt.com
|
|
9
|
+
*/
|
|
10
|
+
blockEmail?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 1723259364
|
|
14
|
+
*/
|
|
15
|
+
blockTime?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 1
|
|
19
|
+
*/
|
|
20
|
+
reason?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1723249364
|
|
24
|
+
*/
|
|
25
|
+
sendTime?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* xxxx@sender.com
|
|
29
|
+
*/
|
|
30
|
+
senderEmail?: string;
|
|
31
|
+
static names(): { [key: string]: string } {
|
|
32
|
+
return {
|
|
33
|
+
blockEmail: 'BlockEmail',
|
|
34
|
+
blockTime: 'BlockTime',
|
|
35
|
+
reason: 'Reason',
|
|
36
|
+
sendTime: 'SendTime',
|
|
37
|
+
senderEmail: 'SenderEmail',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
static types(): { [key: string]: any } {
|
|
42
|
+
return {
|
|
43
|
+
blockEmail: 'string',
|
|
44
|
+
blockTime: 'number',
|
|
45
|
+
reason: 'number',
|
|
46
|
+
sendTime: 'number',
|
|
47
|
+
senderEmail: 'string',
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
validate() {
|
|
52
|
+
super.validate();
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
constructor(map?: { [key: string]: any }) {
|
|
56
|
+
super(map);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export class ListBlockSendingResponseBody extends $dara.Model {
|
|
61
|
+
data?: ListBlockSendingResponseBodyData[];
|
|
62
|
+
/**
|
|
63
|
+
* @example
|
|
64
|
+
* 50
|
|
65
|
+
*/
|
|
66
|
+
maxResults?: number;
|
|
67
|
+
/**
|
|
68
|
+
* @example
|
|
69
|
+
* xxxxyyyy
|
|
70
|
+
*/
|
|
71
|
+
nextToken?: string;
|
|
72
|
+
/**
|
|
73
|
+
* @example
|
|
74
|
+
* XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
|
|
75
|
+
*/
|
|
76
|
+
requestId?: string;
|
|
77
|
+
static names(): { [key: string]: string } {
|
|
78
|
+
return {
|
|
79
|
+
data: 'Data',
|
|
80
|
+
maxResults: 'MaxResults',
|
|
81
|
+
nextToken: 'NextToken',
|
|
82
|
+
requestId: 'RequestId',
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
static types(): { [key: string]: any } {
|
|
87
|
+
return {
|
|
88
|
+
data: { 'type': 'array', 'itemType': ListBlockSendingResponseBodyData },
|
|
89
|
+
maxResults: 'number',
|
|
90
|
+
nextToken: 'string',
|
|
91
|
+
requestId: 'string',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
validate() {
|
|
96
|
+
if(Array.isArray(this.data)) {
|
|
97
|
+
$dara.Model.validateArray(this.data);
|
|
98
|
+
}
|
|
99
|
+
super.validate();
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
constructor(map?: { [key: string]: any }) {
|
|
103
|
+
super(map);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
package/src/models/model.ts
CHANGED
|
@@ -3,6 +3,8 @@ export { DedicatedIpListResponseBodyIps } from './DedicatedIpListResponseBody';
|
|
|
3
3
|
export { DedicatedIpNonePoolListResponseBodyIps } from './DedicatedIpNonePoolListResponseBody';
|
|
4
4
|
export { DedicatedIpPoolListResponseBodyIpPoolsIps } from './DedicatedIpPoolListResponseBody';
|
|
5
5
|
export { DedicatedIpPoolListResponseBodyIpPools } from './DedicatedIpPoolListResponseBody';
|
|
6
|
+
export { GetDedicatedIpWarmUpDetailResponseBodyDetail } from './GetDedicatedIpWarmUpDetailResponseBody';
|
|
7
|
+
export { GetDedicatedIpWarmUpInfoResponseBodyInfo } from './GetDedicatedIpWarmUpInfoResponseBody';
|
|
6
8
|
export { GetIpfilterListResponseBodyDataIpfilters } from './GetIpfilterListResponseBody';
|
|
7
9
|
export { GetIpfilterListResponseBodyData } from './GetIpfilterListResponseBody';
|
|
8
10
|
export { GetTrackListResponseBodyDataStat } from './GetTrackListResponseBody';
|
|
@@ -10,6 +12,7 @@ export { GetTrackListResponseBodyData } from './GetTrackListResponseBody';
|
|
|
10
12
|
export { GetTrackListByMailFromAndTagNameResponseBodyTrackListStat } from './GetTrackListByMailFromAndTagNameResponseBody';
|
|
11
13
|
export { GetTrackListByMailFromAndTagNameResponseBodyTrackList } from './GetTrackListByMailFromAndTagNameResponseBody';
|
|
12
14
|
export { GetUserResponseBodyData } from './GetUserResponseBody';
|
|
15
|
+
export { ListBlockSendingResponseBodyData } from './ListBlockSendingResponseBody';
|
|
13
16
|
export { ListUserSuppressionResponseBodyDataUserSuppressions } from './ListUserSuppressionResponseBody';
|
|
14
17
|
export { ListUserSuppressionResponseBodyData } from './ListUserSuppressionResponseBody';
|
|
15
18
|
export { QueryDomainByParamResponseBodyDataDomain } from './QueryDomainByParamResponseBody';
|
|
@@ -118,6 +121,12 @@ export { DescAccountSummaryResponse } from './DescAccountSummaryResponse';
|
|
|
118
121
|
export { DescDomainRequest } from './DescDomainRequest';
|
|
119
122
|
export { DescDomainResponseBody } from './DescDomainResponseBody';
|
|
120
123
|
export { DescDomainResponse } from './DescDomainResponse';
|
|
124
|
+
export { GetDedicatedIpWarmUpDetailRequest } from './GetDedicatedIpWarmUpDetailRequest';
|
|
125
|
+
export { GetDedicatedIpWarmUpDetailResponseBody } from './GetDedicatedIpWarmUpDetailResponseBody';
|
|
126
|
+
export { GetDedicatedIpWarmUpDetailResponse } from './GetDedicatedIpWarmUpDetailResponse';
|
|
127
|
+
export { GetDedicatedIpWarmUpInfoRequest } from './GetDedicatedIpWarmUpInfoRequest';
|
|
128
|
+
export { GetDedicatedIpWarmUpInfoResponseBody } from './GetDedicatedIpWarmUpInfoResponseBody';
|
|
129
|
+
export { GetDedicatedIpWarmUpInfoResponse } from './GetDedicatedIpWarmUpInfoResponse';
|
|
121
130
|
export { GetIpProtectionRequest } from './GetIpProtectionRequest';
|
|
122
131
|
export { GetIpProtectionResponseBody } from './GetIpProtectionResponseBody';
|
|
123
132
|
export { GetIpProtectionResponse } from './GetIpProtectionResponse';
|
|
@@ -135,6 +144,9 @@ export { GetTrackListByMailFromAndTagNameResponseBody } from './GetTrackListByMa
|
|
|
135
144
|
export { GetTrackListByMailFromAndTagNameResponse } from './GetTrackListByMailFromAndTagNameResponse';
|
|
136
145
|
export { GetUserResponseBody } from './GetUserResponseBody';
|
|
137
146
|
export { GetUserResponse } from './GetUserResponse';
|
|
147
|
+
export { ListBlockSendingRequest } from './ListBlockSendingRequest';
|
|
148
|
+
export { ListBlockSendingResponseBody } from './ListBlockSendingResponseBody';
|
|
149
|
+
export { ListBlockSendingResponse } from './ListBlockSendingResponse';
|
|
138
150
|
export { ListUserSuppressionRequest } from './ListUserSuppressionRequest';
|
|
139
151
|
export { ListUserSuppressionResponseBody } from './ListUserSuppressionResponseBody';
|
|
140
152
|
export { ListUserSuppressionResponse } from './ListUserSuppressionResponse';
|