@alicloud/ddosbgp20180720 1.0.2 → 2.0.1
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +914 -459
- package/dist/client.js +2210 -919
- package/dist/client.js.map +1 -1
- package/package.json +6 -7
- package/src/client.ts +2638 -1145
package/dist/client.d.ts
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*/
|
|
1
4
|
import * as $Util from '@alicloud/tea-util';
|
|
2
|
-
import
|
|
5
|
+
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
3
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
4
|
-
export declare class
|
|
5
|
-
|
|
7
|
+
export declare class AddIpRequest extends $tea.Model {
|
|
8
|
+
instanceId?: string;
|
|
9
|
+
ipList?: string;
|
|
6
10
|
regionId?: string;
|
|
11
|
+
resourceGroupId?: string;
|
|
7
12
|
static names(): {
|
|
8
13
|
[key: string]: string;
|
|
9
14
|
};
|
|
@@ -14,9 +19,8 @@ export declare class DescribeOnDemandInstanceStatusRequest extends $tea.Model {
|
|
|
14
19
|
[key: string]: any;
|
|
15
20
|
});
|
|
16
21
|
}
|
|
17
|
-
export declare class
|
|
18
|
-
requestId
|
|
19
|
-
instances: DescribeOnDemandInstanceStatusResponseInstances[];
|
|
22
|
+
export declare class AddIpResponseBody extends $tea.Model {
|
|
23
|
+
requestId?: string;
|
|
20
24
|
static names(): {
|
|
21
25
|
[key: string]: string;
|
|
22
26
|
};
|
|
@@ -27,10 +31,12 @@ export declare class DescribeOnDemandInstanceStatusResponse extends $tea.Model {
|
|
|
27
31
|
[key: string]: any;
|
|
28
32
|
});
|
|
29
33
|
}
|
|
30
|
-
export declare class
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
+
export declare class AddIpResponse extends $tea.Model {
|
|
35
|
+
headers: {
|
|
36
|
+
[key: string]: string;
|
|
37
|
+
};
|
|
38
|
+
statusCode: number;
|
|
39
|
+
body: AddIpResponseBody;
|
|
34
40
|
static names(): {
|
|
35
41
|
[key: string]: string;
|
|
36
42
|
};
|
|
@@ -41,8 +47,9 @@ export declare class SetInstanceModeOnDemandRequest extends $tea.Model {
|
|
|
41
47
|
[key: string]: any;
|
|
42
48
|
});
|
|
43
49
|
}
|
|
44
|
-
export declare class
|
|
45
|
-
|
|
50
|
+
export declare class CheckAccessLogAuthRequest extends $tea.Model {
|
|
51
|
+
regionId?: string;
|
|
52
|
+
resourceGroupId?: string;
|
|
46
53
|
static names(): {
|
|
47
54
|
[key: string]: string;
|
|
48
55
|
};
|
|
@@ -53,9 +60,9 @@ export declare class SetInstanceModeOnDemandResponse extends $tea.Model {
|
|
|
53
60
|
[key: string]: any;
|
|
54
61
|
});
|
|
55
62
|
}
|
|
56
|
-
export declare class
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
export declare class CheckAccessLogAuthResponseBody extends $tea.Model {
|
|
64
|
+
accessLogAuth?: boolean;
|
|
65
|
+
requestId?: string;
|
|
59
66
|
static names(): {
|
|
60
67
|
[key: string]: string;
|
|
61
68
|
};
|
|
@@ -66,12 +73,12 @@ export declare class QuerySchedruleOnDemandRequest extends $tea.Model {
|
|
|
66
73
|
[key: string]: any;
|
|
67
74
|
});
|
|
68
75
|
}
|
|
69
|
-
export declare class
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
76
|
+
export declare class CheckAccessLogAuthResponse extends $tea.Model {
|
|
77
|
+
headers: {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
statusCode: number;
|
|
81
|
+
body: CheckAccessLogAuthResponseBody;
|
|
75
82
|
static names(): {
|
|
76
83
|
[key: string]: string;
|
|
77
84
|
};
|
|
@@ -82,10 +89,10 @@ export declare class QuerySchedruleOnDemandResponse extends $tea.Model {
|
|
|
82
89
|
[key: string]: any;
|
|
83
90
|
});
|
|
84
91
|
}
|
|
85
|
-
export declare class
|
|
86
|
-
|
|
87
|
-
ruleName: string;
|
|
92
|
+
export declare class CheckGrantRequest extends $tea.Model {
|
|
93
|
+
isSlr?: boolean;
|
|
88
94
|
regionId?: string;
|
|
95
|
+
resourceGroupId?: string;
|
|
89
96
|
static names(): {
|
|
90
97
|
[key: string]: string;
|
|
91
98
|
};
|
|
@@ -96,8 +103,9 @@ export declare class DeleteSchedruleOnDemandRequest extends $tea.Model {
|
|
|
96
103
|
[key: string]: any;
|
|
97
104
|
});
|
|
98
105
|
}
|
|
99
|
-
export declare class
|
|
100
|
-
requestId
|
|
106
|
+
export declare class CheckGrantResponseBody extends $tea.Model {
|
|
107
|
+
requestId?: string;
|
|
108
|
+
status?: number;
|
|
101
109
|
static names(): {
|
|
102
110
|
[key: string]: string;
|
|
103
111
|
};
|
|
@@ -108,19 +116,12 @@ export declare class DeleteSchedruleOnDemandResponse extends $tea.Model {
|
|
|
108
116
|
[key: string]: any;
|
|
109
117
|
});
|
|
110
118
|
}
|
|
111
|
-
export declare class
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
ruleAction: string;
|
|
118
|
-
ruleSwitch: string;
|
|
119
|
-
ruleUndoMode: string;
|
|
120
|
-
ruleUndoBeginTime: string;
|
|
121
|
-
ruleUndoEndTime?: string;
|
|
122
|
-
timeZone: string;
|
|
123
|
-
regionId?: string;
|
|
119
|
+
export declare class CheckGrantResponse extends $tea.Model {
|
|
120
|
+
headers: {
|
|
121
|
+
[key: string]: string;
|
|
122
|
+
};
|
|
123
|
+
statusCode: number;
|
|
124
|
+
body: CheckGrantResponseBody;
|
|
124
125
|
static names(): {
|
|
125
126
|
[key: string]: string;
|
|
126
127
|
};
|
|
@@ -131,8 +132,19 @@ export declare class ConfigSchedruleOnDemandRequest extends $tea.Model {
|
|
|
131
132
|
[key: string]: any;
|
|
132
133
|
});
|
|
133
134
|
}
|
|
134
|
-
export declare class
|
|
135
|
-
|
|
135
|
+
export declare class ConfigSchedruleOnDemandRequest extends $tea.Model {
|
|
136
|
+
instanceId?: string;
|
|
137
|
+
regionId?: string;
|
|
138
|
+
ruleAction?: string;
|
|
139
|
+
ruleConditionCnt?: string;
|
|
140
|
+
ruleConditionKpps?: string;
|
|
141
|
+
ruleConditionMbps?: string;
|
|
142
|
+
ruleName?: string;
|
|
143
|
+
ruleSwitch?: string;
|
|
144
|
+
ruleUndoBeginTime?: string;
|
|
145
|
+
ruleUndoEndTime?: string;
|
|
146
|
+
ruleUndoMode?: string;
|
|
147
|
+
timeZone?: string;
|
|
136
148
|
static names(): {
|
|
137
149
|
[key: string]: string;
|
|
138
150
|
};
|
|
@@ -143,19 +155,8 @@ export declare class ConfigSchedruleOnDemandResponse extends $tea.Model {
|
|
|
143
155
|
[key: string]: any;
|
|
144
156
|
});
|
|
145
157
|
}
|
|
146
|
-
export declare class
|
|
147
|
-
|
|
148
|
-
ruleName: string;
|
|
149
|
-
ruleConditionMbps: string;
|
|
150
|
-
ruleConditionKpps: string;
|
|
151
|
-
ruleConditionCnt: string;
|
|
152
|
-
ruleAction: string;
|
|
153
|
-
ruleSwitch: string;
|
|
154
|
-
ruleUndoMode: string;
|
|
155
|
-
ruleUndoBeginTime: string;
|
|
156
|
-
ruleUndoEndTime?: string;
|
|
157
|
-
timeZone: string;
|
|
158
|
-
regionId?: string;
|
|
158
|
+
export declare class ConfigSchedruleOnDemandResponseBody extends $tea.Model {
|
|
159
|
+
requestId?: string;
|
|
159
160
|
static names(): {
|
|
160
161
|
[key: string]: string;
|
|
161
162
|
};
|
|
@@ -166,8 +167,12 @@ export declare class CreateSchedruleOnDemandRequest extends $tea.Model {
|
|
|
166
167
|
[key: string]: any;
|
|
167
168
|
});
|
|
168
169
|
}
|
|
169
|
-
export declare class
|
|
170
|
-
|
|
170
|
+
export declare class ConfigSchedruleOnDemandResponse extends $tea.Model {
|
|
171
|
+
headers: {
|
|
172
|
+
[key: string]: string;
|
|
173
|
+
};
|
|
174
|
+
statusCode: number;
|
|
175
|
+
body: ConfigSchedruleOnDemandResponseBody;
|
|
171
176
|
static names(): {
|
|
172
177
|
[key: string]: string;
|
|
173
178
|
};
|
|
@@ -178,9 +183,19 @@ export declare class CreateSchedruleOnDemandResponse extends $tea.Model {
|
|
|
178
183
|
[key: string]: any;
|
|
179
184
|
});
|
|
180
185
|
}
|
|
181
|
-
export declare class
|
|
186
|
+
export declare class CreateSchedruleOnDemandRequest extends $tea.Model {
|
|
187
|
+
instanceId?: string;
|
|
182
188
|
regionId?: string;
|
|
183
|
-
|
|
189
|
+
ruleAction?: string;
|
|
190
|
+
ruleConditionCnt?: string;
|
|
191
|
+
ruleConditionKpps?: string;
|
|
192
|
+
ruleConditionMbps?: string;
|
|
193
|
+
ruleName?: string;
|
|
194
|
+
ruleSwitch?: string;
|
|
195
|
+
ruleUndoBeginTime?: string;
|
|
196
|
+
ruleUndoEndTime?: string;
|
|
197
|
+
ruleUndoMode?: string;
|
|
198
|
+
timeZone?: string;
|
|
184
199
|
static names(): {
|
|
185
200
|
[key: string]: string;
|
|
186
201
|
};
|
|
@@ -191,9 +206,8 @@ export declare class GetSlsOpenStatusRequest extends $tea.Model {
|
|
|
191
206
|
[key: string]: any;
|
|
192
207
|
});
|
|
193
208
|
}
|
|
194
|
-
export declare class
|
|
195
|
-
requestId
|
|
196
|
-
slsOpenStatus: boolean;
|
|
209
|
+
export declare class CreateSchedruleOnDemandResponseBody extends $tea.Model {
|
|
210
|
+
requestId?: string;
|
|
197
211
|
static names(): {
|
|
198
212
|
[key: string]: string;
|
|
199
213
|
};
|
|
@@ -204,9 +218,12 @@ export declare class GetSlsOpenStatusResponse extends $tea.Model {
|
|
|
204
218
|
[key: string]: any;
|
|
205
219
|
});
|
|
206
220
|
}
|
|
207
|
-
export declare class
|
|
208
|
-
|
|
209
|
-
|
|
221
|
+
export declare class CreateSchedruleOnDemandResponse extends $tea.Model {
|
|
222
|
+
headers: {
|
|
223
|
+
[key: string]: string;
|
|
224
|
+
};
|
|
225
|
+
statusCode: number;
|
|
226
|
+
body: CreateSchedruleOnDemandResponseBody;
|
|
210
227
|
static names(): {
|
|
211
228
|
[key: string]: string;
|
|
212
229
|
};
|
|
@@ -217,9 +234,11 @@ export declare class CheckAccessLogAuthRequest extends $tea.Model {
|
|
|
217
234
|
[key: string]: any;
|
|
218
235
|
});
|
|
219
236
|
}
|
|
220
|
-
export declare class
|
|
221
|
-
|
|
222
|
-
|
|
237
|
+
export declare class DeleteBlackholeRequest extends $tea.Model {
|
|
238
|
+
instanceId?: string;
|
|
239
|
+
ip?: string;
|
|
240
|
+
regionId?: string;
|
|
241
|
+
resourceGroupId?: string;
|
|
223
242
|
static names(): {
|
|
224
243
|
[key: string]: string;
|
|
225
244
|
};
|
|
@@ -230,10 +249,8 @@ export declare class CheckAccessLogAuthResponse extends $tea.Model {
|
|
|
230
249
|
[key: string]: any;
|
|
231
250
|
});
|
|
232
251
|
}
|
|
233
|
-
export declare class
|
|
234
|
-
|
|
235
|
-
pageNumber?: number;
|
|
236
|
-
pageSize?: number;
|
|
252
|
+
export declare class DeleteBlackholeResponseBody extends $tea.Model {
|
|
253
|
+
requestId?: string;
|
|
237
254
|
static names(): {
|
|
238
255
|
[key: string]: string;
|
|
239
256
|
};
|
|
@@ -244,10 +261,12 @@ export declare class ListOpenedAccessLogInstancesRequest extends $tea.Model {
|
|
|
244
261
|
[key: string]: any;
|
|
245
262
|
});
|
|
246
263
|
}
|
|
247
|
-
export declare class
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
264
|
+
export declare class DeleteBlackholeResponse extends $tea.Model {
|
|
265
|
+
headers: {
|
|
266
|
+
[key: string]: string;
|
|
267
|
+
};
|
|
268
|
+
statusCode: number;
|
|
269
|
+
body: DeleteBlackholeResponseBody;
|
|
251
270
|
static names(): {
|
|
252
271
|
[key: string]: string;
|
|
253
272
|
};
|
|
@@ -258,15 +277,11 @@ export declare class ListOpenedAccessLogInstancesResponse extends $tea.Model {
|
|
|
258
277
|
[key: string]: any;
|
|
259
278
|
});
|
|
260
279
|
}
|
|
261
|
-
export declare class
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
pageSize: number;
|
|
265
|
-
pageNo: number;
|
|
266
|
-
instanceId: string;
|
|
267
|
-
ip?: string;
|
|
268
|
-
resourceGroupId?: string;
|
|
280
|
+
export declare class DeleteIpRequest extends $tea.Model {
|
|
281
|
+
instanceId?: string;
|
|
282
|
+
ipList?: string;
|
|
269
283
|
regionId?: string;
|
|
284
|
+
resourceGroupId?: string;
|
|
270
285
|
static names(): {
|
|
271
286
|
[key: string]: string;
|
|
272
287
|
};
|
|
@@ -277,10 +292,8 @@ export declare class DescribeOnDemandDdosEventRequest extends $tea.Model {
|
|
|
277
292
|
[key: string]: any;
|
|
278
293
|
});
|
|
279
294
|
}
|
|
280
|
-
export declare class
|
|
281
|
-
requestId
|
|
282
|
-
total: number;
|
|
283
|
-
events: DescribeOnDemandDdosEventResponseEvents[];
|
|
295
|
+
export declare class DeleteIpResponseBody extends $tea.Model {
|
|
296
|
+
requestId?: string;
|
|
284
297
|
static names(): {
|
|
285
298
|
[key: string]: string;
|
|
286
299
|
};
|
|
@@ -291,12 +304,12 @@ export declare class DescribeOnDemandDdosEventResponse extends $tea.Model {
|
|
|
291
304
|
[key: string]: any;
|
|
292
305
|
});
|
|
293
306
|
}
|
|
294
|
-
export declare class
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
307
|
+
export declare class DeleteIpResponse extends $tea.Model {
|
|
308
|
+
headers: {
|
|
309
|
+
[key: string]: string;
|
|
310
|
+
};
|
|
311
|
+
statusCode: number;
|
|
312
|
+
body: DeleteIpResponseBody;
|
|
300
313
|
static names(): {
|
|
301
314
|
[key: string]: string;
|
|
302
315
|
};
|
|
@@ -307,12 +320,10 @@ export declare class ListTagKeysRequest extends $tea.Model {
|
|
|
307
320
|
[key: string]: any;
|
|
308
321
|
});
|
|
309
322
|
}
|
|
310
|
-
export declare class
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
totalCount: number;
|
|
315
|
-
tagKeys: ListTagKeysResponseTagKeys[];
|
|
323
|
+
export declare class DeleteSchedruleOnDemandRequest extends $tea.Model {
|
|
324
|
+
instanceId?: string;
|
|
325
|
+
regionId?: string;
|
|
326
|
+
ruleName?: string;
|
|
316
327
|
static names(): {
|
|
317
328
|
[key: string]: string;
|
|
318
329
|
};
|
|
@@ -323,13 +334,8 @@ export declare class ListTagKeysResponse extends $tea.Model {
|
|
|
323
334
|
[key: string]: any;
|
|
324
335
|
});
|
|
325
336
|
}
|
|
326
|
-
export declare class
|
|
327
|
-
|
|
328
|
-
regionId: string;
|
|
329
|
-
resourceType: string;
|
|
330
|
-
resourceId?: string[];
|
|
331
|
-
tag?: ListTagResourcesRequestTag[];
|
|
332
|
-
nextToken?: string;
|
|
337
|
+
export declare class DeleteSchedruleOnDemandResponseBody extends $tea.Model {
|
|
338
|
+
requestId?: string;
|
|
333
339
|
static names(): {
|
|
334
340
|
[key: string]: string;
|
|
335
341
|
};
|
|
@@ -340,10 +346,12 @@ export declare class ListTagResourcesRequest extends $tea.Model {
|
|
|
340
346
|
[key: string]: any;
|
|
341
347
|
});
|
|
342
348
|
}
|
|
343
|
-
export declare class
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
349
|
+
export declare class DeleteSchedruleOnDemandResponse extends $tea.Model {
|
|
350
|
+
headers: {
|
|
351
|
+
[key: string]: string;
|
|
352
|
+
};
|
|
353
|
+
statusCode: number;
|
|
354
|
+
body: DeleteSchedruleOnDemandResponseBody;
|
|
347
355
|
static names(): {
|
|
348
356
|
[key: string]: string;
|
|
349
357
|
};
|
|
@@ -354,13 +362,15 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
354
362
|
[key: string]: any;
|
|
355
363
|
});
|
|
356
364
|
}
|
|
357
|
-
export declare class
|
|
365
|
+
export declare class DescribeDdosEventRequest extends $tea.Model {
|
|
366
|
+
endTime?: number;
|
|
367
|
+
instanceId?: string;
|
|
368
|
+
ip?: string;
|
|
369
|
+
pageNo?: number;
|
|
370
|
+
pageSize?: number;
|
|
371
|
+
regionId?: string;
|
|
358
372
|
resourceGroupId?: string;
|
|
359
|
-
|
|
360
|
-
resourceType: string;
|
|
361
|
-
resourceId: string[];
|
|
362
|
-
tagKey?: string[];
|
|
363
|
-
all?: boolean;
|
|
373
|
+
startTime?: number;
|
|
364
374
|
static names(): {
|
|
365
375
|
[key: string]: string;
|
|
366
376
|
};
|
|
@@ -371,8 +381,10 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
371
381
|
[key: string]: any;
|
|
372
382
|
});
|
|
373
383
|
}
|
|
374
|
-
export declare class
|
|
375
|
-
|
|
384
|
+
export declare class DescribeDdosEventResponseBody extends $tea.Model {
|
|
385
|
+
events?: DescribeDdosEventResponseBodyEvents[];
|
|
386
|
+
requestId?: string;
|
|
387
|
+
total?: number;
|
|
376
388
|
static names(): {
|
|
377
389
|
[key: string]: string;
|
|
378
390
|
};
|
|
@@ -383,12 +395,12 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
383
395
|
[key: string]: any;
|
|
384
396
|
});
|
|
385
397
|
}
|
|
386
|
-
export declare class
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
398
|
+
export declare class DescribeDdosEventResponse extends $tea.Model {
|
|
399
|
+
headers: {
|
|
400
|
+
[key: string]: string;
|
|
401
|
+
};
|
|
402
|
+
statusCode: number;
|
|
403
|
+
body: DescribeDdosEventResponseBody;
|
|
392
404
|
static names(): {
|
|
393
405
|
[key: string]: string;
|
|
394
406
|
};
|
|
@@ -399,8 +411,9 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
399
411
|
[key: string]: any;
|
|
400
412
|
});
|
|
401
413
|
}
|
|
402
|
-
export declare class
|
|
403
|
-
|
|
414
|
+
export declare class DescribeExcpetionCountRequest extends $tea.Model {
|
|
415
|
+
regionId?: string;
|
|
416
|
+
resourceGroupId?: string;
|
|
404
417
|
static names(): {
|
|
405
418
|
[key: string]: string;
|
|
406
419
|
};
|
|
@@ -411,9 +424,10 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
411
424
|
[key: string]: any;
|
|
412
425
|
});
|
|
413
426
|
}
|
|
414
|
-
export declare class
|
|
415
|
-
|
|
416
|
-
|
|
427
|
+
export declare class DescribeExcpetionCountResponseBody extends $tea.Model {
|
|
428
|
+
exceptionIpCount?: number;
|
|
429
|
+
expireTimeCount?: number;
|
|
430
|
+
requestId?: string;
|
|
417
431
|
static names(): {
|
|
418
432
|
[key: string]: string;
|
|
419
433
|
};
|
|
@@ -425,9 +439,11 @@ export declare class DescribeExcpetionCountRequest extends $tea.Model {
|
|
|
425
439
|
});
|
|
426
440
|
}
|
|
427
441
|
export declare class DescribeExcpetionCountResponse extends $tea.Model {
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
442
|
+
headers: {
|
|
443
|
+
[key: string]: string;
|
|
444
|
+
};
|
|
445
|
+
statusCode: number;
|
|
446
|
+
body: DescribeExcpetionCountResponseBody;
|
|
431
447
|
static names(): {
|
|
432
448
|
[key: string]: string;
|
|
433
449
|
};
|
|
@@ -438,14 +454,20 @@ export declare class DescribeExcpetionCountResponse extends $tea.Model {
|
|
|
438
454
|
[key: string]: any;
|
|
439
455
|
});
|
|
440
456
|
}
|
|
441
|
-
export declare class
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
457
|
+
export declare class DescribeInstanceListRequest extends $tea.Model {
|
|
458
|
+
instanceIdList?: string;
|
|
459
|
+
instanceType?: string;
|
|
460
|
+
instanceTypeList?: string[];
|
|
445
461
|
ip?: string;
|
|
446
|
-
|
|
447
|
-
|
|
462
|
+
ipVersion?: string;
|
|
463
|
+
orderby?: string;
|
|
464
|
+
orderdire?: string;
|
|
465
|
+
pageNo?: number;
|
|
466
|
+
pageSize?: number;
|
|
448
467
|
regionId?: string;
|
|
468
|
+
remark?: string;
|
|
469
|
+
resourceGroupId?: string;
|
|
470
|
+
tag?: DescribeInstanceListRequestTag[];
|
|
449
471
|
static names(): {
|
|
450
472
|
[key: string]: string;
|
|
451
473
|
};
|
|
@@ -456,12 +478,10 @@ export declare class DescribePackIpListRequest extends $tea.Model {
|
|
|
456
478
|
[key: string]: any;
|
|
457
479
|
});
|
|
458
480
|
}
|
|
459
|
-
export declare class
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
total: number;
|
|
464
|
-
ipList: DescribePackIpListResponseIpList[];
|
|
481
|
+
export declare class DescribeInstanceListResponseBody extends $tea.Model {
|
|
482
|
+
instanceList?: DescribeInstanceListResponseBodyInstanceList[];
|
|
483
|
+
requestId?: string;
|
|
484
|
+
total?: number;
|
|
465
485
|
static names(): {
|
|
466
486
|
[key: string]: string;
|
|
467
487
|
};
|
|
@@ -472,9 +492,12 @@ export declare class DescribePackIpListResponse extends $tea.Model {
|
|
|
472
492
|
[key: string]: any;
|
|
473
493
|
});
|
|
474
494
|
}
|
|
475
|
-
export declare class
|
|
476
|
-
|
|
477
|
-
|
|
495
|
+
export declare class DescribeInstanceListResponse extends $tea.Model {
|
|
496
|
+
headers: {
|
|
497
|
+
[key: string]: string;
|
|
498
|
+
};
|
|
499
|
+
statusCode: number;
|
|
500
|
+
body: DescribeInstanceListResponseBody;
|
|
478
501
|
static names(): {
|
|
479
502
|
[key: string]: string;
|
|
480
503
|
};
|
|
@@ -485,11 +508,10 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
485
508
|
[key: string]: any;
|
|
486
509
|
});
|
|
487
510
|
}
|
|
488
|
-
export declare class
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
regions: DescribeRegionsResponseRegions[];
|
|
511
|
+
export declare class DescribeInstanceSpecsRequest extends $tea.Model {
|
|
512
|
+
instanceIdList?: string;
|
|
513
|
+
regionId?: string;
|
|
514
|
+
resourceGroupId?: string;
|
|
493
515
|
static names(): {
|
|
494
516
|
[key: string]: string;
|
|
495
517
|
};
|
|
@@ -500,11 +522,9 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
500
522
|
[key: string]: any;
|
|
501
523
|
});
|
|
502
524
|
}
|
|
503
|
-
export declare class
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
resourceGroupId?: string;
|
|
507
|
-
regionId?: string;
|
|
525
|
+
export declare class DescribeInstanceSpecsResponseBody extends $tea.Model {
|
|
526
|
+
instanceSpecs?: DescribeInstanceSpecsResponseBodyInstanceSpecs[];
|
|
527
|
+
requestId?: string;
|
|
508
528
|
static names(): {
|
|
509
529
|
[key: string]: string;
|
|
510
530
|
};
|
|
@@ -515,8 +535,12 @@ export declare class ModifyRemarkRequest extends $tea.Model {
|
|
|
515
535
|
[key: string]: any;
|
|
516
536
|
});
|
|
517
537
|
}
|
|
518
|
-
export declare class
|
|
519
|
-
|
|
538
|
+
export declare class DescribeInstanceSpecsResponse extends $tea.Model {
|
|
539
|
+
headers: {
|
|
540
|
+
[key: string]: string;
|
|
541
|
+
};
|
|
542
|
+
statusCode: number;
|
|
543
|
+
body: DescribeInstanceSpecsResponseBody;
|
|
520
544
|
static names(): {
|
|
521
545
|
[key: string]: string;
|
|
522
546
|
};
|
|
@@ -527,16 +551,15 @@ export declare class ModifyRemarkResponse extends $tea.Model {
|
|
|
527
551
|
[key: string]: any;
|
|
528
552
|
});
|
|
529
553
|
}
|
|
530
|
-
export declare class
|
|
554
|
+
export declare class DescribeOnDemandDdosEventRequest extends $tea.Model {
|
|
555
|
+
endTime?: number;
|
|
531
556
|
instanceId?: string;
|
|
532
|
-
ipnet?: string;
|
|
533
557
|
ip?: string;
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
interval?: number;
|
|
537
|
-
flowType?: string;
|
|
538
|
-
resourceGroupId?: string;
|
|
558
|
+
pageNo?: number;
|
|
559
|
+
pageSize?: number;
|
|
539
560
|
regionId?: string;
|
|
561
|
+
resourceGroupId?: string;
|
|
562
|
+
startTime?: number;
|
|
540
563
|
static names(): {
|
|
541
564
|
[key: string]: string;
|
|
542
565
|
};
|
|
@@ -547,9 +570,10 @@ export declare class DescribeTrafficRequest extends $tea.Model {
|
|
|
547
570
|
[key: string]: any;
|
|
548
571
|
});
|
|
549
572
|
}
|
|
550
|
-
export declare class
|
|
551
|
-
|
|
552
|
-
|
|
573
|
+
export declare class DescribeOnDemandDdosEventResponseBody extends $tea.Model {
|
|
574
|
+
events?: DescribeOnDemandDdosEventResponseBodyEvents[];
|
|
575
|
+
requestId?: string;
|
|
576
|
+
total?: number;
|
|
553
577
|
static names(): {
|
|
554
578
|
[key: string]: string;
|
|
555
579
|
};
|
|
@@ -560,12 +584,12 @@ export declare class DescribeTrafficResponse extends $tea.Model {
|
|
|
560
584
|
[key: string]: any;
|
|
561
585
|
});
|
|
562
586
|
}
|
|
563
|
-
export declare class
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
587
|
+
export declare class DescribeOnDemandDdosEventResponse extends $tea.Model {
|
|
588
|
+
headers: {
|
|
589
|
+
[key: string]: string;
|
|
590
|
+
};
|
|
591
|
+
statusCode: number;
|
|
592
|
+
body: DescribeOnDemandDdosEventResponseBody;
|
|
569
593
|
static names(): {
|
|
570
594
|
[key: string]: string;
|
|
571
595
|
};
|
|
@@ -576,12 +600,9 @@ export declare class DescribeResourcePackUsageRequest extends $tea.Model {
|
|
|
576
600
|
[key: string]: any;
|
|
577
601
|
});
|
|
578
602
|
}
|
|
579
|
-
export declare class
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
startTime: number;
|
|
583
|
-
endTime: number;
|
|
584
|
-
packUsages: DescribeResourcePackUsageResponsePackUsages[];
|
|
603
|
+
export declare class DescribeOnDemandInstanceStatusRequest extends $tea.Model {
|
|
604
|
+
instanceIdList?: string[];
|
|
605
|
+
regionId?: string;
|
|
585
606
|
static names(): {
|
|
586
607
|
[key: string]: string;
|
|
587
608
|
};
|
|
@@ -592,11 +613,9 @@ export declare class DescribeResourcePackUsageResponse extends $tea.Model {
|
|
|
592
613
|
[key: string]: any;
|
|
593
614
|
});
|
|
594
615
|
}
|
|
595
|
-
export declare class
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
instanceId?: string;
|
|
599
|
-
resourceGroupId?: string;
|
|
616
|
+
export declare class DescribeOnDemandInstanceStatusResponseBody extends $tea.Model {
|
|
617
|
+
instances?: DescribeOnDemandInstanceStatusResponseBodyInstances[];
|
|
618
|
+
requestId?: string;
|
|
600
619
|
static names(): {
|
|
601
620
|
[key: string]: string;
|
|
602
621
|
};
|
|
@@ -607,12 +626,12 @@ export declare class DescribeResourcePackStatisticsRequest extends $tea.Model {
|
|
|
607
626
|
[key: string]: any;
|
|
608
627
|
});
|
|
609
628
|
}
|
|
610
|
-
export declare class
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
629
|
+
export declare class DescribeOnDemandInstanceStatusResponse extends $tea.Model {
|
|
630
|
+
headers: {
|
|
631
|
+
[key: string]: string;
|
|
632
|
+
};
|
|
633
|
+
statusCode: number;
|
|
634
|
+
body: DescribeOnDemandInstanceStatusResponseBody;
|
|
616
635
|
static names(): {
|
|
617
636
|
[key: string]: string;
|
|
618
637
|
};
|
|
@@ -623,11 +642,16 @@ export declare class DescribeResourcePackStatisticsResponse extends $tea.Model {
|
|
|
623
642
|
[key: string]: any;
|
|
624
643
|
});
|
|
625
644
|
}
|
|
626
|
-
export declare class
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
645
|
+
export declare class DescribeOpEntitiesRequest extends $tea.Model {
|
|
646
|
+
currentPage?: number;
|
|
647
|
+
endTime?: number;
|
|
648
|
+
instanceId?: string;
|
|
649
|
+
orderBy?: string;
|
|
650
|
+
orderDir?: string;
|
|
651
|
+
pageSize?: number;
|
|
652
|
+
regionId?: string;
|
|
630
653
|
resourceGroupId?: string;
|
|
654
|
+
startTime?: number;
|
|
631
655
|
static names(): {
|
|
632
656
|
[key: string]: string;
|
|
633
657
|
};
|
|
@@ -638,10 +662,10 @@ export declare class DescribeResourcePackInstancesRequest extends $tea.Model {
|
|
|
638
662
|
[key: string]: any;
|
|
639
663
|
});
|
|
640
664
|
}
|
|
641
|
-
export declare class
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
665
|
+
export declare class DescribeOpEntitiesResponseBody extends $tea.Model {
|
|
666
|
+
opEntities?: DescribeOpEntitiesResponseBodyOpEntities[];
|
|
667
|
+
requestId?: string;
|
|
668
|
+
totalCount?: number;
|
|
645
669
|
static names(): {
|
|
646
670
|
[key: string]: string;
|
|
647
671
|
};
|
|
@@ -652,14 +676,12 @@ export declare class DescribeResourcePackInstancesResponse extends $tea.Model {
|
|
|
652
676
|
[key: string]: any;
|
|
653
677
|
});
|
|
654
678
|
}
|
|
655
|
-
export declare class
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
endTime: number;
|
|
662
|
-
resourceGroupId?: string;
|
|
679
|
+
export declare class DescribeOpEntitiesResponse extends $tea.Model {
|
|
680
|
+
headers: {
|
|
681
|
+
[key: string]: string;
|
|
682
|
+
};
|
|
683
|
+
statusCode: number;
|
|
684
|
+
body: DescribeOpEntitiesResponseBody;
|
|
663
685
|
static names(): {
|
|
664
686
|
[key: string]: string;
|
|
665
687
|
};
|
|
@@ -670,10 +692,15 @@ export declare class DescribePackPaidTrafficRequest extends $tea.Model {
|
|
|
670
692
|
[key: string]: any;
|
|
671
693
|
});
|
|
672
694
|
}
|
|
673
|
-
export declare class
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
695
|
+
export declare class DescribePackIpListRequest extends $tea.Model {
|
|
696
|
+
instanceId?: string;
|
|
697
|
+
ip?: string;
|
|
698
|
+
memberUid?: string;
|
|
699
|
+
pageNo?: number;
|
|
700
|
+
pageSize?: number;
|
|
701
|
+
productName?: string;
|
|
702
|
+
regionId?: string;
|
|
703
|
+
resourceGroupId?: string;
|
|
677
704
|
static names(): {
|
|
678
705
|
[key: string]: string;
|
|
679
706
|
};
|
|
@@ -684,16 +711,12 @@ export declare class DescribePackPaidTrafficResponse extends $tea.Model {
|
|
|
684
711
|
[key: string]: any;
|
|
685
712
|
});
|
|
686
713
|
}
|
|
687
|
-
export declare class
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
orderDir?: string;
|
|
694
|
-
instanceId?: string;
|
|
695
|
-
resourceGroupId?: string;
|
|
696
|
-
regionId?: string;
|
|
714
|
+
export declare class DescribePackIpListResponseBody extends $tea.Model {
|
|
715
|
+
code?: string;
|
|
716
|
+
ipList?: DescribePackIpListResponseBodyIpList[];
|
|
717
|
+
requestId?: string;
|
|
718
|
+
success?: boolean;
|
|
719
|
+
total?: number;
|
|
697
720
|
static names(): {
|
|
698
721
|
[key: string]: string;
|
|
699
722
|
};
|
|
@@ -704,10 +727,12 @@ export declare class DescribeOpEntitiesRequest extends $tea.Model {
|
|
|
704
727
|
[key: string]: any;
|
|
705
728
|
});
|
|
706
729
|
}
|
|
707
|
-
export declare class
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
730
|
+
export declare class DescribePackIpListResponse extends $tea.Model {
|
|
731
|
+
headers: {
|
|
732
|
+
[key: string]: string;
|
|
733
|
+
};
|
|
734
|
+
statusCode: number;
|
|
735
|
+
body: DescribePackIpListResponseBody;
|
|
711
736
|
static names(): {
|
|
712
737
|
[key: string]: string;
|
|
713
738
|
};
|
|
@@ -718,8 +743,7 @@ export declare class DescribeOpEntitiesResponse extends $tea.Model {
|
|
|
718
743
|
[key: string]: any;
|
|
719
744
|
});
|
|
720
745
|
}
|
|
721
|
-
export declare class
|
|
722
|
-
instanceIdList: string;
|
|
746
|
+
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
723
747
|
regionId?: string;
|
|
724
748
|
resourceGroupId?: string;
|
|
725
749
|
static names(): {
|
|
@@ -732,9 +756,11 @@ export declare class DescribeInstanceSpecsRequest extends $tea.Model {
|
|
|
732
756
|
[key: string]: any;
|
|
733
757
|
});
|
|
734
758
|
}
|
|
735
|
-
export declare class
|
|
736
|
-
|
|
737
|
-
|
|
759
|
+
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
760
|
+
code?: string;
|
|
761
|
+
regions?: DescribeRegionsResponseBodyRegions[];
|
|
762
|
+
requestId?: string;
|
|
763
|
+
success?: boolean;
|
|
738
764
|
static names(): {
|
|
739
765
|
[key: string]: string;
|
|
740
766
|
};
|
|
@@ -745,19 +771,12 @@ export declare class DescribeInstanceSpecsResponse extends $tea.Model {
|
|
|
745
771
|
[key: string]: any;
|
|
746
772
|
});
|
|
747
773
|
}
|
|
748
|
-
export declare class
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
ipVersion?: string;
|
|
755
|
-
instanceType?: string;
|
|
756
|
-
ip?: string;
|
|
757
|
-
orderby?: string;
|
|
758
|
-
orderdire?: string;
|
|
759
|
-
regionId?: string;
|
|
760
|
-
tag?: DescribeInstanceListRequestTag[];
|
|
774
|
+
export declare class DescribeRegionsResponse extends $tea.Model {
|
|
775
|
+
headers: {
|
|
776
|
+
[key: string]: string;
|
|
777
|
+
};
|
|
778
|
+
statusCode: number;
|
|
779
|
+
body: DescribeRegionsResponseBody;
|
|
761
780
|
static names(): {
|
|
762
781
|
[key: string]: string;
|
|
763
782
|
};
|
|
@@ -768,10 +787,16 @@ export declare class DescribeInstanceListRequest extends $tea.Model {
|
|
|
768
787
|
[key: string]: any;
|
|
769
788
|
});
|
|
770
789
|
}
|
|
771
|
-
export declare class
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
790
|
+
export declare class DescribeTrafficRequest extends $tea.Model {
|
|
791
|
+
endTime?: number;
|
|
792
|
+
flowType?: string;
|
|
793
|
+
instanceId?: string;
|
|
794
|
+
interval?: number;
|
|
795
|
+
ip?: string;
|
|
796
|
+
ipnet?: string;
|
|
797
|
+
regionId?: string;
|
|
798
|
+
resourceGroupId?: string;
|
|
799
|
+
startTime?: number;
|
|
775
800
|
static names(): {
|
|
776
801
|
[key: string]: string;
|
|
777
802
|
};
|
|
@@ -782,15 +807,9 @@ export declare class DescribeInstanceListResponse extends $tea.Model {
|
|
|
782
807
|
[key: string]: any;
|
|
783
808
|
});
|
|
784
809
|
}
|
|
785
|
-
export declare class
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
pageSize: number;
|
|
789
|
-
pageNo: number;
|
|
790
|
-
instanceId: string;
|
|
791
|
-
ip?: string;
|
|
792
|
-
resourceGroupId?: string;
|
|
793
|
-
regionId?: string;
|
|
810
|
+
export declare class DescribeTrafficResponseBody extends $tea.Model {
|
|
811
|
+
flowList?: DescribeTrafficResponseBodyFlowList[];
|
|
812
|
+
requestId?: string;
|
|
794
813
|
static names(): {
|
|
795
814
|
[key: string]: string;
|
|
796
815
|
};
|
|
@@ -801,10 +820,12 @@ export declare class DescribeDdosEventRequest extends $tea.Model {
|
|
|
801
820
|
[key: string]: any;
|
|
802
821
|
});
|
|
803
822
|
}
|
|
804
|
-
export declare class
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
823
|
+
export declare class DescribeTrafficResponse extends $tea.Model {
|
|
824
|
+
headers: {
|
|
825
|
+
[key: string]: string;
|
|
826
|
+
};
|
|
827
|
+
statusCode: number;
|
|
828
|
+
body: DescribeTrafficResponseBody;
|
|
808
829
|
static names(): {
|
|
809
830
|
[key: string]: string;
|
|
810
831
|
};
|
|
@@ -815,11 +836,9 @@ export declare class DescribeDdosEventResponse extends $tea.Model {
|
|
|
815
836
|
[key: string]: any;
|
|
816
837
|
});
|
|
817
838
|
}
|
|
818
|
-
export declare class
|
|
819
|
-
ipList: string;
|
|
820
|
-
instanceId: string;
|
|
821
|
-
resourceGroupId?: string;
|
|
839
|
+
export declare class GetSlsOpenStatusRequest extends $tea.Model {
|
|
822
840
|
regionId?: string;
|
|
841
|
+
resourceGroupId?: string;
|
|
823
842
|
static names(): {
|
|
824
843
|
[key: string]: string;
|
|
825
844
|
};
|
|
@@ -830,8 +849,9 @@ export declare class DeleteIpRequest extends $tea.Model {
|
|
|
830
849
|
[key: string]: any;
|
|
831
850
|
});
|
|
832
851
|
}
|
|
833
|
-
export declare class
|
|
834
|
-
requestId
|
|
852
|
+
export declare class GetSlsOpenStatusResponseBody extends $tea.Model {
|
|
853
|
+
requestId?: string;
|
|
854
|
+
slsOpenStatus?: boolean;
|
|
835
855
|
static names(): {
|
|
836
856
|
[key: string]: string;
|
|
837
857
|
};
|
|
@@ -842,11 +862,12 @@ export declare class DeleteIpResponse extends $tea.Model {
|
|
|
842
862
|
[key: string]: any;
|
|
843
863
|
});
|
|
844
864
|
}
|
|
845
|
-
export declare class
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
865
|
+
export declare class GetSlsOpenStatusResponse extends $tea.Model {
|
|
866
|
+
headers: {
|
|
867
|
+
[key: string]: string;
|
|
868
|
+
};
|
|
869
|
+
statusCode: number;
|
|
870
|
+
body: GetSlsOpenStatusResponseBody;
|
|
850
871
|
static names(): {
|
|
851
872
|
[key: string]: string;
|
|
852
873
|
};
|
|
@@ -857,8 +878,10 @@ export declare class DeleteBlackholeRequest extends $tea.Model {
|
|
|
857
878
|
[key: string]: any;
|
|
858
879
|
});
|
|
859
880
|
}
|
|
860
|
-
export declare class
|
|
861
|
-
|
|
881
|
+
export declare class ListOpenedAccessLogInstancesRequest extends $tea.Model {
|
|
882
|
+
pageNumber?: number;
|
|
883
|
+
pageSize?: number;
|
|
884
|
+
resourceGroupId?: string;
|
|
862
885
|
static names(): {
|
|
863
886
|
[key: string]: string;
|
|
864
887
|
};
|
|
@@ -869,9 +892,91 @@ export declare class DeleteBlackholeResponse extends $tea.Model {
|
|
|
869
892
|
[key: string]: any;
|
|
870
893
|
});
|
|
871
894
|
}
|
|
872
|
-
export declare class
|
|
895
|
+
export declare class ListOpenedAccessLogInstancesResponseBody extends $tea.Model {
|
|
896
|
+
requestId?: string;
|
|
897
|
+
slsConfigStatus?: ListOpenedAccessLogInstancesResponseBodySlsConfigStatus[];
|
|
898
|
+
totalCount?: number;
|
|
899
|
+
static names(): {
|
|
900
|
+
[key: string]: string;
|
|
901
|
+
};
|
|
902
|
+
static types(): {
|
|
903
|
+
[key: string]: any;
|
|
904
|
+
};
|
|
905
|
+
constructor(map?: {
|
|
906
|
+
[key: string]: any;
|
|
907
|
+
});
|
|
908
|
+
}
|
|
909
|
+
export declare class ListOpenedAccessLogInstancesResponse extends $tea.Model {
|
|
910
|
+
headers: {
|
|
911
|
+
[key: string]: string;
|
|
912
|
+
};
|
|
913
|
+
statusCode: number;
|
|
914
|
+
body: ListOpenedAccessLogInstancesResponseBody;
|
|
915
|
+
static names(): {
|
|
916
|
+
[key: string]: string;
|
|
917
|
+
};
|
|
918
|
+
static types(): {
|
|
919
|
+
[key: string]: any;
|
|
920
|
+
};
|
|
921
|
+
constructor(map?: {
|
|
922
|
+
[key: string]: any;
|
|
923
|
+
});
|
|
924
|
+
}
|
|
925
|
+
export declare class ListTagKeysRequest extends $tea.Model {
|
|
926
|
+
currentPage?: number;
|
|
927
|
+
pageSize?: number;
|
|
928
|
+
regionId?: string;
|
|
873
929
|
resourceGroupId?: string;
|
|
930
|
+
resourceType?: string;
|
|
931
|
+
static names(): {
|
|
932
|
+
[key: string]: string;
|
|
933
|
+
};
|
|
934
|
+
static types(): {
|
|
935
|
+
[key: string]: any;
|
|
936
|
+
};
|
|
937
|
+
constructor(map?: {
|
|
938
|
+
[key: string]: any;
|
|
939
|
+
});
|
|
940
|
+
}
|
|
941
|
+
export declare class ListTagKeysResponseBody extends $tea.Model {
|
|
942
|
+
currentPage?: number;
|
|
943
|
+
pageSize?: number;
|
|
944
|
+
requestId?: string;
|
|
945
|
+
tagKeys?: ListTagKeysResponseBodyTagKeys[];
|
|
946
|
+
totalCount?: number;
|
|
947
|
+
static names(): {
|
|
948
|
+
[key: string]: string;
|
|
949
|
+
};
|
|
950
|
+
static types(): {
|
|
951
|
+
[key: string]: any;
|
|
952
|
+
};
|
|
953
|
+
constructor(map?: {
|
|
954
|
+
[key: string]: any;
|
|
955
|
+
});
|
|
956
|
+
}
|
|
957
|
+
export declare class ListTagKeysResponse extends $tea.Model {
|
|
958
|
+
headers: {
|
|
959
|
+
[key: string]: string;
|
|
960
|
+
};
|
|
961
|
+
statusCode: number;
|
|
962
|
+
body: ListTagKeysResponseBody;
|
|
963
|
+
static names(): {
|
|
964
|
+
[key: string]: string;
|
|
965
|
+
};
|
|
966
|
+
static types(): {
|
|
967
|
+
[key: string]: any;
|
|
968
|
+
};
|
|
969
|
+
constructor(map?: {
|
|
970
|
+
[key: string]: any;
|
|
971
|
+
});
|
|
972
|
+
}
|
|
973
|
+
export declare class ListTagResourcesRequest extends $tea.Model {
|
|
974
|
+
nextToken?: string;
|
|
874
975
|
regionId?: string;
|
|
976
|
+
resourceGroupId?: string;
|
|
977
|
+
resourceId?: string[];
|
|
978
|
+
resourceType?: string;
|
|
979
|
+
tag?: ListTagResourcesRequestTag[];
|
|
875
980
|
static names(): {
|
|
876
981
|
[key: string]: string;
|
|
877
982
|
};
|
|
@@ -882,9 +987,10 @@ export declare class CheckGrantRequest extends $tea.Model {
|
|
|
882
987
|
[key: string]: any;
|
|
883
988
|
});
|
|
884
989
|
}
|
|
885
|
-
export declare class
|
|
886
|
-
|
|
887
|
-
|
|
990
|
+
export declare class ListTagResourcesResponseBody extends $tea.Model {
|
|
991
|
+
nextToken?: string;
|
|
992
|
+
requestId?: string;
|
|
993
|
+
tagResources?: ListTagResourcesResponseBodyTagResources;
|
|
888
994
|
static names(): {
|
|
889
995
|
[key: string]: string;
|
|
890
996
|
};
|
|
@@ -895,10 +1001,26 @@ export declare class CheckGrantResponse extends $tea.Model {
|
|
|
895
1001
|
[key: string]: any;
|
|
896
1002
|
});
|
|
897
1003
|
}
|
|
898
|
-
export declare class
|
|
899
|
-
|
|
900
|
-
|
|
1004
|
+
export declare class ListTagResourcesResponse extends $tea.Model {
|
|
1005
|
+
headers: {
|
|
1006
|
+
[key: string]: string;
|
|
1007
|
+
};
|
|
1008
|
+
statusCode: number;
|
|
1009
|
+
body: ListTagResourcesResponseBody;
|
|
1010
|
+
static names(): {
|
|
1011
|
+
[key: string]: string;
|
|
1012
|
+
};
|
|
1013
|
+
static types(): {
|
|
1014
|
+
[key: string]: any;
|
|
1015
|
+
};
|
|
1016
|
+
constructor(map?: {
|
|
1017
|
+
[key: string]: any;
|
|
1018
|
+
});
|
|
1019
|
+
}
|
|
1020
|
+
export declare class ModifyRemarkRequest extends $tea.Model {
|
|
1021
|
+
instanceId?: string;
|
|
901
1022
|
regionId?: string;
|
|
1023
|
+
remark?: string;
|
|
902
1024
|
resourceGroupId?: string;
|
|
903
1025
|
static names(): {
|
|
904
1026
|
[key: string]: string;
|
|
@@ -910,8 +1032,8 @@ export declare class AddIpRequest extends $tea.Model {
|
|
|
910
1032
|
[key: string]: any;
|
|
911
1033
|
});
|
|
912
1034
|
}
|
|
913
|
-
export declare class
|
|
914
|
-
requestId
|
|
1035
|
+
export declare class ModifyRemarkResponseBody extends $tea.Model {
|
|
1036
|
+
requestId?: string;
|
|
915
1037
|
static names(): {
|
|
916
1038
|
[key: string]: string;
|
|
917
1039
|
};
|
|
@@ -922,14 +1044,12 @@ export declare class AddIpResponse extends $tea.Model {
|
|
|
922
1044
|
[key: string]: any;
|
|
923
1045
|
});
|
|
924
1046
|
}
|
|
925
|
-
export declare class
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
declared: string;
|
|
932
|
-
mode: string;
|
|
1047
|
+
export declare class ModifyRemarkResponse extends $tea.Model {
|
|
1048
|
+
headers: {
|
|
1049
|
+
[key: string]: string;
|
|
1050
|
+
};
|
|
1051
|
+
statusCode: number;
|
|
1052
|
+
body: ModifyRemarkResponseBody;
|
|
933
1053
|
static names(): {
|
|
934
1054
|
[key: string]: string;
|
|
935
1055
|
};
|
|
@@ -940,17 +1060,9 @@ export declare class DescribeOnDemandInstanceStatusResponseInstances extends $te
|
|
|
940
1060
|
[key: string]: any;
|
|
941
1061
|
});
|
|
942
1062
|
}
|
|
943
|
-
export declare class
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
ruleUndoBeginTime: string;
|
|
947
|
-
ruleUndoMode: string;
|
|
948
|
-
ruleUndoEndTime: string;
|
|
949
|
-
ruleConditionMbps: string;
|
|
950
|
-
ruleConditionKpps: string;
|
|
951
|
-
ruleSwitch: string;
|
|
952
|
-
ruleAction: string;
|
|
953
|
-
timeZone: string;
|
|
1063
|
+
export declare class QuerySchedruleOnDemandRequest extends $tea.Model {
|
|
1064
|
+
instanceId?: string;
|
|
1065
|
+
regionId?: string;
|
|
954
1066
|
static names(): {
|
|
955
1067
|
[key: string]: string;
|
|
956
1068
|
};
|
|
@@ -961,9 +1073,12 @@ export declare class QuerySchedruleOnDemandResponseRuleConfig extends $tea.Model
|
|
|
961
1073
|
[key: string]: any;
|
|
962
1074
|
});
|
|
963
1075
|
}
|
|
964
|
-
export declare class
|
|
965
|
-
|
|
966
|
-
|
|
1076
|
+
export declare class QuerySchedruleOnDemandResponseBody extends $tea.Model {
|
|
1077
|
+
instanceId?: string;
|
|
1078
|
+
requestId?: string;
|
|
1079
|
+
ruleConfig?: QuerySchedruleOnDemandResponseBodyRuleConfig[];
|
|
1080
|
+
ruleStatus?: QuerySchedruleOnDemandResponseBodyRuleStatus[];
|
|
1081
|
+
userId?: string;
|
|
967
1082
|
static names(): {
|
|
968
1083
|
[key: string]: string;
|
|
969
1084
|
};
|
|
@@ -974,9 +1089,12 @@ export declare class QuerySchedruleOnDemandResponseRuleStatus extends $tea.Model
|
|
|
974
1089
|
[key: string]: any;
|
|
975
1090
|
});
|
|
976
1091
|
}
|
|
977
|
-
export declare class
|
|
978
|
-
|
|
979
|
-
|
|
1092
|
+
export declare class QuerySchedruleOnDemandResponse extends $tea.Model {
|
|
1093
|
+
headers: {
|
|
1094
|
+
[key: string]: string;
|
|
1095
|
+
};
|
|
1096
|
+
statusCode: number;
|
|
1097
|
+
body: QuerySchedruleOnDemandResponseBody;
|
|
980
1098
|
static names(): {
|
|
981
1099
|
[key: string]: string;
|
|
982
1100
|
};
|
|
@@ -987,13 +1105,10 @@ export declare class ListOpenedAccessLogInstancesResponseSlsConfigStatus extends
|
|
|
987
1105
|
[key: string]: any;
|
|
988
1106
|
});
|
|
989
1107
|
}
|
|
990
|
-
export declare class
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
ip: string;
|
|
995
|
-
mbps: number;
|
|
996
|
-
status: string;
|
|
1108
|
+
export declare class SetInstanceModeOnDemandRequest extends $tea.Model {
|
|
1109
|
+
instanceIdList?: string[];
|
|
1110
|
+
mode?: string;
|
|
1111
|
+
regionId?: string;
|
|
997
1112
|
static names(): {
|
|
998
1113
|
[key: string]: string;
|
|
999
1114
|
};
|
|
@@ -1004,9 +1119,8 @@ export declare class DescribeOnDemandDdosEventResponseEvents extends $tea.Model
|
|
|
1004
1119
|
[key: string]: any;
|
|
1005
1120
|
});
|
|
1006
1121
|
}
|
|
1007
|
-
export declare class
|
|
1008
|
-
|
|
1009
|
-
tagCount: number;
|
|
1122
|
+
export declare class SetInstanceModeOnDemandResponseBody extends $tea.Model {
|
|
1123
|
+
requestId?: string;
|
|
1010
1124
|
static names(): {
|
|
1011
1125
|
[key: string]: string;
|
|
1012
1126
|
};
|
|
@@ -1017,9 +1131,12 @@ export declare class ListTagKeysResponseTagKeys extends $tea.Model {
|
|
|
1017
1131
|
[key: string]: any;
|
|
1018
1132
|
});
|
|
1019
1133
|
}
|
|
1020
|
-
export declare class
|
|
1021
|
-
|
|
1022
|
-
|
|
1134
|
+
export declare class SetInstanceModeOnDemandResponse extends $tea.Model {
|
|
1135
|
+
headers: {
|
|
1136
|
+
[key: string]: string;
|
|
1137
|
+
};
|
|
1138
|
+
statusCode: number;
|
|
1139
|
+
body: SetInstanceModeOnDemandResponseBody;
|
|
1023
1140
|
static names(): {
|
|
1024
1141
|
[key: string]: string;
|
|
1025
1142
|
};
|
|
@@ -1030,11 +1147,12 @@ export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
|
1030
1147
|
[key: string]: any;
|
|
1031
1148
|
});
|
|
1032
1149
|
}
|
|
1033
|
-
export declare class
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1150
|
+
export declare class TagResourcesRequest extends $tea.Model {
|
|
1151
|
+
regionId?: string;
|
|
1152
|
+
resourceGroupId?: string;
|
|
1153
|
+
resourceId?: string[];
|
|
1154
|
+
resourceType?: string;
|
|
1155
|
+
tag?: TagResourcesRequestTag[];
|
|
1038
1156
|
static names(): {
|
|
1039
1157
|
[key: string]: string;
|
|
1040
1158
|
};
|
|
@@ -1045,8 +1163,8 @@ export declare class ListTagResourcesResponseTagResourcesTagResource extends $te
|
|
|
1045
1163
|
[key: string]: any;
|
|
1046
1164
|
});
|
|
1047
1165
|
}
|
|
1048
|
-
export declare class
|
|
1049
|
-
|
|
1166
|
+
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
1167
|
+
requestId?: string;
|
|
1050
1168
|
static names(): {
|
|
1051
1169
|
[key: string]: string;
|
|
1052
1170
|
};
|
|
@@ -1057,7 +1175,85 @@ export declare class ListTagResourcesResponseTagResources extends $tea.Model {
|
|
|
1057
1175
|
[key: string]: any;
|
|
1058
1176
|
});
|
|
1059
1177
|
}
|
|
1060
|
-
export declare class
|
|
1178
|
+
export declare class TagResourcesResponse extends $tea.Model {
|
|
1179
|
+
headers: {
|
|
1180
|
+
[key: string]: string;
|
|
1181
|
+
};
|
|
1182
|
+
statusCode: number;
|
|
1183
|
+
body: TagResourcesResponseBody;
|
|
1184
|
+
static names(): {
|
|
1185
|
+
[key: string]: string;
|
|
1186
|
+
};
|
|
1187
|
+
static types(): {
|
|
1188
|
+
[key: string]: any;
|
|
1189
|
+
};
|
|
1190
|
+
constructor(map?: {
|
|
1191
|
+
[key: string]: any;
|
|
1192
|
+
});
|
|
1193
|
+
}
|
|
1194
|
+
export declare class UntagResourcesRequest extends $tea.Model {
|
|
1195
|
+
all?: boolean;
|
|
1196
|
+
regionId?: string;
|
|
1197
|
+
resourceGroupId?: string;
|
|
1198
|
+
resourceId?: string[];
|
|
1199
|
+
resourceType?: string;
|
|
1200
|
+
tagKey?: string[];
|
|
1201
|
+
static names(): {
|
|
1202
|
+
[key: string]: string;
|
|
1203
|
+
};
|
|
1204
|
+
static types(): {
|
|
1205
|
+
[key: string]: any;
|
|
1206
|
+
};
|
|
1207
|
+
constructor(map?: {
|
|
1208
|
+
[key: string]: any;
|
|
1209
|
+
});
|
|
1210
|
+
}
|
|
1211
|
+
export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
1212
|
+
requestId?: string;
|
|
1213
|
+
static names(): {
|
|
1214
|
+
[key: string]: string;
|
|
1215
|
+
};
|
|
1216
|
+
static types(): {
|
|
1217
|
+
[key: string]: any;
|
|
1218
|
+
};
|
|
1219
|
+
constructor(map?: {
|
|
1220
|
+
[key: string]: any;
|
|
1221
|
+
});
|
|
1222
|
+
}
|
|
1223
|
+
export declare class UntagResourcesResponse extends $tea.Model {
|
|
1224
|
+
headers: {
|
|
1225
|
+
[key: string]: string;
|
|
1226
|
+
};
|
|
1227
|
+
statusCode: number;
|
|
1228
|
+
body: UntagResourcesResponseBody;
|
|
1229
|
+
static names(): {
|
|
1230
|
+
[key: string]: string;
|
|
1231
|
+
};
|
|
1232
|
+
static types(): {
|
|
1233
|
+
[key: string]: any;
|
|
1234
|
+
};
|
|
1235
|
+
constructor(map?: {
|
|
1236
|
+
[key: string]: any;
|
|
1237
|
+
});
|
|
1238
|
+
}
|
|
1239
|
+
export declare class DescribeDdosEventResponseBodyEvents extends $tea.Model {
|
|
1240
|
+
endTime?: number;
|
|
1241
|
+
ip?: string;
|
|
1242
|
+
mbps?: number;
|
|
1243
|
+
pps?: number;
|
|
1244
|
+
startTime?: number;
|
|
1245
|
+
status?: string;
|
|
1246
|
+
static names(): {
|
|
1247
|
+
[key: string]: string;
|
|
1248
|
+
};
|
|
1249
|
+
static types(): {
|
|
1250
|
+
[key: string]: any;
|
|
1251
|
+
};
|
|
1252
|
+
constructor(map?: {
|
|
1253
|
+
[key: string]: any;
|
|
1254
|
+
});
|
|
1255
|
+
}
|
|
1256
|
+
export declare class DescribeInstanceListRequestTag extends $tea.Model {
|
|
1061
1257
|
key?: string;
|
|
1062
1258
|
value?: string;
|
|
1063
1259
|
static names(): {
|
|
@@ -1070,11 +1266,37 @@ export declare class TagResourcesRequestTag extends $tea.Model {
|
|
|
1070
1266
|
[key: string]: any;
|
|
1071
1267
|
});
|
|
1072
1268
|
}
|
|
1073
|
-
export declare class
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1269
|
+
export declare class DescribeInstanceListResponseBodyInstanceList extends $tea.Model {
|
|
1270
|
+
autoRenewal?: boolean;
|
|
1271
|
+
blackholdingCount?: string;
|
|
1272
|
+
coverageType?: number;
|
|
1273
|
+
expireTime?: number;
|
|
1274
|
+
gmtCreate?: number;
|
|
1275
|
+
instanceId?: string;
|
|
1276
|
+
instanceType?: string;
|
|
1277
|
+
ipType?: string;
|
|
1278
|
+
product?: string;
|
|
1279
|
+
remark?: string;
|
|
1280
|
+
status?: string;
|
|
1281
|
+
static names(): {
|
|
1282
|
+
[key: string]: string;
|
|
1283
|
+
};
|
|
1284
|
+
static types(): {
|
|
1285
|
+
[key: string]: any;
|
|
1286
|
+
};
|
|
1287
|
+
constructor(map?: {
|
|
1288
|
+
[key: string]: any;
|
|
1289
|
+
});
|
|
1290
|
+
}
|
|
1291
|
+
export declare class DescribeInstanceSpecsResponseBodyInstanceSpecsPackConfig extends $tea.Model {
|
|
1292
|
+
bandwidth?: number;
|
|
1293
|
+
bindIpCount?: number;
|
|
1294
|
+
ipAdvanceThre?: number;
|
|
1295
|
+
ipBasicThre?: number;
|
|
1296
|
+
ipSpec?: number;
|
|
1297
|
+
normalBandwidth?: number;
|
|
1298
|
+
packAdvThre?: number;
|
|
1299
|
+
packBasicThre?: number;
|
|
1078
1300
|
static names(): {
|
|
1079
1301
|
[key: string]: string;
|
|
1080
1302
|
};
|
|
@@ -1085,10 +1307,14 @@ export declare class DescribePackIpListResponseIpList extends $tea.Model {
|
|
|
1085
1307
|
[key: string]: any;
|
|
1086
1308
|
});
|
|
1087
1309
|
}
|
|
1088
|
-
export declare class
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1310
|
+
export declare class DescribeInstanceSpecsResponseBodyInstanceSpecs extends $tea.Model {
|
|
1311
|
+
availableDefenseTimes?: number;
|
|
1312
|
+
availableDeleteBlackholeCount?: string;
|
|
1313
|
+
instanceId?: string;
|
|
1314
|
+
isFullDefenseMode?: number;
|
|
1315
|
+
packConfig?: DescribeInstanceSpecsResponseBodyInstanceSpecsPackConfig;
|
|
1316
|
+
region?: string;
|
|
1317
|
+
totalDefenseTimes?: number;
|
|
1092
1318
|
static names(): {
|
|
1093
1319
|
[key: string]: string;
|
|
1094
1320
|
};
|
|
@@ -1099,14 +1325,13 @@ export declare class DescribeRegionsResponseRegions extends $tea.Model {
|
|
|
1099
1325
|
[key: string]: any;
|
|
1100
1326
|
});
|
|
1101
1327
|
}
|
|
1102
|
-
export declare class
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
time: number;
|
|
1328
|
+
export declare class DescribeOnDemandDdosEventResponseBodyEvents extends $tea.Model {
|
|
1329
|
+
endTime?: number;
|
|
1330
|
+
ip?: string;
|
|
1331
|
+
mbps?: number;
|
|
1332
|
+
pps?: number;
|
|
1333
|
+
startTime?: number;
|
|
1334
|
+
status?: string;
|
|
1110
1335
|
static names(): {
|
|
1111
1336
|
[key: string]: string;
|
|
1112
1337
|
};
|
|
@@ -1117,9 +1342,14 @@ export declare class DescribeTrafficResponseFlowList extends $tea.Model {
|
|
|
1117
1342
|
[key: string]: any;
|
|
1118
1343
|
});
|
|
1119
1344
|
}
|
|
1120
|
-
export declare class
|
|
1121
|
-
|
|
1122
|
-
|
|
1345
|
+
export declare class DescribeOnDemandInstanceStatusResponseBodyInstances extends $tea.Model {
|
|
1346
|
+
declared?: string;
|
|
1347
|
+
desc?: string;
|
|
1348
|
+
instanceId?: string;
|
|
1349
|
+
mode?: string;
|
|
1350
|
+
net?: string;
|
|
1351
|
+
registedAs?: string;
|
|
1352
|
+
userId?: string;
|
|
1123
1353
|
static names(): {
|
|
1124
1354
|
[key: string]: string;
|
|
1125
1355
|
};
|
|
@@ -1130,13 +1360,13 @@ export declare class DescribeResourcePackUsageResponsePackUsages extends $tea.Mo
|
|
|
1130
1360
|
[key: string]: any;
|
|
1131
1361
|
});
|
|
1132
1362
|
}
|
|
1133
|
-
export declare class
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1363
|
+
export declare class DescribeOpEntitiesResponseBodyOpEntities extends $tea.Model {
|
|
1364
|
+
entityObject?: string;
|
|
1365
|
+
entityType?: number;
|
|
1366
|
+
gmtCreate?: number;
|
|
1367
|
+
opAccount?: string;
|
|
1368
|
+
opAction?: number;
|
|
1369
|
+
opDesc?: string;
|
|
1140
1370
|
static names(): {
|
|
1141
1371
|
[key: string]: string;
|
|
1142
1372
|
};
|
|
@@ -1147,14 +1377,13 @@ export declare class DescribeResourcePackInstancesResponseResourcePacks extends
|
|
|
1147
1377
|
[key: string]: any;
|
|
1148
1378
|
});
|
|
1149
1379
|
}
|
|
1150
|
-
export declare class
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
maxAttack: number;
|
|
1380
|
+
export declare class DescribePackIpListResponseBodyIpList extends $tea.Model {
|
|
1381
|
+
ip?: string;
|
|
1382
|
+
memberUid?: string;
|
|
1383
|
+
product?: string;
|
|
1384
|
+
region?: string;
|
|
1385
|
+
remark?: string;
|
|
1386
|
+
status?: string;
|
|
1158
1387
|
static names(): {
|
|
1159
1388
|
[key: string]: string;
|
|
1160
1389
|
};
|
|
@@ -1165,13 +1394,10 @@ export declare class DescribePackPaidTrafficResponsePackPaidTraffics extends $te
|
|
|
1165
1394
|
[key: string]: any;
|
|
1166
1395
|
});
|
|
1167
1396
|
}
|
|
1168
|
-
export declare class
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
opAccount: string;
|
|
1173
|
-
opAction: number;
|
|
1174
|
-
gmtCreate: number;
|
|
1397
|
+
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
1398
|
+
regionEnName?: string;
|
|
1399
|
+
regionId?: string;
|
|
1400
|
+
regionName?: string;
|
|
1175
1401
|
static names(): {
|
|
1176
1402
|
[key: string]: string;
|
|
1177
1403
|
};
|
|
@@ -1182,14 +1408,14 @@ export declare class DescribeOpEntitiesResponseOpEntities extends $tea.Model {
|
|
|
1182
1408
|
[key: string]: any;
|
|
1183
1409
|
});
|
|
1184
1410
|
}
|
|
1185
|
-
export declare class
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1411
|
+
export declare class DescribeTrafficResponseBodyFlowList extends $tea.Model {
|
|
1412
|
+
attackBps?: number;
|
|
1413
|
+
attackPps?: number;
|
|
1414
|
+
flowType?: string;
|
|
1415
|
+
kbps?: number;
|
|
1416
|
+
name?: string;
|
|
1417
|
+
pps?: number;
|
|
1418
|
+
time?: number;
|
|
1193
1419
|
static names(): {
|
|
1194
1420
|
[key: string]: string;
|
|
1195
1421
|
};
|
|
@@ -1200,14 +1426,9 @@ export declare class DescribeInstanceSpecsResponseInstanceSpecsPackConfig extend
|
|
|
1200
1426
|
[key: string]: any;
|
|
1201
1427
|
});
|
|
1202
1428
|
}
|
|
1203
|
-
export declare class
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
instanceId: string;
|
|
1207
|
-
availableDefenseTimes: number;
|
|
1208
|
-
totalDefenseTimes: number;
|
|
1209
|
-
isFullDefenseMode: number;
|
|
1210
|
-
packConfig: DescribeInstanceSpecsResponseInstanceSpecsPackConfig;
|
|
1429
|
+
export declare class ListOpenedAccessLogInstancesResponseBodySlsConfigStatus extends $tea.Model {
|
|
1430
|
+
enable?: boolean;
|
|
1431
|
+
instanceId?: string;
|
|
1211
1432
|
static names(): {
|
|
1212
1433
|
[key: string]: string;
|
|
1213
1434
|
};
|
|
@@ -1218,7 +1439,20 @@ export declare class DescribeInstanceSpecsResponseInstanceSpecs extends $tea.Mod
|
|
|
1218
1439
|
[key: string]: any;
|
|
1219
1440
|
});
|
|
1220
1441
|
}
|
|
1221
|
-
export declare class
|
|
1442
|
+
export declare class ListTagKeysResponseBodyTagKeys extends $tea.Model {
|
|
1443
|
+
tagCount?: number;
|
|
1444
|
+
tagKey?: string;
|
|
1445
|
+
static names(): {
|
|
1446
|
+
[key: string]: string;
|
|
1447
|
+
};
|
|
1448
|
+
static types(): {
|
|
1449
|
+
[key: string]: any;
|
|
1450
|
+
};
|
|
1451
|
+
constructor(map?: {
|
|
1452
|
+
[key: string]: any;
|
|
1453
|
+
});
|
|
1454
|
+
}
|
|
1455
|
+
export declare class ListTagResourcesRequestTag extends $tea.Model {
|
|
1222
1456
|
key?: string;
|
|
1223
1457
|
value?: string;
|
|
1224
1458
|
static names(): {
|
|
@@ -1231,17 +1465,11 @@ export declare class DescribeInstanceListRequestTag extends $tea.Model {
|
|
|
1231
1465
|
[key: string]: any;
|
|
1232
1466
|
});
|
|
1233
1467
|
}
|
|
1234
|
-
export declare class
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
status: string;
|
|
1240
|
-
ipType: string;
|
|
1241
|
-
autoRenewal: boolean;
|
|
1242
|
-
blackholdingCount: string;
|
|
1243
|
-
gmtCreate: number;
|
|
1244
|
-
instanceType: string;
|
|
1468
|
+
export declare class ListTagResourcesResponseBodyTagResourcesTagResource extends $tea.Model {
|
|
1469
|
+
resourceId?: string;
|
|
1470
|
+
resourceType?: string;
|
|
1471
|
+
tagKey?: string;
|
|
1472
|
+
tagValue?: string;
|
|
1245
1473
|
static names(): {
|
|
1246
1474
|
[key: string]: string;
|
|
1247
1475
|
};
|
|
@@ -1252,13 +1480,8 @@ export declare class DescribeInstanceListResponseInstanceList extends $tea.Model
|
|
|
1252
1480
|
[key: string]: any;
|
|
1253
1481
|
});
|
|
1254
1482
|
}
|
|
1255
|
-
export declare class
|
|
1256
|
-
|
|
1257
|
-
endTime: number;
|
|
1258
|
-
pps: number;
|
|
1259
|
-
ip: string;
|
|
1260
|
-
mbps: number;
|
|
1261
|
-
status: string;
|
|
1483
|
+
export declare class ListTagResourcesResponseBodyTagResources extends $tea.Model {
|
|
1484
|
+
tagResource?: ListTagResourcesResponseBodyTagResourcesTagResource[];
|
|
1262
1485
|
static names(): {
|
|
1263
1486
|
[key: string]: string;
|
|
1264
1487
|
};
|
|
@@ -1269,71 +1492,303 @@ export declare class DescribeDdosEventResponseEvents extends $tea.Model {
|
|
|
1269
1492
|
[key: string]: any;
|
|
1270
1493
|
});
|
|
1271
1494
|
}
|
|
1272
|
-
export
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1495
|
+
export declare class QuerySchedruleOnDemandResponseBodyRuleConfig extends $tea.Model {
|
|
1496
|
+
ruleAction?: string;
|
|
1497
|
+
ruleConditionCnt?: string;
|
|
1498
|
+
ruleConditionKpps?: string;
|
|
1499
|
+
ruleConditionMbps?: string;
|
|
1500
|
+
ruleName?: string;
|
|
1501
|
+
ruleSwitch?: string;
|
|
1502
|
+
ruleUndoBeginTime?: string;
|
|
1503
|
+
ruleUndoEndTime?: string;
|
|
1504
|
+
ruleUndoMode?: string;
|
|
1505
|
+
timeZone?: string;
|
|
1506
|
+
static names(): {
|
|
1507
|
+
[key: string]: string;
|
|
1508
|
+
};
|
|
1509
|
+
static types(): {
|
|
1510
|
+
[key: string]: any;
|
|
1511
|
+
};
|
|
1512
|
+
constructor(map?: {
|
|
1513
|
+
[key: string]: any;
|
|
1514
|
+
});
|
|
1515
|
+
}
|
|
1516
|
+
export declare class QuerySchedruleOnDemandResponseBodyRuleStatus extends $tea.Model {
|
|
1517
|
+
net?: string;
|
|
1518
|
+
ruleSchedStatus?: string;
|
|
1519
|
+
static names(): {
|
|
1520
|
+
[key: string]: string;
|
|
1521
|
+
};
|
|
1522
|
+
static types(): {
|
|
1523
|
+
[key: string]: any;
|
|
1524
|
+
};
|
|
1525
|
+
constructor(map?: {
|
|
1526
|
+
[key: string]: any;
|
|
1527
|
+
});
|
|
1528
|
+
}
|
|
1529
|
+
export declare class TagResourcesRequestTag extends $tea.Model {
|
|
1530
|
+
key?: string;
|
|
1531
|
+
value?: string;
|
|
1532
|
+
static names(): {
|
|
1533
|
+
[key: string]: string;
|
|
1534
|
+
};
|
|
1535
|
+
static types(): {
|
|
1536
|
+
[key: string]: any;
|
|
1537
|
+
};
|
|
1538
|
+
constructor(map?: {
|
|
1539
|
+
[key: string]: any;
|
|
1540
|
+
});
|
|
1541
|
+
}
|
|
1542
|
+
export default class Client extends OpenApi {
|
|
1543
|
+
constructor(config: $OpenApi.Config);
|
|
1544
|
+
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1545
|
+
[key: string]: string;
|
|
1546
|
+
}, endpoint: string): string;
|
|
1547
|
+
addIpWithOptions(request: AddIpRequest, runtime: $Util.RuntimeOptions): Promise<AddIpResponse>;
|
|
1548
|
+
addIp(request: AddIpRequest): Promise<AddIpResponse>;
|
|
1549
|
+
checkAccessLogAuthWithOptions(request: CheckAccessLogAuthRequest, runtime: $Util.RuntimeOptions): Promise<CheckAccessLogAuthResponse>;
|
|
1550
|
+
checkAccessLogAuth(request: CheckAccessLogAuthRequest): Promise<CheckAccessLogAuthResponse>;
|
|
1551
|
+
/**
|
|
1552
|
+
* Indicates whether Anti-DDoS Origin is authorized to obtain information about the assets within the current Alibaba Cloud account. Valid values:
|
|
1553
|
+
* * **1**: Anti-DDoS Origin is authorized to obtain information about the assets within the current Alibaba Cloud account.
|
|
1554
|
+
* * **0**: Anti-DDoS Origin is not authorized to obtain information about the assets within the current Alibaba Cloud account.
|
|
1555
|
+
*
|
|
1556
|
+
* @param request CheckGrantRequest
|
|
1557
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1558
|
+
* @return CheckGrantResponse
|
|
1559
|
+
*/
|
|
1560
|
+
checkGrantWithOptions(request: CheckGrantRequest, runtime: $Util.RuntimeOptions): Promise<CheckGrantResponse>;
|
|
1561
|
+
/**
|
|
1562
|
+
* Indicates whether Anti-DDoS Origin is authorized to obtain information about the assets within the current Alibaba Cloud account. Valid values:
|
|
1563
|
+
* * **1**: Anti-DDoS Origin is authorized to obtain information about the assets within the current Alibaba Cloud account.
|
|
1564
|
+
* * **0**: Anti-DDoS Origin is not authorized to obtain information about the assets within the current Alibaba Cloud account.
|
|
1565
|
+
*
|
|
1566
|
+
* @param request CheckGrantRequest
|
|
1567
|
+
* @return CheckGrantResponse
|
|
1568
|
+
*/
|
|
1569
|
+
checkGrant(request: CheckGrantRequest): Promise<CheckGrantResponse>;
|
|
1282
1570
|
configSchedruleOnDemandWithOptions(request: ConfigSchedruleOnDemandRequest, runtime: $Util.RuntimeOptions): Promise<ConfigSchedruleOnDemandResponse>;
|
|
1283
1571
|
configSchedruleOnDemand(request: ConfigSchedruleOnDemandRequest): Promise<ConfigSchedruleOnDemandResponse>;
|
|
1284
1572
|
createSchedruleOnDemandWithOptions(request: CreateSchedruleOnDemandRequest, runtime: $Util.RuntimeOptions): Promise<CreateSchedruleOnDemandResponse>;
|
|
1285
1573
|
createSchedruleOnDemand(request: CreateSchedruleOnDemandRequest): Promise<CreateSchedruleOnDemandResponse>;
|
|
1574
|
+
/**
|
|
1575
|
+
* You can call the DeleteBlackhole operation to deactivate blackhole filtering for a protected IP address.
|
|
1576
|
+
* Before you call this operation, you can call the [DescribePackIpList](~~118701~~) operation to query the protection status of the IP addresses that are protected by your Anti-DDoS Origin instance. For example, you can query whether blackhole filtering is triggered for an IP address.
|
|
1577
|
+
* ### Limits
|
|
1578
|
+
* You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
1579
|
+
*
|
|
1580
|
+
* @param request DeleteBlackholeRequest
|
|
1581
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1582
|
+
* @return DeleteBlackholeResponse
|
|
1583
|
+
*/
|
|
1584
|
+
deleteBlackholeWithOptions(request: DeleteBlackholeRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBlackholeResponse>;
|
|
1585
|
+
/**
|
|
1586
|
+
* You can call the DeleteBlackhole operation to deactivate blackhole filtering for a protected IP address.
|
|
1587
|
+
* Before you call this operation, you can call the [DescribePackIpList](~~118701~~) operation to query the protection status of the IP addresses that are protected by your Anti-DDoS Origin instance. For example, you can query whether blackhole filtering is triggered for an IP address.
|
|
1588
|
+
* ### Limits
|
|
1589
|
+
* You can call this operation up to 10 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
1590
|
+
*
|
|
1591
|
+
* @param request DeleteBlackholeRequest
|
|
1592
|
+
* @return DeleteBlackholeResponse
|
|
1593
|
+
*/
|
|
1594
|
+
deleteBlackhole(request: DeleteBlackholeRequest): Promise<DeleteBlackholeResponse>;
|
|
1595
|
+
/**
|
|
1596
|
+
* The ID of the Anti-DDoS Origin Enterprise instance.
|
|
1597
|
+
* > You can call the [DescribeInstanceList](~~118698~~) operation to query the IDs of all Anti-DDoS Origin Enterprise instances.
|
|
1598
|
+
*
|
|
1599
|
+
* @param request DeleteIpRequest
|
|
1600
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1601
|
+
* @return DeleteIpResponse
|
|
1602
|
+
*/
|
|
1603
|
+
deleteIpWithOptions(request: DeleteIpRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpResponse>;
|
|
1604
|
+
/**
|
|
1605
|
+
* The ID of the Anti-DDoS Origin Enterprise instance.
|
|
1606
|
+
* > You can call the [DescribeInstanceList](~~118698~~) operation to query the IDs of all Anti-DDoS Origin Enterprise instances.
|
|
1607
|
+
*
|
|
1608
|
+
* @param request DeleteIpRequest
|
|
1609
|
+
* @return DeleteIpResponse
|
|
1610
|
+
*/
|
|
1611
|
+
deleteIp(request: DeleteIpRequest): Promise<DeleteIpResponse>;
|
|
1612
|
+
deleteSchedruleOnDemandWithOptions(request: DeleteSchedruleOnDemandRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSchedruleOnDemandResponse>;
|
|
1613
|
+
deleteSchedruleOnDemand(request: DeleteSchedruleOnDemandRequest): Promise<DeleteSchedruleOnDemandResponse>;
|
|
1614
|
+
/**
|
|
1615
|
+
* The number of entries to return on each page.
|
|
1616
|
+
*
|
|
1617
|
+
* @param request DescribeDdosEventRequest
|
|
1618
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1619
|
+
* @return DescribeDdosEventResponse
|
|
1620
|
+
*/
|
|
1621
|
+
describeDdosEventWithOptions(request: DescribeDdosEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDdosEventResponse>;
|
|
1622
|
+
/**
|
|
1623
|
+
* The number of entries to return on each page.
|
|
1624
|
+
*
|
|
1625
|
+
* @param request DescribeDdosEventRequest
|
|
1626
|
+
* @return DescribeDdosEventResponse
|
|
1627
|
+
*/
|
|
1628
|
+
describeDdosEvent(request: DescribeDdosEventRequest): Promise<DescribeDdosEventResponse>;
|
|
1629
|
+
/**
|
|
1630
|
+
* The operation that you want to perform. Set the value to **DescribeExcpetionCount**.
|
|
1631
|
+
*
|
|
1632
|
+
* @param request DescribeExcpetionCountRequest
|
|
1633
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1634
|
+
* @return DescribeExcpetionCountResponse
|
|
1635
|
+
*/
|
|
1636
|
+
describeExcpetionCountWithOptions(request: DescribeExcpetionCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeExcpetionCountResponse>;
|
|
1637
|
+
/**
|
|
1638
|
+
* The operation that you want to perform. Set the value to **DescribeExcpetionCount**.
|
|
1639
|
+
*
|
|
1640
|
+
* @param request DescribeExcpetionCountRequest
|
|
1641
|
+
* @return DescribeExcpetionCountResponse
|
|
1642
|
+
*/
|
|
1643
|
+
describeExcpetionCount(request: DescribeExcpetionCountRequest): Promise<DescribeExcpetionCountResponse>;
|
|
1644
|
+
/**
|
|
1645
|
+
* The status of the instance. Valid values:
|
|
1646
|
+
* * **1**: normal
|
|
1647
|
+
* * **2**: expired
|
|
1648
|
+
* * **3**: released
|
|
1649
|
+
*
|
|
1650
|
+
* @param request DescribeInstanceListRequest
|
|
1651
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1652
|
+
* @return DescribeInstanceListResponse
|
|
1653
|
+
*/
|
|
1654
|
+
describeInstanceListWithOptions(request: DescribeInstanceListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceListResponse>;
|
|
1655
|
+
/**
|
|
1656
|
+
* The status of the instance. Valid values:
|
|
1657
|
+
* * **1**: normal
|
|
1658
|
+
* * **2**: expired
|
|
1659
|
+
* * **3**: released
|
|
1660
|
+
*
|
|
1661
|
+
* @param request DescribeInstanceListRequest
|
|
1662
|
+
* @return DescribeInstanceListResponse
|
|
1663
|
+
*/
|
|
1664
|
+
describeInstanceList(request: DescribeInstanceListRequest): Promise<DescribeInstanceListResponse>;
|
|
1665
|
+
describeInstanceSpecsWithOptions(request: DescribeInstanceSpecsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceSpecsResponse>;
|
|
1666
|
+
describeInstanceSpecs(request: DescribeInstanceSpecsRequest): Promise<DescribeInstanceSpecsResponse>;
|
|
1667
|
+
/**
|
|
1668
|
+
* The ID of the resource group.
|
|
1669
|
+
*
|
|
1670
|
+
* @param request DescribeOnDemandDdosEventRequest
|
|
1671
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1672
|
+
* @return DescribeOnDemandDdosEventResponse
|
|
1673
|
+
*/
|
|
1674
|
+
describeOnDemandDdosEventWithOptions(request: DescribeOnDemandDdosEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOnDemandDdosEventResponse>;
|
|
1675
|
+
/**
|
|
1676
|
+
* The ID of the resource group.
|
|
1677
|
+
*
|
|
1678
|
+
* @param request DescribeOnDemandDdosEventRequest
|
|
1679
|
+
* @return DescribeOnDemandDdosEventResponse
|
|
1680
|
+
*/
|
|
1681
|
+
describeOnDemandDdosEvent(request: DescribeOnDemandDdosEventRequest): Promise<DescribeOnDemandDdosEventResponse>;
|
|
1682
|
+
describeOnDemandInstanceStatusWithOptions(request: DescribeOnDemandInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOnDemandInstanceStatusResponse>;
|
|
1683
|
+
describeOnDemandInstanceStatus(request: DescribeOnDemandInstanceStatusRequest): Promise<DescribeOnDemandInstanceStatusResponse>;
|
|
1684
|
+
/**
|
|
1685
|
+
* The start time. Operation logs that were generated after this time are queried.**** This value is a UNIX timestamp. Unit: milliseconds.
|
|
1686
|
+
*
|
|
1687
|
+
* @param request DescribeOpEntitiesRequest
|
|
1688
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1689
|
+
* @return DescribeOpEntitiesResponse
|
|
1690
|
+
*/
|
|
1691
|
+
describeOpEntitiesWithOptions(request: DescribeOpEntitiesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOpEntitiesResponse>;
|
|
1692
|
+
/**
|
|
1693
|
+
* The start time. Operation logs that were generated after this time are queried.**** This value is a UNIX timestamp. Unit: milliseconds.
|
|
1694
|
+
*
|
|
1695
|
+
* @param request DescribeOpEntitiesRequest
|
|
1696
|
+
* @return DescribeOpEntitiesResponse
|
|
1697
|
+
*/
|
|
1698
|
+
describeOpEntities(request: DescribeOpEntitiesRequest): Promise<DescribeOpEntitiesResponse>;
|
|
1699
|
+
/**
|
|
1700
|
+
* The number of entries to return on each page.
|
|
1701
|
+
*
|
|
1702
|
+
* @param request DescribePackIpListRequest
|
|
1703
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1704
|
+
* @return DescribePackIpListResponse
|
|
1705
|
+
*/
|
|
1706
|
+
describePackIpListWithOptions(request: DescribePackIpListRequest, runtime: $Util.RuntimeOptions): Promise<DescribePackIpListResponse>;
|
|
1707
|
+
/**
|
|
1708
|
+
* The number of entries to return on each page.
|
|
1709
|
+
*
|
|
1710
|
+
* @param request DescribePackIpListRequest
|
|
1711
|
+
* @return DescribePackIpListResponse
|
|
1712
|
+
*/
|
|
1713
|
+
describePackIpList(request: DescribePackIpListRequest): Promise<DescribePackIpListResponse>;
|
|
1714
|
+
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
1715
|
+
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
1716
|
+
/**
|
|
1717
|
+
* The bandwidth of attack traffic. Unit: bit/s.
|
|
1718
|
+
* > This parameter is returned only if attack traffic exists.
|
|
1719
|
+
*
|
|
1720
|
+
* @param request DescribeTrafficRequest
|
|
1721
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1722
|
+
* @return DescribeTrafficResponse
|
|
1723
|
+
*/
|
|
1724
|
+
describeTrafficWithOptions(request: DescribeTrafficRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTrafficResponse>;
|
|
1725
|
+
/**
|
|
1726
|
+
* The bandwidth of attack traffic. Unit: bit/s.
|
|
1727
|
+
* > This parameter is returned only if attack traffic exists.
|
|
1728
|
+
*
|
|
1729
|
+
* @param request DescribeTrafficRequest
|
|
1730
|
+
* @return DescribeTrafficResponse
|
|
1731
|
+
*/
|
|
1732
|
+
describeTraffic(request: DescribeTrafficRequest): Promise<DescribeTrafficResponse>;
|
|
1286
1733
|
getSlsOpenStatusWithOptions(request: GetSlsOpenStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetSlsOpenStatusResponse>;
|
|
1287
1734
|
getSlsOpenStatus(request: GetSlsOpenStatusRequest): Promise<GetSlsOpenStatusResponse>;
|
|
1288
|
-
checkAccessLogAuthWithOptions(request: CheckAccessLogAuthRequest, runtime: $Util.RuntimeOptions): Promise<CheckAccessLogAuthResponse>;
|
|
1289
|
-
checkAccessLogAuth(request: CheckAccessLogAuthRequest): Promise<CheckAccessLogAuthResponse>;
|
|
1290
1735
|
listOpenedAccessLogInstancesWithOptions(request: ListOpenedAccessLogInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListOpenedAccessLogInstancesResponse>;
|
|
1291
1736
|
listOpenedAccessLogInstances(request: ListOpenedAccessLogInstancesRequest): Promise<ListOpenedAccessLogInstancesResponse>;
|
|
1292
|
-
describeOnDemandDdosEventWithOptions(request: DescribeOnDemandDdosEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeOnDemandDdosEventResponse>;
|
|
1293
|
-
describeOnDemandDdosEvent(request: DescribeOnDemandDdosEventRequest): Promise<DescribeOnDemandDdosEventResponse>;
|
|
1294
1737
|
listTagKeysWithOptions(request: ListTagKeysRequest, runtime: $Util.RuntimeOptions): Promise<ListTagKeysResponse>;
|
|
1295
1738
|
listTagKeys(request: ListTagKeysRequest): Promise<ListTagKeysResponse>;
|
|
1739
|
+
/**
|
|
1740
|
+
* The ID of the region where the Anti-DDoS Origin instance resides.
|
|
1741
|
+
* > You can call the [DescribeRegions](~~118703~~) operation to query the most recent region list.
|
|
1742
|
+
*
|
|
1743
|
+
* @param request ListTagResourcesRequest
|
|
1744
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1745
|
+
* @return ListTagResourcesResponse
|
|
1746
|
+
*/
|
|
1296
1747
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
1748
|
+
/**
|
|
1749
|
+
* The ID of the region where the Anti-DDoS Origin instance resides.
|
|
1750
|
+
* > You can call the [DescribeRegions](~~118703~~) operation to query the most recent region list.
|
|
1751
|
+
*
|
|
1752
|
+
* @param request ListTagResourcesRequest
|
|
1753
|
+
* @return ListTagResourcesResponse
|
|
1754
|
+
*/
|
|
1297
1755
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
describePackIpList(request: DescribePackIpListRequest): Promise<DescribePackIpListResponse>;
|
|
1306
|
-
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
1307
|
-
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
1756
|
+
/**
|
|
1757
|
+
* The operation that you want to perform. Set the value to **ModifyRemark**.
|
|
1758
|
+
*
|
|
1759
|
+
* @param request ModifyRemarkRequest
|
|
1760
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1761
|
+
* @return ModifyRemarkResponse
|
|
1762
|
+
*/
|
|
1308
1763
|
modifyRemarkWithOptions(request: ModifyRemarkRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRemarkResponse>;
|
|
1764
|
+
/**
|
|
1765
|
+
* The operation that you want to perform. Set the value to **ModifyRemark**.
|
|
1766
|
+
*
|
|
1767
|
+
* @param request ModifyRemarkRequest
|
|
1768
|
+
* @return ModifyRemarkResponse
|
|
1769
|
+
*/
|
|
1309
1770
|
modifyRemark(request: ModifyRemarkRequest): Promise<ModifyRemarkResponse>;
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
checkGrant(request: CheckGrantRequest): Promise<CheckGrantResponse>;
|
|
1334
|
-
addIpWithOptions(request: AddIpRequest, runtime: $Util.RuntimeOptions): Promise<AddIpResponse>;
|
|
1335
|
-
addIp(request: AddIpRequest): Promise<AddIpResponse>;
|
|
1336
|
-
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
1337
|
-
[key: string]: string;
|
|
1338
|
-
}, endpoint: string): string;
|
|
1771
|
+
querySchedruleOnDemandWithOptions(request: QuerySchedruleOnDemandRequest, runtime: $Util.RuntimeOptions): Promise<QuerySchedruleOnDemandResponse>;
|
|
1772
|
+
querySchedruleOnDemand(request: QuerySchedruleOnDemandRequest): Promise<QuerySchedruleOnDemandResponse>;
|
|
1773
|
+
setInstanceModeOnDemandWithOptions(request: SetInstanceModeOnDemandRequest, runtime: $Util.RuntimeOptions): Promise<SetInstanceModeOnDemandResponse>;
|
|
1774
|
+
setInstanceModeOnDemand(request: SetInstanceModeOnDemandRequest): Promise<SetInstanceModeOnDemandResponse>;
|
|
1775
|
+
/**
|
|
1776
|
+
* The ID of Anti-DDoS Origin Instance N to which you want to add tags.
|
|
1777
|
+
* > You can call the [DescribeInstanceList](~~118698~~) operation to query the IDs of all Anti-DDoS Origin instances.
|
|
1778
|
+
*
|
|
1779
|
+
* @param request TagResourcesRequest
|
|
1780
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
1781
|
+
* @return TagResourcesResponse
|
|
1782
|
+
*/
|
|
1783
|
+
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
1784
|
+
/**
|
|
1785
|
+
* The ID of Anti-DDoS Origin Instance N to which you want to add tags.
|
|
1786
|
+
* > You can call the [DescribeInstanceList](~~118698~~) operation to query the IDs of all Anti-DDoS Origin instances.
|
|
1787
|
+
*
|
|
1788
|
+
* @param request TagResourcesRequest
|
|
1789
|
+
* @return TagResourcesResponse
|
|
1790
|
+
*/
|
|
1791
|
+
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
1792
|
+
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
1793
|
+
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
1339
1794
|
}
|