@alicloud/esa20240910 3.0.2 → 3.1.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 +60 -0
- package/dist/client.js +180 -0
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeTraceDiagnoseReportRequest.d.ts +23 -0
- package/dist/models/DescribeTraceDiagnoseReportRequest.js +60 -0
- package/dist/models/DescribeTraceDiagnoseReportRequest.js.map +1 -0
- package/dist/models/DescribeTraceDiagnoseReportResponse.d.ts +19 -0
- package/dist/models/DescribeTraceDiagnoseReportResponse.js +69 -0
- package/dist/models/DescribeTraceDiagnoseReportResponse.js.map +1 -0
- package/dist/models/DescribeTraceDiagnoseReportResponseBody.d.ts +145 -0
- package/dist/models/DescribeTraceDiagnoseReportResponseBody.js +146 -0
- package/dist/models/DescribeTraceDiagnoseReportResponseBody.js.map +1 -0
- package/dist/models/GenerateTraceDiagnoseRequest.d.ts +21 -0
- package/dist/models/GenerateTraceDiagnoseRequest.js +58 -0
- package/dist/models/GenerateTraceDiagnoseRequest.js.map +1 -0
- package/dist/models/GenerateTraceDiagnoseResponse.d.ts +19 -0
- package/dist/models/GenerateTraceDiagnoseResponse.js +69 -0
- package/dist/models/GenerateTraceDiagnoseResponse.js.map +1 -0
- package/dist/models/GenerateTraceDiagnoseResponseBody.d.ts +28 -0
- package/dist/models/GenerateTraceDiagnoseResponseBody.js +62 -0
- package/dist/models/GenerateTraceDiagnoseResponseBody.js.map +1 -0
- package/dist/models/ListPostpaidRatePlanInstancesRequest.d.ts +25 -0
- package/dist/models/ListPostpaidRatePlanInstancesRequest.js +72 -0
- package/dist/models/ListPostpaidRatePlanInstancesRequest.js.map +1 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponse.d.ts +19 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponse.js +69 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponse.js.map +1 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponseBody.d.ts +62 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponseBody.js +138 -0
- package/dist/models/ListPostpaidRatePlanInstancesResponseBody.js.map +1 -0
- package/dist/models/ListTraceTasksRequest.d.ts +58 -0
- package/dist/models/ListTraceTasksRequest.js +74 -0
- package/dist/models/ListTraceTasksRequest.js.map +1 -0
- package/dist/models/ListTraceTasksResponse.d.ts +19 -0
- package/dist/models/ListTraceTasksResponse.js +69 -0
- package/dist/models/ListTraceTasksResponse.js.map +1 -0
- package/dist/models/ListTraceTasksResponseBody.d.ts +116 -0
- package/dist/models/ListTraceTasksResponseBody.js +114 -0
- package/dist/models/ListTraceTasksResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +17 -0
- package/dist/models/model.js +65 -30
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +200 -0
- package/src/models/DescribeTraceDiagnoseReportRequest.ts +38 -0
- package/src/models/DescribeTraceDiagnoseReportResponse.ts +40 -0
- package/src/models/DescribeTraceDiagnoseReportResponseBody.ts +228 -0
- package/src/models/GenerateTraceDiagnoseRequest.ts +34 -0
- package/src/models/GenerateTraceDiagnoseResponse.ts +40 -0
- package/src/models/GenerateTraceDiagnoseResponseBody.ts +45 -0
- package/src/models/ListPostpaidRatePlanInstancesRequest.ts +52 -0
- package/src/models/ListPostpaidRatePlanInstancesResponse.ts +40 -0
- package/src/models/ListPostpaidRatePlanInstancesResponseBody.ts +137 -0
- package/src/models/ListTraceTasksRequest.ts +87 -0
- package/src/models/ListTraceTasksResponse.ts +40 -0
- package/src/models/ListTraceTasksResponseBody.ts +176 -0
- package/src/models/model.ts +17 -0
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeTraceDiagnoseReportResponseBodyClientInfo extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* Chrome
|
|
9
|
+
*/
|
|
10
|
+
browserInfo?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* Macintosh
|
|
14
|
+
*/
|
|
15
|
+
os?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* Mozilla/5.0 (Macintosh Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36
|
|
19
|
+
*/
|
|
20
|
+
uaString?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
browserInfo: 'BrowserInfo',
|
|
24
|
+
os: 'Os',
|
|
25
|
+
uaString: 'UaString',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
browserInfo: 'string',
|
|
32
|
+
os: 'string',
|
|
33
|
+
uaString: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export class DescribeTraceDiagnoseReportResponseBodyReport extends $dara.Model {
|
|
47
|
+
clientInfo?: string;
|
|
48
|
+
diagnoseResult?: string;
|
|
49
|
+
/**
|
|
50
|
+
* @example
|
|
51
|
+
* <br>connection: keep-alive<br>content-type: application/json
|
|
52
|
+
*/
|
|
53
|
+
responseHeader?: string;
|
|
54
|
+
/**
|
|
55
|
+
* @example
|
|
56
|
+
* https://cdn.dns-detect.alicdn.com/diagnose_v2#/snapshot?data=H4sIAAAAAAACA%2B1aeW%2FcxhX%2FKgSLFkm7pGbI4bWGUSiSEqmxZMG7Tow4hjAkh1pGFLkmuVorgYE4QeI0cc7eB3IgLpIWTdO4ORzXQb6MV5b%2F6lfomyG5u1xpbUW2mwSNpAWWM2%2FmHfPm935DzTNyHm6yLKebXbkpa0gzFWQo2Gkjp4nNpm6qBJtPyA052WLpVsj6cvMZ2Y%2BzeZYzLw%2BTmD%2Fn7FwOo%2BdXWjsfvT%2B4ehXEvSRKUmj7kaF5BFP5fEOOEo9GJ9OoDerGRt18%2BfOdZy%2FcfPcCQWRw%2FbmJ4UFAfBLw4Vm42YtoziaG73z43s4r7%2Bx89srux7%2B59fyHg5devN0kfrJJw3iFbjJoH3xxZXD54s57L8lVxxxL8zAIPVDDp66cSVmWRFtsrsO8jTHVS6tb5u4H7%2B%2B8%2FcbtVAq355I45vHaCvPtceNfemPw8js3X7t44%2Bo1jNCP%2F3P90u7Xb9969o87z34wPZTcD5bTMMr4VGF3KQ4S%2Fk1oWuLriJGpYqzqRMUazBDBgvFWW1MdDZoM1YTWsHu8y1Kai8lv%2Ff7rWxcvDV584eZXb4q%2B1TTZCmNPxOnS725c%2B%2Fvg6nOiYy7pxXkKXsg3rn40%2BNNXPHhxtmeqG9feLHqmTAQ9%2B8wEiZj3wNY87bGJ2MnN08%2FIvTQC8X6%2Fr54NadxnseolmyJGPijQEKpPAU89z2NZoUpu6g15k%2Fkwcr4H1ors1bHWkCkkN11nY60azOSXjzDZac2wVQcVP5qmG1oDBqq6U%2FzYBnKchm7bKi5lMHEQPnO%2BMW4yjcLt3t1bjG17H4uxY9Ytxoah6qU1yCIGMhvYtlRz3ECtoRFDtSq%2FHBtp%2BoTRZ8%2FevcGOsY%2FBGiYTBuuQm2VAHc0gDmlgh6j2WIzBcx0T1axJTRjs0tDv3b3NJrH2i7JorlltErBxLM4NaDHHTeQtBqqtxZnzZxqym4iUTkFzCvld2sLzLqTrcZKF2XKeLvngFnjSah0r90E75OCFLTCaZhkHrCQ%2BwbJelGeFaDeM1%2BcFPhTPi%2B32am2s6cA%2BzjhOENMAAZamSTonQgUY3JBzmq6zvNq3cyvFNDBCfC2R4otP4a%2FYsWneTmmcBSxtFWEFKR7mCjl7Rewq21oszld6m0UDTRld4NMu9uhDLJS59mxjIfbbo7KELcsB7MK2AX9j4VmFyar4FDYvZd2F0tx2ktOo8FfXYYtnSS%2F12FJ3yyz6AX9aUNFYKuAS8Y2rQv7psEvGnuzSoJbwch%2BTiG3oPM8Ekon4DLGsWwZQWLTCYHC8vt4TIWPd2oqVw4XgXCeMaW0VH07STZrnrPR0kVH%2Bja%2FqDFaxBEsmrSS59DBM4j%2BZPhnDWucQYuUY6Ms7TQnxxhbLlbkk2QhZU6Jefy33jmqB5WLNZaPwIqLbJrYZ1glyYKPZpuXqtmH5gYlp4Gg6CVwMAHKkS%2FPO0Zkji3nePR5H20eW6Tlldp0d1aFzUpvnx2sZ8%2B6zxnko2U2pDXtbwo60TLclzmWkgsVoRHpkuc3FYAkhrspsFCV95XgarodxU%2FppYTJPhqa00Jrlj4%2FRdLspzUI6d3NlIQYggXGiI6RNicWZ4lGvw3SsRhpLsGkq2DoNZbeBGvOrZxrTJewG%2F8CiKVizUWN5XNZyarIYNdB4N7FUL7aww7usPYrqvRibU5QQbSRngwLu1CmlFeZMmeP9SksgZVNaXmq1eOdsFCqtfhjkyiNR4tJIaQEsctbYlEYLWc4ixEb909bDqNajGrLAIagpJbAiEmBGF7CVSeTUKUlg07iksLHUztsX6HrEQr8pTU8uLsY%2FsHmAop6g%2FXHImANGVmGGB1WkjrI64E2a9HL2i6yCsM1zWW382NYX%2FKjq5ZBIBUUWGBV4nmlBiVM8x7AU4miB4riupvgAOQwh6um%2BXZqwmrK8BNQK7IeoLOgd0AyolZpmqhrHb2FgobVCuVIIQExXsSVQ7Fw%2BsgxEBGesgHAStnOvuzcOXhWpx4GHx16HuhzM%2BmGaM45J%2B6A%2Fx6j5pB9HCfVbXcYRDBXIthzGxczyhFjRiorGE2UmjNWmKjkeSvztUQUR0R%2B8%2BhoQTLkwlBc3XRS3c93qoFIVIMCOkfJ6sasyAQKwx5s4KwOY9ZIpQQ7L%2BgNbxqUurXxbaZVhRMZYpRrlnKgu9SXXdTyqIIV7L76w%2B9YfBq9f3r34t50r%2Fx5cula6c4J5LNxi%2FrCm5vuVTsRJEKx1m69%2BUX0K6Yp%2FDCM%2F2heFQD8FbDjBzvZg0j1BAU0ZMCRe4aoaBK094CUi67Hp6Lph246t2Zhgwh2O4fRVRjKA8tZL2Qla5W%2BxWnvTohU%2BXTNurGDK5TFhvjjj3LaUQ0Bd1t7ucm2h78mjiCzT3OsUs5WuFjkNTatAATcB9OOkAFBRYwVS8kqbJlG96yT4zktTnDeluU6abLIZwxI4KooJlJsZUXAWkyxv%2BjTrZF7SZSrojMNefwPAeQyveCoXrOLLS4MX%2Fjn4%2BJ3B1eeLAxSnJSLGvqEFPtKJQm3bVQgzdMUB%2Bqn4VIeou55p0IBnbRZNrB7nzYdknwY5NPu0ze8p%2BySGrh%2BCfRIL3z%2F2iUz8HWOf0%2Br0fgSUWo5j4FHFJpquEThpMwsR2zKohjUfiqbNCDVNm3iIBpDPcBQ8NAG9fxoPSEDr9BG4GBC%2BnmMoGAE3xHtJXU3AAF5nTON1GqmJOnXuiDEAi20QHQ6sxh41o17NQA3%2B2V8HRiM5POKOB6RwExT7rkkn%2BWak8wCHgBGZnJooU09YU08Mh6SeyLpX1NOAo5QeoEDxLYKgQECpcOzAVwLPtUzX1d0AW1Opp1GnnoS%2FP4SNTxzVwVO5p%2B4AhhFVQ5ZqobsmnzwSQ%2FK52OuwDk1y9p3mnqZl3nfuORnkO5BP0z4o9xQV6x5yT%2FID9zws97wHPHM%2F%2BvrNuOfgzeuDty7tfPbXm7%2F88tvnnpp2aOr5fX3vSbCDD8E8%2BXug%2B8c8%2BTuJOzPPReYK776Nd551rmVawI%2B82NI157RO9lCgiW6g%2BvtTIBOPyRl1kqVxGmWZhnXa1vcoqHXa2rS3c%2BZQikwQrG%2FAcO74ssxyDEenLhlbT8cghqaxKVx9%2BgCsa4hgz3Cp5wfUdhAUJNMknu8xIBfOoV8W30eNt%2BfqehXFA3PQg747vi3jPTiPns5fD0k1yb1imh6jrufbQDI94ijE1XyFEuIqvh5Yhm76xKZ0GtPkuD5GNOE0BNQGEAkbqkZuxzQdWwU2ajh3zTPJGM18okPj9adCupF8t19yGkj%2FXxDNsRjf6R2nflCaKcpTjWbuXPkXOHfzzxd%2BYJf%2FR%2Bzy%2BruDf3w%2BeP39e0Ytz9Tv%2BRT%2F8YdwPMbSMNgG8Kf8tkzW63aTNF9j4nJMQKOMS4Xra%2BVtn%2BHAoqnIqrmV2eWFpvRAnMTsQQiGBCmapH7WfDKWpPF%2Fy%2FBnYsFZWVeh8GtYm2jQUb0BO059imLE6NkCbfAzVDi0QezVwpWwu0VGNxyGbebQPY9xh891YVv4E41BIO4nsbW8QI3hVTAiIauJSFPD0s%2F49QXpZHtOrk1VH2IDq6mGoL1DqnsYcpyMTDnfkDtQrIeJOfjVq4Nrvx5c%2FvTG1%2B%2FtXPh497UvBq%2F%2FdnD5k91P%2FyIXouO0HbQfd58S16oKQ0xsq5q0mXGdPClLIMQqKRq5GDDMagsC0ogNbVSD8hGHHjWDjUlWXbVKuAfL1AvjPMk6MMRNk35WbCqxWzhUUC6TPB1GEZ0xVCQ9MBxwRFoCvhoB9fCk4y3plITRGjbWrAel2W43Yo8z99EwnzF0S9VN6YFHF9vLxxpSFG4w6RHmbSQPVlsSE1tF%2FFdq0YCmYTlE0GtOqBZi6kZ8qYucEGjSyhN%2Bp2WiK4mPhTEb5sQwHUpIIevijhzEK4w3%2BCsZQNecn9kgKjlAyklx%2FYYvTNacmdl378%2F8nEbhGid4PnN762t8prXQP1oAuWHZWEHw61gYeB0KGMYscC3MgNthD3m6ZzKNIvMnfCE4Cgtw%2BtYifP6%2Fq6Vk7DkpAAA%3D
|
|
57
|
+
*/
|
|
58
|
+
staticHtml?: string;
|
|
59
|
+
static names(): { [key: string]: string } {
|
|
60
|
+
return {
|
|
61
|
+
clientInfo: 'ClientInfo',
|
|
62
|
+
diagnoseResult: 'DiagnoseResult',
|
|
63
|
+
responseHeader: 'ResponseHeader',
|
|
64
|
+
staticHtml: 'StaticHtml',
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
static types(): { [key: string]: any } {
|
|
69
|
+
return {
|
|
70
|
+
clientInfo: 'string',
|
|
71
|
+
diagnoseResult: 'string',
|
|
72
|
+
responseHeader: 'string',
|
|
73
|
+
staticHtml: 'string',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
validate() {
|
|
78
|
+
super.validate();
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
constructor(map?: { [key: string]: any }) {
|
|
82
|
+
super(map);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export class DescribeTraceDiagnoseReportResponseBody extends $dara.Model {
|
|
87
|
+
/**
|
|
88
|
+
* @example
|
|
89
|
+
* 47.xx.112.120
|
|
90
|
+
*/
|
|
91
|
+
clientAddr?: string;
|
|
92
|
+
clientInfo?: DescribeTraceDiagnoseReportResponseBodyClientInfo;
|
|
93
|
+
/**
|
|
94
|
+
* @example
|
|
95
|
+
* 33.7.98.136
|
|
96
|
+
*/
|
|
97
|
+
clientIp?: string;
|
|
98
|
+
/**
|
|
99
|
+
* @example
|
|
100
|
+
* 2024-03-11T01:23:21Z
|
|
101
|
+
*/
|
|
102
|
+
createTime?: string;
|
|
103
|
+
/**
|
|
104
|
+
* @example
|
|
105
|
+
* vpndgn-hn316ixao7ut50ybl5qui
|
|
106
|
+
*/
|
|
107
|
+
diagnoseId?: string;
|
|
108
|
+
diagnoseReportLink?: string;
|
|
109
|
+
/**
|
|
110
|
+
* @example
|
|
111
|
+
* http://cdn.dns-detect.alicdn.com/diagnose/xxxxxx
|
|
112
|
+
*/
|
|
113
|
+
diagnoseUrl?: string;
|
|
114
|
+
/**
|
|
115
|
+
* @example
|
|
116
|
+
* www.pecmnr.cn
|
|
117
|
+
*/
|
|
118
|
+
domain?: string;
|
|
119
|
+
/**
|
|
120
|
+
* @example
|
|
121
|
+
* 1678701915
|
|
122
|
+
*/
|
|
123
|
+
expireTime?: number;
|
|
124
|
+
/**
|
|
125
|
+
* @example
|
|
126
|
+
* 10
|
|
127
|
+
*/
|
|
128
|
+
remainDiagnoseTimes?: number;
|
|
129
|
+
report?: DescribeTraceDiagnoseReportResponseBodyReport;
|
|
130
|
+
/**
|
|
131
|
+
* @remarks
|
|
132
|
+
* Id of the request
|
|
133
|
+
*
|
|
134
|
+
* @example
|
|
135
|
+
* 15C66C7B-671A-4297-9187-2C4477247A74
|
|
136
|
+
*/
|
|
137
|
+
requestId?: string;
|
|
138
|
+
/**
|
|
139
|
+
* @example
|
|
140
|
+
* ok
|
|
141
|
+
*/
|
|
142
|
+
state?: string;
|
|
143
|
+
/**
|
|
144
|
+
* @example
|
|
145
|
+
* OK
|
|
146
|
+
*/
|
|
147
|
+
status?: number;
|
|
148
|
+
/**
|
|
149
|
+
* @example
|
|
150
|
+
* xxxxxxx-xxxxx-xxxxx-xxxxxxxxxxx
|
|
151
|
+
*/
|
|
152
|
+
taskId?: string;
|
|
153
|
+
/**
|
|
154
|
+
* @example
|
|
155
|
+
* 1s
|
|
156
|
+
*/
|
|
157
|
+
timeConsuming?: number;
|
|
158
|
+
/**
|
|
159
|
+
* @example
|
|
160
|
+
* https://tracing-sk.alibaba-inc.com/trace/xxxxxxxxxxxxxx
|
|
161
|
+
*/
|
|
162
|
+
traceDisplayLink?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @example
|
|
165
|
+
* 0000006xxxxxxxxxxxx533427e
|
|
166
|
+
*/
|
|
167
|
+
traceId?: string;
|
|
168
|
+
static names(): { [key: string]: string } {
|
|
169
|
+
return {
|
|
170
|
+
clientAddr: 'ClientAddr',
|
|
171
|
+
clientInfo: 'ClientInfo',
|
|
172
|
+
clientIp: 'ClientIp',
|
|
173
|
+
createTime: 'CreateTime',
|
|
174
|
+
diagnoseId: 'DiagnoseId',
|
|
175
|
+
diagnoseReportLink: 'DiagnoseReportLink',
|
|
176
|
+
diagnoseUrl: 'DiagnoseUrl',
|
|
177
|
+
domain: 'Domain',
|
|
178
|
+
expireTime: 'ExpireTime',
|
|
179
|
+
remainDiagnoseTimes: 'RemainDiagnoseTimes',
|
|
180
|
+
report: 'Report',
|
|
181
|
+
requestId: 'RequestId',
|
|
182
|
+
state: 'State',
|
|
183
|
+
status: 'Status',
|
|
184
|
+
taskId: 'TaskId',
|
|
185
|
+
timeConsuming: 'TimeConsuming',
|
|
186
|
+
traceDisplayLink: 'TraceDisplayLink',
|
|
187
|
+
traceId: 'TraceId',
|
|
188
|
+
};
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
static types(): { [key: string]: any } {
|
|
192
|
+
return {
|
|
193
|
+
clientAddr: 'string',
|
|
194
|
+
clientInfo: DescribeTraceDiagnoseReportResponseBodyClientInfo,
|
|
195
|
+
clientIp: 'string',
|
|
196
|
+
createTime: 'string',
|
|
197
|
+
diagnoseId: 'string',
|
|
198
|
+
diagnoseReportLink: 'string',
|
|
199
|
+
diagnoseUrl: 'string',
|
|
200
|
+
domain: 'string',
|
|
201
|
+
expireTime: 'number',
|
|
202
|
+
remainDiagnoseTimes: 'number',
|
|
203
|
+
report: DescribeTraceDiagnoseReportResponseBodyReport,
|
|
204
|
+
requestId: 'string',
|
|
205
|
+
state: 'string',
|
|
206
|
+
status: 'number',
|
|
207
|
+
taskId: 'string',
|
|
208
|
+
timeConsuming: 'number',
|
|
209
|
+
traceDisplayLink: 'string',
|
|
210
|
+
traceId: 'string',
|
|
211
|
+
};
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
validate() {
|
|
215
|
+
if(this.clientInfo && typeof (this.clientInfo as any).validate === 'function') {
|
|
216
|
+
(this.clientInfo as any).validate();
|
|
217
|
+
}
|
|
218
|
+
if(this.report && typeof (this.report as any).validate === 'function') {
|
|
219
|
+
(this.report as any).validate();
|
|
220
|
+
}
|
|
221
|
+
super.validate();
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
constructor(map?: { [key: string]: any }) {
|
|
225
|
+
super(map);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GenerateTraceDiagnoseRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* This parameter is required.
|
|
9
|
+
*
|
|
10
|
+
* @example
|
|
11
|
+
* http://www.example.com/xxx.jpg
|
|
12
|
+
*/
|
|
13
|
+
url?: string;
|
|
14
|
+
static names(): { [key: string]: string } {
|
|
15
|
+
return {
|
|
16
|
+
url: 'Url',
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
static types(): { [key: string]: any } {
|
|
21
|
+
return {
|
|
22
|
+
url: 'string',
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
super.validate();
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
constructor(map?: { [key: string]: any }) {
|
|
31
|
+
super(map);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { GenerateTraceDiagnoseResponseBody } from "./GenerateTraceDiagnoseResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class GenerateTraceDiagnoseResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: GenerateTraceDiagnoseResponseBody;
|
|
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: GenerateTraceDiagnoseResponseBody,
|
|
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,45 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class GenerateTraceDiagnoseResponseBody extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 64D28B53-5902-409B-94F6-FD46680144FE
|
|
9
|
+
*/
|
|
10
|
+
requestId?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* http://cdn.dns-detect.alicdn.com/diagnose/?id=xxxxxxx
|
|
14
|
+
*/
|
|
15
|
+
tip?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* http://cdn.dns-detect.alicdn.com/diagnose_v2?id=5d97ac9b&token=WFji65gy2mGNM11bD929%2BCMoyI6mbk2deRR9hOC6INH%2FoYbccQZQcvEn4wc%2FDPHlTshxRSAa5HokX%2BabItBpJ0FdnteROssomXqgIdjHpM46L%2BbaIeweZfsWG6QnbXT5n7O5APMyc%2Fe8d1o9PwwB429Ccks1FU1AfjNZfvBcLeo%3D
|
|
19
|
+
*/
|
|
20
|
+
url?: string;
|
|
21
|
+
static names(): { [key: string]: string } {
|
|
22
|
+
return {
|
|
23
|
+
requestId: 'RequestId',
|
|
24
|
+
tip: 'Tip',
|
|
25
|
+
url: 'Url',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
static types(): { [key: string]: any } {
|
|
30
|
+
return {
|
|
31
|
+
requestId: 'string',
|
|
32
|
+
tip: 'string',
|
|
33
|
+
url: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
validate() {
|
|
38
|
+
super.validate();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
constructor(map?: { [key: string]: any }) {
|
|
42
|
+
super(map);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListPostpaidRatePlanInstancesRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* ListPostpaidRatePlanInstances
|
|
9
|
+
*/
|
|
10
|
+
checkRemainingSiteQuota?: string;
|
|
11
|
+
instanceId?: string;
|
|
12
|
+
pageNumber?: number;
|
|
13
|
+
pageSize?: number;
|
|
14
|
+
sortBy?: string;
|
|
15
|
+
sortOrder?: string;
|
|
16
|
+
status?: string;
|
|
17
|
+
unrelatedType?: string;
|
|
18
|
+
static names(): { [key: string]: string } {
|
|
19
|
+
return {
|
|
20
|
+
checkRemainingSiteQuota: 'CheckRemainingSiteQuota',
|
|
21
|
+
instanceId: 'InstanceId',
|
|
22
|
+
pageNumber: 'PageNumber',
|
|
23
|
+
pageSize: 'PageSize',
|
|
24
|
+
sortBy: 'SortBy',
|
|
25
|
+
sortOrder: 'SortOrder',
|
|
26
|
+
status: 'Status',
|
|
27
|
+
unrelatedType: 'UnrelatedType',
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
static types(): { [key: string]: any } {
|
|
32
|
+
return {
|
|
33
|
+
checkRemainingSiteQuota: 'string',
|
|
34
|
+
instanceId: 'string',
|
|
35
|
+
pageNumber: 'number',
|
|
36
|
+
pageSize: 'number',
|
|
37
|
+
sortBy: 'string',
|
|
38
|
+
sortOrder: 'string',
|
|
39
|
+
status: 'string',
|
|
40
|
+
unrelatedType: 'string',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { ListPostpaidRatePlanInstancesResponseBody } from "./ListPostpaidRatePlanInstancesResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class ListPostpaidRatePlanInstancesResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: ListPostpaidRatePlanInstancesResponseBody;
|
|
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: ListPostpaidRatePlanInstancesResponseBody,
|
|
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,137 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListPostpaidRatePlanInstancesResponseBodyInstanceInfoSites extends $dara.Model {
|
|
6
|
+
siteId?: number;
|
|
7
|
+
siteName?: string;
|
|
8
|
+
siteStatus?: string;
|
|
9
|
+
static names(): { [key: string]: string } {
|
|
10
|
+
return {
|
|
11
|
+
siteId: 'SiteId',
|
|
12
|
+
siteName: 'SiteName',
|
|
13
|
+
siteStatus: 'SiteStatus',
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
static types(): { [key: string]: any } {
|
|
18
|
+
return {
|
|
19
|
+
siteId: 'number',
|
|
20
|
+
siteName: 'string',
|
|
21
|
+
siteStatus: 'string',
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
validate() {
|
|
26
|
+
super.validate();
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
constructor(map?: { [key: string]: any }) {
|
|
30
|
+
super(map);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export class ListPostpaidRatePlanInstancesResponseBodyInstanceInfo extends $dara.Model {
|
|
35
|
+
billingMethod?: string;
|
|
36
|
+
billingMode?: string;
|
|
37
|
+
coverages?: string;
|
|
38
|
+
createTime?: string;
|
|
39
|
+
expectedUpdateTime?: string;
|
|
40
|
+
instanceId?: string;
|
|
41
|
+
planName?: string;
|
|
42
|
+
planNameCn?: string;
|
|
43
|
+
planType?: string;
|
|
44
|
+
siteQuota?: string;
|
|
45
|
+
sites?: ListPostpaidRatePlanInstancesResponseBodyInstanceInfoSites[];
|
|
46
|
+
status?: string;
|
|
47
|
+
static names(): { [key: string]: string } {
|
|
48
|
+
return {
|
|
49
|
+
billingMethod: 'BillingMethod',
|
|
50
|
+
billingMode: 'BillingMode',
|
|
51
|
+
coverages: 'Coverages',
|
|
52
|
+
createTime: 'CreateTime',
|
|
53
|
+
expectedUpdateTime: 'ExpectedUpdateTime',
|
|
54
|
+
instanceId: 'InstanceId',
|
|
55
|
+
planName: 'PlanName',
|
|
56
|
+
planNameCn: 'PlanNameCn',
|
|
57
|
+
planType: 'PlanType',
|
|
58
|
+
siteQuota: 'SiteQuota',
|
|
59
|
+
sites: 'Sites',
|
|
60
|
+
status: 'Status',
|
|
61
|
+
};
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
static types(): { [key: string]: any } {
|
|
65
|
+
return {
|
|
66
|
+
billingMethod: 'string',
|
|
67
|
+
billingMode: 'string',
|
|
68
|
+
coverages: 'string',
|
|
69
|
+
createTime: 'string',
|
|
70
|
+
expectedUpdateTime: 'string',
|
|
71
|
+
instanceId: 'string',
|
|
72
|
+
planName: 'string',
|
|
73
|
+
planNameCn: 'string',
|
|
74
|
+
planType: 'string',
|
|
75
|
+
siteQuota: 'string',
|
|
76
|
+
sites: { 'type': 'array', 'itemType': ListPostpaidRatePlanInstancesResponseBodyInstanceInfoSites },
|
|
77
|
+
status: 'string',
|
|
78
|
+
};
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
validate() {
|
|
82
|
+
if(Array.isArray(this.sites)) {
|
|
83
|
+
$dara.Model.validateArray(this.sites);
|
|
84
|
+
}
|
|
85
|
+
super.validate();
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
constructor(map?: { [key: string]: any }) {
|
|
89
|
+
super(map);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export class ListPostpaidRatePlanInstancesResponseBody extends $dara.Model {
|
|
94
|
+
instanceInfo?: ListPostpaidRatePlanInstancesResponseBodyInstanceInfo[];
|
|
95
|
+
pageNumber?: number;
|
|
96
|
+
pageSize?: number;
|
|
97
|
+
/**
|
|
98
|
+
* @remarks
|
|
99
|
+
* Id of the request
|
|
100
|
+
*/
|
|
101
|
+
requestId?: string;
|
|
102
|
+
totalCount?: number;
|
|
103
|
+
totalPage?: number;
|
|
104
|
+
static names(): { [key: string]: string } {
|
|
105
|
+
return {
|
|
106
|
+
instanceInfo: 'InstanceInfo',
|
|
107
|
+
pageNumber: 'PageNumber',
|
|
108
|
+
pageSize: 'PageSize',
|
|
109
|
+
requestId: 'RequestId',
|
|
110
|
+
totalCount: 'TotalCount',
|
|
111
|
+
totalPage: 'TotalPage',
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
static types(): { [key: string]: any } {
|
|
116
|
+
return {
|
|
117
|
+
instanceInfo: { 'type': 'array', 'itemType': ListPostpaidRatePlanInstancesResponseBodyInstanceInfo },
|
|
118
|
+
pageNumber: 'number',
|
|
119
|
+
pageSize: 'number',
|
|
120
|
+
requestId: 'string',
|
|
121
|
+
totalCount: 'number',
|
|
122
|
+
totalPage: 'number',
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
validate() {
|
|
127
|
+
if(Array.isArray(this.instanceInfo)) {
|
|
128
|
+
$dara.Model.validateArray(this.instanceInfo);
|
|
129
|
+
}
|
|
130
|
+
super.validate();
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
constructor(map?: { [key: string]: any }) {
|
|
134
|
+
super(map);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class ListTraceTasksRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 60.xx.xxx.38
|
|
9
|
+
*/
|
|
10
|
+
clientIp?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* f2xxx5
|
|
14
|
+
*/
|
|
15
|
+
diagnoseId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* http://www.example.com
|
|
19
|
+
*/
|
|
20
|
+
domainName?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 1644467126
|
|
24
|
+
*/
|
|
25
|
+
endTime?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 2
|
|
29
|
+
*/
|
|
30
|
+
pageNumber?: number;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* 10
|
|
34
|
+
*/
|
|
35
|
+
pageSize?: number;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* 1644467126
|
|
39
|
+
*/
|
|
40
|
+
startTime?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example
|
|
43
|
+
* xxxxxxxxxx-x-x-xxxxxxxxxxxxxxxxx
|
|
44
|
+
*/
|
|
45
|
+
taskId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* 000000xxxxxxxxxxxxxxxxxxxxxx33427e
|
|
49
|
+
*/
|
|
50
|
+
traceId?: string;
|
|
51
|
+
static names(): { [key: string]: string } {
|
|
52
|
+
return {
|
|
53
|
+
clientIp: 'ClientIp',
|
|
54
|
+
diagnoseId: 'DiagnoseId',
|
|
55
|
+
domainName: 'DomainName',
|
|
56
|
+
endTime: 'EndTime',
|
|
57
|
+
pageNumber: 'PageNumber',
|
|
58
|
+
pageSize: 'PageSize',
|
|
59
|
+
startTime: 'StartTime',
|
|
60
|
+
taskId: 'TaskId',
|
|
61
|
+
traceId: 'TraceId',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
static types(): { [key: string]: any } {
|
|
66
|
+
return {
|
|
67
|
+
clientIp: 'string',
|
|
68
|
+
diagnoseId: 'string',
|
|
69
|
+
domainName: 'string',
|
|
70
|
+
endTime: 'string',
|
|
71
|
+
pageNumber: 'number',
|
|
72
|
+
pageSize: 'number',
|
|
73
|
+
startTime: 'string',
|
|
74
|
+
taskId: 'string',
|
|
75
|
+
traceId: 'string',
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
validate() {
|
|
80
|
+
super.validate();
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
constructor(map?: { [key: string]: any }) {
|
|
84
|
+
super(map);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|