@alicloud/elasticsearch20170613 1.0.15 → 1.1.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/dist/client.d.ts +1075 -124
- package/dist/client.js +2291 -623
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +2966 -664
package/dist/client.d.ts
CHANGED
|
@@ -4,6 +4,137 @@
|
|
|
4
4
|
import * as $Util from '@alicloud/tea-util';
|
|
5
5
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
+
export declare class ClientNodeConfiguration extends $tea.Model {
|
|
8
|
+
amount?: number;
|
|
9
|
+
disk?: number;
|
|
10
|
+
diskType?: string;
|
|
11
|
+
spec?: string;
|
|
12
|
+
static names(): {
|
|
13
|
+
[key: string]: string;
|
|
14
|
+
};
|
|
15
|
+
static types(): {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
};
|
|
18
|
+
constructor(map?: {
|
|
19
|
+
[key: string]: any;
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
export declare class DictInfo extends $tea.Model {
|
|
23
|
+
fileSize?: number;
|
|
24
|
+
name?: string;
|
|
25
|
+
sourceType?: string;
|
|
26
|
+
type?: string;
|
|
27
|
+
static names(): {
|
|
28
|
+
[key: string]: string;
|
|
29
|
+
};
|
|
30
|
+
static types(): {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
};
|
|
33
|
+
constructor(map?: {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
export declare class ElasticDataNodeConfiguration extends $tea.Model {
|
|
38
|
+
amount?: number;
|
|
39
|
+
disk?: number;
|
|
40
|
+
diskEncryption?: boolean;
|
|
41
|
+
diskType?: string;
|
|
42
|
+
performanceLevel?: string;
|
|
43
|
+
spec?: string;
|
|
44
|
+
static names(): {
|
|
45
|
+
[key: string]: string;
|
|
46
|
+
};
|
|
47
|
+
static types(): {
|
|
48
|
+
[key: string]: any;
|
|
49
|
+
};
|
|
50
|
+
constructor(map?: {
|
|
51
|
+
[key: string]: any;
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
export declare class Elasticsearch extends $tea.Model {
|
|
55
|
+
advancedDedicateMaster?: boolean;
|
|
56
|
+
advancedSetting?: ElasticsearchAdvancedSetting;
|
|
57
|
+
aliwsDicts?: DictInfo[];
|
|
58
|
+
clientNodeConfiguration?: ClientNodeConfiguration;
|
|
59
|
+
createdAt?: string;
|
|
60
|
+
dataNode?: boolean;
|
|
61
|
+
dedicateMaster?: boolean;
|
|
62
|
+
description?: string;
|
|
63
|
+
dictList?: DictInfo[];
|
|
64
|
+
domain?: string;
|
|
65
|
+
elasticDataNodeConfiguration?: ElasticDataNodeConfiguration;
|
|
66
|
+
enableKibanaPrivateNetwork?: boolean;
|
|
67
|
+
enableKibanaPublicNetwork?: boolean;
|
|
68
|
+
enablePublic?: boolean;
|
|
69
|
+
endTime?: number;
|
|
70
|
+
esConfig?: {
|
|
71
|
+
[key: string]: string;
|
|
72
|
+
};
|
|
73
|
+
esIPWhitelist?: string[];
|
|
74
|
+
esVersion?: string;
|
|
75
|
+
extendConfigs?: {
|
|
76
|
+
[key: string]: any;
|
|
77
|
+
}[];
|
|
78
|
+
haveClientNode?: boolean;
|
|
79
|
+
haveElasticDataNode?: boolean;
|
|
80
|
+
haveKibana?: boolean;
|
|
81
|
+
ikHotDicts?: DictInfo[];
|
|
82
|
+
instanceId?: string;
|
|
83
|
+
kibanaConfiguration?: KibanaNodeConfiguration;
|
|
84
|
+
kibanaDomain?: string;
|
|
85
|
+
kibanaIPWhitelist?: string[];
|
|
86
|
+
kibanaPort?: number;
|
|
87
|
+
kibanaPrivateDomain?: string;
|
|
88
|
+
kibanaPrivateIPWhitelist?: string[];
|
|
89
|
+
kibanaPrivatePort?: number;
|
|
90
|
+
kibanaProtocol?: string;
|
|
91
|
+
masterConfiguration?: MasterNodeConfiguration;
|
|
92
|
+
networkConfig?: NetworkConfig;
|
|
93
|
+
nodeAmount?: number;
|
|
94
|
+
nodeSpec?: NodeSpec;
|
|
95
|
+
paymentType?: string;
|
|
96
|
+
port?: number;
|
|
97
|
+
privateNetworkIpWhiteList?: string[];
|
|
98
|
+
productType?: string;
|
|
99
|
+
protocol?: string;
|
|
100
|
+
publicDomain?: string;
|
|
101
|
+
publicIpWhitelist?: string[];
|
|
102
|
+
publicPort?: number;
|
|
103
|
+
readWritePolicy?: ReadWritePolicy;
|
|
104
|
+
resourceGroupId?: string;
|
|
105
|
+
serviceVpc?: boolean;
|
|
106
|
+
status?: string;
|
|
107
|
+
synonymsDicts?: DictInfo[];
|
|
108
|
+
tags?: Tag[];
|
|
109
|
+
updatedAt?: string;
|
|
110
|
+
warmNode?: boolean;
|
|
111
|
+
warmNodeConfiguration?: WarmNodeConfiguration;
|
|
112
|
+
zoneCount?: number;
|
|
113
|
+
zoneInfos?: ZoneInfo[];
|
|
114
|
+
static names(): {
|
|
115
|
+
[key: string]: string;
|
|
116
|
+
};
|
|
117
|
+
static types(): {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
};
|
|
120
|
+
constructor(map?: {
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
export declare class KibanaNodeConfiguration extends $tea.Model {
|
|
125
|
+
amount?: number;
|
|
126
|
+
disk?: number;
|
|
127
|
+
spec?: string;
|
|
128
|
+
static names(): {
|
|
129
|
+
[key: string]: string;
|
|
130
|
+
};
|
|
131
|
+
static types(): {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
};
|
|
134
|
+
constructor(map?: {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
});
|
|
137
|
+
}
|
|
7
138
|
export declare class Logstash extends $tea.Model {
|
|
8
139
|
config?: {
|
|
9
140
|
[key: string]: string;
|
|
@@ -36,7 +167,156 @@ export declare class Logstash extends $tea.Model {
|
|
|
36
167
|
[key: string]: any;
|
|
37
168
|
});
|
|
38
169
|
}
|
|
170
|
+
export declare class MasterNodeConfiguration extends $tea.Model {
|
|
171
|
+
amount?: number;
|
|
172
|
+
disk?: number;
|
|
173
|
+
diskType?: string;
|
|
174
|
+
spec?: string;
|
|
175
|
+
static names(): {
|
|
176
|
+
[key: string]: string;
|
|
177
|
+
};
|
|
178
|
+
static types(): {
|
|
179
|
+
[key: string]: any;
|
|
180
|
+
};
|
|
181
|
+
constructor(map?: {
|
|
182
|
+
[key: string]: any;
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
export declare class NetworkConfig extends $tea.Model {
|
|
186
|
+
type?: string;
|
|
187
|
+
vpcId?: string;
|
|
188
|
+
vsArea?: string;
|
|
189
|
+
vswitchId?: string;
|
|
190
|
+
whiteIpGroupList?: WhiteIpGroup[];
|
|
191
|
+
static names(): {
|
|
192
|
+
[key: string]: string;
|
|
193
|
+
};
|
|
194
|
+
static types(): {
|
|
195
|
+
[key: string]: any;
|
|
196
|
+
};
|
|
197
|
+
constructor(map?: {
|
|
198
|
+
[key: string]: any;
|
|
199
|
+
});
|
|
200
|
+
}
|
|
201
|
+
export declare class NodeInfo extends $tea.Model {
|
|
202
|
+
host?: string;
|
|
203
|
+
hostName?: string;
|
|
204
|
+
port?: number;
|
|
205
|
+
zoneId?: string;
|
|
206
|
+
static names(): {
|
|
207
|
+
[key: string]: string;
|
|
208
|
+
};
|
|
209
|
+
static types(): {
|
|
210
|
+
[key: string]: any;
|
|
211
|
+
};
|
|
212
|
+
constructor(map?: {
|
|
213
|
+
[key: string]: any;
|
|
214
|
+
});
|
|
215
|
+
}
|
|
216
|
+
export declare class NodeSpec extends $tea.Model {
|
|
217
|
+
disk?: number;
|
|
218
|
+
diskEncryption?: boolean;
|
|
219
|
+
diskType?: string;
|
|
220
|
+
performanceLevel?: string;
|
|
221
|
+
spec?: string;
|
|
222
|
+
static names(): {
|
|
223
|
+
[key: string]: string;
|
|
224
|
+
};
|
|
225
|
+
static types(): {
|
|
226
|
+
[key: string]: any;
|
|
227
|
+
};
|
|
228
|
+
constructor(map?: {
|
|
229
|
+
[key: string]: any;
|
|
230
|
+
});
|
|
231
|
+
}
|
|
232
|
+
export declare class PaymentInfo extends $tea.Model {
|
|
233
|
+
autoRenewDuration?: number;
|
|
234
|
+
duration?: number;
|
|
235
|
+
isAutoRenew?: boolean;
|
|
236
|
+
pricingCycle?: string;
|
|
237
|
+
static names(): {
|
|
238
|
+
[key: string]: string;
|
|
239
|
+
};
|
|
240
|
+
static types(): {
|
|
241
|
+
[key: string]: any;
|
|
242
|
+
};
|
|
243
|
+
constructor(map?: {
|
|
244
|
+
[key: string]: any;
|
|
245
|
+
});
|
|
246
|
+
}
|
|
247
|
+
export declare class ReadWritePolicy extends $tea.Model {
|
|
248
|
+
autoGeneratePk?: boolean;
|
|
249
|
+
writeHa?: boolean;
|
|
250
|
+
writePolicy?: string;
|
|
251
|
+
static names(): {
|
|
252
|
+
[key: string]: string;
|
|
253
|
+
};
|
|
254
|
+
static types(): {
|
|
255
|
+
[key: string]: any;
|
|
256
|
+
};
|
|
257
|
+
constructor(map?: {
|
|
258
|
+
[key: string]: any;
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
export declare class Tag extends $tea.Model {
|
|
262
|
+
tagKey?: string;
|
|
263
|
+
tagValue?: string;
|
|
264
|
+
static names(): {
|
|
265
|
+
[key: string]: string;
|
|
266
|
+
};
|
|
267
|
+
static types(): {
|
|
268
|
+
[key: string]: any;
|
|
269
|
+
};
|
|
270
|
+
constructor(map?: {
|
|
271
|
+
[key: string]: any;
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
export declare class WarmNodeConfiguration extends $tea.Model {
|
|
275
|
+
amount?: number;
|
|
276
|
+
disk?: number;
|
|
277
|
+
diskEncryption?: boolean;
|
|
278
|
+
diskType?: string;
|
|
279
|
+
performanceLevel?: string;
|
|
280
|
+
spec?: string;
|
|
281
|
+
static names(): {
|
|
282
|
+
[key: string]: string;
|
|
283
|
+
};
|
|
284
|
+
static types(): {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
};
|
|
287
|
+
constructor(map?: {
|
|
288
|
+
[key: string]: any;
|
|
289
|
+
});
|
|
290
|
+
}
|
|
291
|
+
export declare class WhiteIpGroup extends $tea.Model {
|
|
292
|
+
whiteIpType?: string;
|
|
293
|
+
groupName?: string;
|
|
294
|
+
ips?: string[];
|
|
295
|
+
static names(): {
|
|
296
|
+
[key: string]: string;
|
|
297
|
+
};
|
|
298
|
+
static types(): {
|
|
299
|
+
[key: string]: any;
|
|
300
|
+
};
|
|
301
|
+
constructor(map?: {
|
|
302
|
+
[key: string]: any;
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
export declare class ZoneInfo extends $tea.Model {
|
|
306
|
+
status?: string;
|
|
307
|
+
zoneId?: string;
|
|
308
|
+
static names(): {
|
|
309
|
+
[key: string]: string;
|
|
310
|
+
};
|
|
311
|
+
static types(): {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
};
|
|
314
|
+
constructor(map?: {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
});
|
|
317
|
+
}
|
|
39
318
|
export declare class ActivateZonesRequest extends $tea.Model {
|
|
319
|
+
body?: string;
|
|
40
320
|
clientToken?: string;
|
|
41
321
|
static names(): {
|
|
42
322
|
[key: string]: string;
|
|
@@ -65,6 +345,7 @@ export declare class ActivateZonesResponse extends $tea.Model {
|
|
|
65
345
|
headers: {
|
|
66
346
|
[key: string]: string;
|
|
67
347
|
};
|
|
348
|
+
statusCode: number;
|
|
68
349
|
body: ActivateZonesResponseBody;
|
|
69
350
|
static names(): {
|
|
70
351
|
[key: string]: string;
|
|
@@ -77,6 +358,7 @@ export declare class ActivateZonesResponse extends $tea.Model {
|
|
|
77
358
|
});
|
|
78
359
|
}
|
|
79
360
|
export declare class AddConnectableClusterRequest extends $tea.Model {
|
|
361
|
+
body?: string;
|
|
80
362
|
clientToken?: string;
|
|
81
363
|
static names(): {
|
|
82
364
|
[key: string]: string;
|
|
@@ -105,6 +387,7 @@ export declare class AddConnectableClusterResponse extends $tea.Model {
|
|
|
105
387
|
headers: {
|
|
106
388
|
[key: string]: string;
|
|
107
389
|
};
|
|
390
|
+
statusCode: number;
|
|
108
391
|
body: AddConnectableClusterResponseBody;
|
|
109
392
|
static names(): {
|
|
110
393
|
[key: string]: string;
|
|
@@ -116,6 +399,18 @@ export declare class AddConnectableClusterResponse extends $tea.Model {
|
|
|
116
399
|
[key: string]: any;
|
|
117
400
|
});
|
|
118
401
|
}
|
|
402
|
+
export declare class AddSnapshotRepoRequest extends $tea.Model {
|
|
403
|
+
body?: string;
|
|
404
|
+
static names(): {
|
|
405
|
+
[key: string]: string;
|
|
406
|
+
};
|
|
407
|
+
static types(): {
|
|
408
|
+
[key: string]: any;
|
|
409
|
+
};
|
|
410
|
+
constructor(map?: {
|
|
411
|
+
[key: string]: any;
|
|
412
|
+
});
|
|
413
|
+
}
|
|
119
414
|
export declare class AddSnapshotRepoResponseBody extends $tea.Model {
|
|
120
415
|
requestId?: string;
|
|
121
416
|
result?: boolean;
|
|
@@ -133,6 +428,7 @@ export declare class AddSnapshotRepoResponse extends $tea.Model {
|
|
|
133
428
|
headers: {
|
|
134
429
|
[key: string]: string;
|
|
135
430
|
};
|
|
431
|
+
statusCode: number;
|
|
136
432
|
body: AddSnapshotRepoResponseBody;
|
|
137
433
|
static names(): {
|
|
138
434
|
[key: string]: string;
|
|
@@ -173,6 +469,7 @@ export declare class CancelDeletionResponse extends $tea.Model {
|
|
|
173
469
|
headers: {
|
|
174
470
|
[key: string]: string;
|
|
175
471
|
};
|
|
472
|
+
statusCode: number;
|
|
176
473
|
body: CancelDeletionResponseBody;
|
|
177
474
|
static names(): {
|
|
178
475
|
[key: string]: string;
|
|
@@ -213,6 +510,7 @@ export declare class CancelLogstashDeletionResponse extends $tea.Model {
|
|
|
213
510
|
headers: {
|
|
214
511
|
[key: string]: string;
|
|
215
512
|
};
|
|
513
|
+
statusCode: number;
|
|
216
514
|
body: CancelLogstashDeletionResponseBody;
|
|
217
515
|
static names(): {
|
|
218
516
|
[key: string]: string;
|
|
@@ -254,6 +552,7 @@ export declare class CancelTaskResponse extends $tea.Model {
|
|
|
254
552
|
headers: {
|
|
255
553
|
[key: string]: string;
|
|
256
554
|
};
|
|
555
|
+
statusCode: number;
|
|
257
556
|
body: CancelTaskResponseBody;
|
|
258
557
|
static names(): {
|
|
259
558
|
[key: string]: string;
|
|
@@ -297,6 +596,7 @@ export declare class CapacityPlanResponse extends $tea.Model {
|
|
|
297
596
|
headers: {
|
|
298
597
|
[key: string]: string;
|
|
299
598
|
};
|
|
599
|
+
statusCode: number;
|
|
300
600
|
body: CapacityPlanResponseBody;
|
|
301
601
|
static names(): {
|
|
302
602
|
[key: string]: string;
|
|
@@ -338,6 +638,7 @@ export declare class CloseDiagnosisResponse extends $tea.Model {
|
|
|
338
638
|
headers: {
|
|
339
639
|
[key: string]: string;
|
|
340
640
|
};
|
|
641
|
+
statusCode: number;
|
|
341
642
|
body: CloseDiagnosisResponseBody;
|
|
342
643
|
static names(): {
|
|
343
644
|
[key: string]: string;
|
|
@@ -378,6 +679,7 @@ export declare class CloseHttpsResponse extends $tea.Model {
|
|
|
378
679
|
headers: {
|
|
379
680
|
[key: string]: string;
|
|
380
681
|
};
|
|
682
|
+
statusCode: number;
|
|
381
683
|
body: CloseHttpsResponseBody;
|
|
382
684
|
static names(): {
|
|
383
685
|
[key: string]: string;
|
|
@@ -418,6 +720,7 @@ export declare class CloseManagedIndexResponse extends $tea.Model {
|
|
|
418
720
|
headers: {
|
|
419
721
|
[key: string]: string;
|
|
420
722
|
};
|
|
723
|
+
statusCode: number;
|
|
421
724
|
body: CloseManagedIndexResponseBody;
|
|
422
725
|
static names(): {
|
|
423
726
|
[key: string]: string;
|
|
@@ -430,6 +733,7 @@ export declare class CloseManagedIndexResponse extends $tea.Model {
|
|
|
430
733
|
});
|
|
431
734
|
}
|
|
432
735
|
export declare class CreateCollectorRequest extends $tea.Model {
|
|
736
|
+
body?: string;
|
|
433
737
|
clientToken?: string;
|
|
434
738
|
static names(): {
|
|
435
739
|
[key: string]: string;
|
|
@@ -458,6 +762,7 @@ export declare class CreateCollectorResponse extends $tea.Model {
|
|
|
458
762
|
headers: {
|
|
459
763
|
[key: string]: string;
|
|
460
764
|
};
|
|
765
|
+
statusCode: number;
|
|
461
766
|
body: CreateCollectorResponseBody;
|
|
462
767
|
static names(): {
|
|
463
768
|
[key: string]: string;
|
|
@@ -501,6 +806,7 @@ export declare class CreateComponentIndexResponse extends $tea.Model {
|
|
|
501
806
|
headers: {
|
|
502
807
|
[key: string]: string;
|
|
503
808
|
};
|
|
809
|
+
statusCode: number;
|
|
504
810
|
body: CreateComponentIndexResponseBody;
|
|
505
811
|
static names(): {
|
|
506
812
|
[key: string]: string;
|
|
@@ -514,6 +820,7 @@ export declare class CreateComponentIndexResponse extends $tea.Model {
|
|
|
514
820
|
}
|
|
515
821
|
export declare class CreateDataStreamRequest extends $tea.Model {
|
|
516
822
|
clientToken?: string;
|
|
823
|
+
body?: string;
|
|
517
824
|
static names(): {
|
|
518
825
|
[key: string]: string;
|
|
519
826
|
};
|
|
@@ -541,6 +848,7 @@ export declare class CreateDataStreamResponse extends $tea.Model {
|
|
|
541
848
|
headers: {
|
|
542
849
|
[key: string]: string;
|
|
543
850
|
};
|
|
851
|
+
statusCode: number;
|
|
544
852
|
body: CreateDataStreamResponseBody;
|
|
545
853
|
static names(): {
|
|
546
854
|
[key: string]: string;
|
|
@@ -554,6 +862,7 @@ export declare class CreateDataStreamResponse extends $tea.Model {
|
|
|
554
862
|
}
|
|
555
863
|
export declare class CreateDataTasksRequest extends $tea.Model {
|
|
556
864
|
clientToken?: string;
|
|
865
|
+
body?: string;
|
|
557
866
|
static names(): {
|
|
558
867
|
[key: string]: string;
|
|
559
868
|
};
|
|
@@ -581,6 +890,7 @@ export declare class CreateDataTasksResponse extends $tea.Model {
|
|
|
581
890
|
headers: {
|
|
582
891
|
[key: string]: string;
|
|
583
892
|
};
|
|
893
|
+
statusCode: number;
|
|
584
894
|
body: CreateDataTasksResponseBody;
|
|
585
895
|
static names(): {
|
|
586
896
|
[key: string]: string;
|
|
@@ -594,6 +904,7 @@ export declare class CreateDataTasksResponse extends $tea.Model {
|
|
|
594
904
|
}
|
|
595
905
|
export declare class CreateILMPolicyRequest extends $tea.Model {
|
|
596
906
|
clientToken?: string;
|
|
907
|
+
body?: string;
|
|
597
908
|
static names(): {
|
|
598
909
|
[key: string]: string;
|
|
599
910
|
};
|
|
@@ -621,6 +932,7 @@ export declare class CreateILMPolicyResponse extends $tea.Model {
|
|
|
621
932
|
headers: {
|
|
622
933
|
[key: string]: string;
|
|
623
934
|
};
|
|
935
|
+
statusCode: number;
|
|
624
936
|
body: CreateILMPolicyResponseBody;
|
|
625
937
|
static names(): {
|
|
626
938
|
[key: string]: string;
|
|
@@ -634,6 +946,7 @@ export declare class CreateILMPolicyResponse extends $tea.Model {
|
|
|
634
946
|
}
|
|
635
947
|
export declare class CreateIndexTemplateRequest extends $tea.Model {
|
|
636
948
|
clientToken?: string;
|
|
949
|
+
body?: string;
|
|
637
950
|
static names(): {
|
|
638
951
|
[key: string]: string;
|
|
639
952
|
};
|
|
@@ -661,6 +974,7 @@ export declare class CreateIndexTemplateResponse extends $tea.Model {
|
|
|
661
974
|
headers: {
|
|
662
975
|
[key: string]: string;
|
|
663
976
|
};
|
|
977
|
+
statusCode: number;
|
|
664
978
|
body: CreateIndexTemplateResponseBody;
|
|
665
979
|
static names(): {
|
|
666
980
|
[key: string]: string;
|
|
@@ -708,6 +1022,7 @@ export declare class CreateLogstashResponse extends $tea.Model {
|
|
|
708
1022
|
headers: {
|
|
709
1023
|
[key: string]: string;
|
|
710
1024
|
};
|
|
1025
|
+
statusCode: number;
|
|
711
1026
|
body: CreateLogstashResponseBody;
|
|
712
1027
|
static names(): {
|
|
713
1028
|
[key: string]: string;
|
|
@@ -721,6 +1036,7 @@ export declare class CreateLogstashResponse extends $tea.Model {
|
|
|
721
1036
|
}
|
|
722
1037
|
export declare class CreatePipelinesRequest extends $tea.Model {
|
|
723
1038
|
clientToken?: string;
|
|
1039
|
+
body?: string;
|
|
724
1040
|
trigger?: boolean;
|
|
725
1041
|
static names(): {
|
|
726
1042
|
[key: string]: string;
|
|
@@ -749,6 +1065,7 @@ export declare class CreatePipelinesResponse extends $tea.Model {
|
|
|
749
1065
|
headers: {
|
|
750
1066
|
[key: string]: string;
|
|
751
1067
|
};
|
|
1068
|
+
statusCode: number;
|
|
752
1069
|
body: CreatePipelinesResponseBody;
|
|
753
1070
|
static names(): {
|
|
754
1071
|
[key: string]: string;
|
|
@@ -762,6 +1079,7 @@ export declare class CreatePipelinesResponse extends $tea.Model {
|
|
|
762
1079
|
}
|
|
763
1080
|
export declare class CreateSnapshotRequest extends $tea.Model {
|
|
764
1081
|
clientToken?: string;
|
|
1082
|
+
body?: string;
|
|
765
1083
|
static names(): {
|
|
766
1084
|
[key: string]: string;
|
|
767
1085
|
};
|
|
@@ -789,6 +1107,7 @@ export declare class CreateSnapshotResponse extends $tea.Model {
|
|
|
789
1107
|
headers: {
|
|
790
1108
|
[key: string]: string;
|
|
791
1109
|
};
|
|
1110
|
+
statusCode: number;
|
|
792
1111
|
body: CreateSnapshotResponseBody;
|
|
793
1112
|
static names(): {
|
|
794
1113
|
[key: string]: string;
|
|
@@ -832,6 +1151,7 @@ export declare class CreateVpcEndpointResponse extends $tea.Model {
|
|
|
832
1151
|
headers: {
|
|
833
1152
|
[key: string]: string;
|
|
834
1153
|
};
|
|
1154
|
+
statusCode: number;
|
|
835
1155
|
body: CreateVpcEndpointResponseBody;
|
|
836
1156
|
static names(): {
|
|
837
1157
|
[key: string]: string;
|
|
@@ -844,6 +1164,7 @@ export declare class CreateVpcEndpointResponse extends $tea.Model {
|
|
|
844
1164
|
});
|
|
845
1165
|
}
|
|
846
1166
|
export declare class DeactivateZonesRequest extends $tea.Model {
|
|
1167
|
+
body?: string;
|
|
847
1168
|
clientToken?: string;
|
|
848
1169
|
static names(): {
|
|
849
1170
|
[key: string]: string;
|
|
@@ -872,6 +1193,7 @@ export declare class DeactivateZonesResponse extends $tea.Model {
|
|
|
872
1193
|
headers: {
|
|
873
1194
|
[key: string]: string;
|
|
874
1195
|
};
|
|
1196
|
+
statusCode: number;
|
|
875
1197
|
body: DeactivateZonesResponseBody;
|
|
876
1198
|
static names(): {
|
|
877
1199
|
[key: string]: string;
|
|
@@ -912,6 +1234,7 @@ export declare class DeleteCollectorResponse extends $tea.Model {
|
|
|
912
1234
|
headers: {
|
|
913
1235
|
[key: string]: string;
|
|
914
1236
|
};
|
|
1237
|
+
statusCode: number;
|
|
915
1238
|
body: DeleteCollectorResponseBody;
|
|
916
1239
|
static names(): {
|
|
917
1240
|
[key: string]: string;
|
|
@@ -940,6 +1263,7 @@ export declare class DeleteComponentIndexResponse extends $tea.Model {
|
|
|
940
1263
|
headers: {
|
|
941
1264
|
[key: string]: string;
|
|
942
1265
|
};
|
|
1266
|
+
statusCode: number;
|
|
943
1267
|
body: DeleteComponentIndexResponseBody;
|
|
944
1268
|
static names(): {
|
|
945
1269
|
[key: string]: string;
|
|
@@ -981,6 +1305,7 @@ export declare class DeleteConnectedClusterResponse extends $tea.Model {
|
|
|
981
1305
|
headers: {
|
|
982
1306
|
[key: string]: string;
|
|
983
1307
|
};
|
|
1308
|
+
statusCode: number;
|
|
984
1309
|
body: DeleteConnectedClusterResponseBody;
|
|
985
1310
|
static names(): {
|
|
986
1311
|
[key: string]: string;
|
|
@@ -1021,6 +1346,7 @@ export declare class DeleteDataStreamResponse extends $tea.Model {
|
|
|
1021
1346
|
headers: {
|
|
1022
1347
|
[key: string]: string;
|
|
1023
1348
|
};
|
|
1349
|
+
statusCode: number;
|
|
1024
1350
|
body: DeleteDataStreamResponseBody;
|
|
1025
1351
|
static names(): {
|
|
1026
1352
|
[key: string]: string;
|
|
@@ -1062,6 +1388,7 @@ export declare class DeleteDataTaskResponse extends $tea.Model {
|
|
|
1062
1388
|
headers: {
|
|
1063
1389
|
[key: string]: string;
|
|
1064
1390
|
};
|
|
1391
|
+
statusCode: number;
|
|
1065
1392
|
body: DeleteDataTaskResponseBody;
|
|
1066
1393
|
static names(): {
|
|
1067
1394
|
[key: string]: string;
|
|
@@ -1090,6 +1417,7 @@ export declare class DeleteDeprecatedTemplateResponse extends $tea.Model {
|
|
|
1090
1417
|
headers: {
|
|
1091
1418
|
[key: string]: string;
|
|
1092
1419
|
};
|
|
1420
|
+
statusCode: number;
|
|
1093
1421
|
body: DeleteDeprecatedTemplateResponseBody;
|
|
1094
1422
|
static names(): {
|
|
1095
1423
|
[key: string]: string;
|
|
@@ -1118,6 +1446,7 @@ export declare class DeleteILMPolicyResponse extends $tea.Model {
|
|
|
1118
1446
|
headers: {
|
|
1119
1447
|
[key: string]: string;
|
|
1120
1448
|
};
|
|
1449
|
+
statusCode: number;
|
|
1121
1450
|
body: DeleteILMPolicyResponseBody;
|
|
1122
1451
|
static names(): {
|
|
1123
1452
|
[key: string]: string;
|
|
@@ -1146,6 +1475,7 @@ export declare class DeleteIndexTemplateResponse extends $tea.Model {
|
|
|
1146
1475
|
headers: {
|
|
1147
1476
|
[key: string]: string;
|
|
1148
1477
|
};
|
|
1478
|
+
statusCode: number;
|
|
1149
1479
|
body: DeleteIndexTemplateResponseBody;
|
|
1150
1480
|
static names(): {
|
|
1151
1481
|
[key: string]: string;
|
|
@@ -1186,6 +1516,7 @@ export declare class DeleteInstanceResponse extends $tea.Model {
|
|
|
1186
1516
|
headers: {
|
|
1187
1517
|
[key: string]: string;
|
|
1188
1518
|
};
|
|
1519
|
+
statusCode: number;
|
|
1189
1520
|
body: DeleteInstanceResponseBody;
|
|
1190
1521
|
static names(): {
|
|
1191
1522
|
[key: string]: string;
|
|
@@ -1226,6 +1557,7 @@ export declare class DeleteLogstashResponse extends $tea.Model {
|
|
|
1226
1557
|
headers: {
|
|
1227
1558
|
[key: string]: string;
|
|
1228
1559
|
};
|
|
1560
|
+
statusCode: number;
|
|
1229
1561
|
body: DeleteLogstashResponseBody;
|
|
1230
1562
|
static names(): {
|
|
1231
1563
|
[key: string]: string;
|
|
@@ -1267,6 +1599,7 @@ export declare class DeletePipelinesResponse extends $tea.Model {
|
|
|
1267
1599
|
headers: {
|
|
1268
1600
|
[key: string]: string;
|
|
1269
1601
|
};
|
|
1602
|
+
statusCode: number;
|
|
1270
1603
|
body: DeletePipelinesResponseBody;
|
|
1271
1604
|
static names(): {
|
|
1272
1605
|
[key: string]: string;
|
|
@@ -1308,6 +1641,7 @@ export declare class DeleteSnapshotRepoResponse extends $tea.Model {
|
|
|
1308
1641
|
headers: {
|
|
1309
1642
|
[key: string]: string;
|
|
1310
1643
|
};
|
|
1644
|
+
statusCode: number;
|
|
1311
1645
|
body: DeleteSnapshotRepoResponseBody;
|
|
1312
1646
|
static names(): {
|
|
1313
1647
|
[key: string]: string;
|
|
@@ -1348,6 +1682,7 @@ export declare class DeleteVpcEndpointResponse extends $tea.Model {
|
|
|
1348
1682
|
headers: {
|
|
1349
1683
|
[key: string]: string;
|
|
1350
1684
|
};
|
|
1685
|
+
statusCode: number;
|
|
1351
1686
|
body: DeleteVpcEndpointResponseBody;
|
|
1352
1687
|
static names(): {
|
|
1353
1688
|
[key: string]: string;
|
|
@@ -1376,6 +1711,7 @@ export declare class DescribeAckOperatorResponse extends $tea.Model {
|
|
|
1376
1711
|
headers: {
|
|
1377
1712
|
[key: string]: string;
|
|
1378
1713
|
};
|
|
1714
|
+
statusCode: number;
|
|
1379
1715
|
body: DescribeAckOperatorResponseBody;
|
|
1380
1716
|
static names(): {
|
|
1381
1717
|
[key: string]: string;
|
|
@@ -1404,6 +1740,7 @@ export declare class DescribeApmResponse extends $tea.Model {
|
|
|
1404
1740
|
headers: {
|
|
1405
1741
|
[key: string]: string;
|
|
1406
1742
|
};
|
|
1743
|
+
statusCode: number;
|
|
1407
1744
|
body: DescribeApmResponseBody;
|
|
1408
1745
|
static names(): {
|
|
1409
1746
|
[key: string]: string;
|
|
@@ -1432,6 +1769,7 @@ export declare class DescribeCollectorResponse extends $tea.Model {
|
|
|
1432
1769
|
headers: {
|
|
1433
1770
|
[key: string]: string;
|
|
1434
1771
|
};
|
|
1772
|
+
statusCode: number;
|
|
1435
1773
|
body: DescribeCollectorResponseBody;
|
|
1436
1774
|
static names(): {
|
|
1437
1775
|
[key: string]: string;
|
|
@@ -1460,6 +1798,7 @@ export declare class DescribeComponentIndexResponse extends $tea.Model {
|
|
|
1460
1798
|
headers: {
|
|
1461
1799
|
[key: string]: string;
|
|
1462
1800
|
};
|
|
1801
|
+
statusCode: number;
|
|
1463
1802
|
body: DescribeComponentIndexResponseBody;
|
|
1464
1803
|
static names(): {
|
|
1465
1804
|
[key: string]: string;
|
|
@@ -1500,6 +1839,7 @@ export declare class DescribeConnectableClustersResponse extends $tea.Model {
|
|
|
1500
1839
|
headers: {
|
|
1501
1840
|
[key: string]: string;
|
|
1502
1841
|
};
|
|
1842
|
+
statusCode: number;
|
|
1503
1843
|
body: DescribeConnectableClustersResponseBody;
|
|
1504
1844
|
static names(): {
|
|
1505
1845
|
[key: string]: string;
|
|
@@ -1528,6 +1868,7 @@ export declare class DescribeDeprecatedTemplateResponse extends $tea.Model {
|
|
|
1528
1868
|
headers: {
|
|
1529
1869
|
[key: string]: string;
|
|
1530
1870
|
};
|
|
1871
|
+
statusCode: number;
|
|
1531
1872
|
body: DescribeDeprecatedTemplateResponseBody;
|
|
1532
1873
|
static names(): {
|
|
1533
1874
|
[key: string]: string;
|
|
@@ -1568,6 +1909,7 @@ export declare class DescribeDiagnoseReportResponse extends $tea.Model {
|
|
|
1568
1909
|
headers: {
|
|
1569
1910
|
[key: string]: string;
|
|
1570
1911
|
};
|
|
1912
|
+
statusCode: number;
|
|
1571
1913
|
body: DescribeDiagnoseReportResponseBody;
|
|
1572
1914
|
static names(): {
|
|
1573
1915
|
[key: string]: string;
|
|
@@ -1608,6 +1950,7 @@ export declare class DescribeDiagnosisSettingsResponse extends $tea.Model {
|
|
|
1608
1950
|
headers: {
|
|
1609
1951
|
[key: string]: string;
|
|
1610
1952
|
};
|
|
1953
|
+
statusCode: number;
|
|
1611
1954
|
body: DescribeDiagnosisSettingsResponseBody;
|
|
1612
1955
|
static names(): {
|
|
1613
1956
|
[key: string]: string;
|
|
@@ -1619,6 +1962,35 @@ export declare class DescribeDiagnosisSettingsResponse extends $tea.Model {
|
|
|
1619
1962
|
[key: string]: any;
|
|
1620
1963
|
});
|
|
1621
1964
|
}
|
|
1965
|
+
export declare class DescribeDynamicSettingsResponseBody extends $tea.Model {
|
|
1966
|
+
requestId?: string;
|
|
1967
|
+
result?: string;
|
|
1968
|
+
static names(): {
|
|
1969
|
+
[key: string]: string;
|
|
1970
|
+
};
|
|
1971
|
+
static types(): {
|
|
1972
|
+
[key: string]: any;
|
|
1973
|
+
};
|
|
1974
|
+
constructor(map?: {
|
|
1975
|
+
[key: string]: any;
|
|
1976
|
+
});
|
|
1977
|
+
}
|
|
1978
|
+
export declare class DescribeDynamicSettingsResponse extends $tea.Model {
|
|
1979
|
+
headers: {
|
|
1980
|
+
[key: string]: string;
|
|
1981
|
+
};
|
|
1982
|
+
statusCode: number;
|
|
1983
|
+
body: DescribeDynamicSettingsResponseBody;
|
|
1984
|
+
static names(): {
|
|
1985
|
+
[key: string]: string;
|
|
1986
|
+
};
|
|
1987
|
+
static types(): {
|
|
1988
|
+
[key: string]: any;
|
|
1989
|
+
};
|
|
1990
|
+
constructor(map?: {
|
|
1991
|
+
[key: string]: any;
|
|
1992
|
+
});
|
|
1993
|
+
}
|
|
1622
1994
|
export declare class DescribeElasticsearchHealthResponseBody extends $tea.Model {
|
|
1623
1995
|
code?: string;
|
|
1624
1996
|
message?: string;
|
|
@@ -1638,6 +2010,7 @@ export declare class DescribeElasticsearchHealthResponse extends $tea.Model {
|
|
|
1638
2010
|
headers: {
|
|
1639
2011
|
[key: string]: string;
|
|
1640
2012
|
};
|
|
2013
|
+
statusCode: number;
|
|
1641
2014
|
body: DescribeElasticsearchHealthResponseBody;
|
|
1642
2015
|
static names(): {
|
|
1643
2016
|
[key: string]: string;
|
|
@@ -1666,6 +2039,7 @@ export declare class DescribeILMPolicyResponse extends $tea.Model {
|
|
|
1666
2039
|
headers: {
|
|
1667
2040
|
[key: string]: string;
|
|
1668
2041
|
};
|
|
2042
|
+
statusCode: number;
|
|
1669
2043
|
body: DescribeILMPolicyResponseBody;
|
|
1670
2044
|
static names(): {
|
|
1671
2045
|
[key: string]: string;
|
|
@@ -1694,6 +2068,7 @@ export declare class DescribeIndexTemplateResponse extends $tea.Model {
|
|
|
1694
2068
|
headers: {
|
|
1695
2069
|
[key: string]: string;
|
|
1696
2070
|
};
|
|
2071
|
+
statusCode: number;
|
|
1697
2072
|
body: DescribeIndexTemplateResponseBody;
|
|
1698
2073
|
static names(): {
|
|
1699
2074
|
[key: string]: string;
|
|
@@ -1722,6 +2097,7 @@ export declare class DescribeInstanceResponse extends $tea.Model {
|
|
|
1722
2097
|
headers: {
|
|
1723
2098
|
[key: string]: string;
|
|
1724
2099
|
};
|
|
2100
|
+
statusCode: number;
|
|
1725
2101
|
body: DescribeInstanceResponseBody;
|
|
1726
2102
|
static names(): {
|
|
1727
2103
|
[key: string]: string;
|
|
@@ -1752,6 +2128,7 @@ export declare class DescribeKibanaSettingsResponse extends $tea.Model {
|
|
|
1752
2128
|
headers: {
|
|
1753
2129
|
[key: string]: string;
|
|
1754
2130
|
};
|
|
2131
|
+
statusCode: number;
|
|
1755
2132
|
body: DescribeKibanaSettingsResponseBody;
|
|
1756
2133
|
static names(): {
|
|
1757
2134
|
[key: string]: string;
|
|
@@ -1780,6 +2157,7 @@ export declare class DescribeLogstashResponse extends $tea.Model {
|
|
|
1780
2157
|
headers: {
|
|
1781
2158
|
[key: string]: string;
|
|
1782
2159
|
};
|
|
2160
|
+
statusCode: number;
|
|
1783
2161
|
body: DescribeLogstashResponseBody;
|
|
1784
2162
|
static names(): {
|
|
1785
2163
|
[key: string]: string;
|
|
@@ -1808,6 +2186,7 @@ export declare class DescribePipelineResponse extends $tea.Model {
|
|
|
1808
2186
|
headers: {
|
|
1809
2187
|
[key: string]: string;
|
|
1810
2188
|
};
|
|
2189
|
+
statusCode: number;
|
|
1811
2190
|
body: DescribePipelineResponseBody;
|
|
1812
2191
|
static names(): {
|
|
1813
2192
|
[key: string]: string;
|
|
@@ -1848,6 +2227,7 @@ export declare class DescribePipelineManagementConfigResponse extends $tea.Model
|
|
|
1848
2227
|
headers: {
|
|
1849
2228
|
[key: string]: string;
|
|
1850
2229
|
};
|
|
2230
|
+
statusCode: number;
|
|
1851
2231
|
body: DescribePipelineManagementConfigResponseBody;
|
|
1852
2232
|
static names(): {
|
|
1853
2233
|
[key: string]: string;
|
|
@@ -1876,6 +2256,7 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
1876
2256
|
headers: {
|
|
1877
2257
|
[key: string]: string;
|
|
1878
2258
|
};
|
|
2259
|
+
statusCode: number;
|
|
1879
2260
|
body: DescribeRegionsResponseBody;
|
|
1880
2261
|
static names(): {
|
|
1881
2262
|
[key: string]: string;
|
|
@@ -1904,6 +2285,7 @@ export declare class DescribeSnapshotSettingResponse extends $tea.Model {
|
|
|
1904
2285
|
headers: {
|
|
1905
2286
|
[key: string]: string;
|
|
1906
2287
|
};
|
|
2288
|
+
statusCode: number;
|
|
1907
2289
|
body: DescribeSnapshotSettingResponseBody;
|
|
1908
2290
|
static names(): {
|
|
1909
2291
|
[key: string]: string;
|
|
@@ -1932,6 +2314,7 @@ export declare class DescribeTemplatesResponse extends $tea.Model {
|
|
|
1932
2314
|
headers: {
|
|
1933
2315
|
[key: string]: string;
|
|
1934
2316
|
};
|
|
2317
|
+
statusCode: number;
|
|
1935
2318
|
body: DescribeTemplatesResponseBody;
|
|
1936
2319
|
static names(): {
|
|
1937
2320
|
[key: string]: string;
|
|
@@ -1960,6 +2343,7 @@ export declare class DescribeXpackMonitorConfigResponse extends $tea.Model {
|
|
|
1960
2343
|
headers: {
|
|
1961
2344
|
[key: string]: string;
|
|
1962
2345
|
};
|
|
2346
|
+
statusCode: number;
|
|
1963
2347
|
body: DescribeXpackMonitorConfigResponseBody;
|
|
1964
2348
|
static names(): {
|
|
1965
2349
|
[key: string]: string;
|
|
@@ -1973,6 +2357,9 @@ export declare class DescribeXpackMonitorConfigResponse extends $tea.Model {
|
|
|
1973
2357
|
}
|
|
1974
2358
|
export declare class DiagnoseInstanceRequest extends $tea.Model {
|
|
1975
2359
|
clientToken?: string;
|
|
2360
|
+
diagnoseItems?: string[];
|
|
2361
|
+
indices?: string[];
|
|
2362
|
+
type?: string;
|
|
1976
2363
|
lang?: string;
|
|
1977
2364
|
static names(): {
|
|
1978
2365
|
[key: string]: string;
|
|
@@ -2001,6 +2388,7 @@ export declare class DiagnoseInstanceResponse extends $tea.Model {
|
|
|
2001
2388
|
headers: {
|
|
2002
2389
|
[key: string]: string;
|
|
2003
2390
|
};
|
|
2391
|
+
statusCode: number;
|
|
2004
2392
|
body: DiagnoseInstanceResponseBody;
|
|
2005
2393
|
static names(): {
|
|
2006
2394
|
[key: string]: string;
|
|
@@ -2013,6 +2401,7 @@ export declare class DiagnoseInstanceResponse extends $tea.Model {
|
|
|
2013
2401
|
});
|
|
2014
2402
|
}
|
|
2015
2403
|
export declare class EstimatedLogstashRestartTimeRequest extends $tea.Model {
|
|
2404
|
+
body?: string;
|
|
2016
2405
|
force?: boolean;
|
|
2017
2406
|
static names(): {
|
|
2018
2407
|
[key: string]: string;
|
|
@@ -2041,6 +2430,7 @@ export declare class EstimatedLogstashRestartTimeResponse extends $tea.Model {
|
|
|
2041
2430
|
headers: {
|
|
2042
2431
|
[key: string]: string;
|
|
2043
2432
|
};
|
|
2433
|
+
statusCode: number;
|
|
2044
2434
|
body: EstimatedLogstashRestartTimeResponseBody;
|
|
2045
2435
|
static names(): {
|
|
2046
2436
|
[key: string]: string;
|
|
@@ -2053,6 +2443,7 @@ export declare class EstimatedLogstashRestartTimeResponse extends $tea.Model {
|
|
|
2053
2443
|
});
|
|
2054
2444
|
}
|
|
2055
2445
|
export declare class EstimatedRestartTimeRequest extends $tea.Model {
|
|
2446
|
+
body?: string;
|
|
2056
2447
|
force?: boolean;
|
|
2057
2448
|
static names(): {
|
|
2058
2449
|
[key: string]: string;
|
|
@@ -2081,6 +2472,7 @@ export declare class EstimatedRestartTimeResponse extends $tea.Model {
|
|
|
2081
2472
|
headers: {
|
|
2082
2473
|
[key: string]: string;
|
|
2083
2474
|
};
|
|
2475
|
+
statusCode: number;
|
|
2084
2476
|
body: EstimatedRestartTimeResponseBody;
|
|
2085
2477
|
static names(): {
|
|
2086
2478
|
[key: string]: string;
|
|
@@ -2092,6 +2484,18 @@ export declare class EstimatedRestartTimeResponse extends $tea.Model {
|
|
|
2092
2484
|
[key: string]: any;
|
|
2093
2485
|
});
|
|
2094
2486
|
}
|
|
2487
|
+
export declare class GetClusterDataInformationRequest extends $tea.Model {
|
|
2488
|
+
body?: string;
|
|
2489
|
+
static names(): {
|
|
2490
|
+
[key: string]: string;
|
|
2491
|
+
};
|
|
2492
|
+
static types(): {
|
|
2493
|
+
[key: string]: any;
|
|
2494
|
+
};
|
|
2495
|
+
constructor(map?: {
|
|
2496
|
+
[key: string]: any;
|
|
2497
|
+
});
|
|
2498
|
+
}
|
|
2095
2499
|
export declare class GetClusterDataInformationResponseBody extends $tea.Model {
|
|
2096
2500
|
requestId?: string;
|
|
2097
2501
|
result?: GetClusterDataInformationResponseBodyResult;
|
|
@@ -2109,6 +2513,7 @@ export declare class GetClusterDataInformationResponse extends $tea.Model {
|
|
|
2109
2513
|
headers: {
|
|
2110
2514
|
[key: string]: string;
|
|
2111
2515
|
};
|
|
2516
|
+
statusCode: number;
|
|
2112
2517
|
body: GetClusterDataInformationResponseBody;
|
|
2113
2518
|
static names(): {
|
|
2114
2519
|
[key: string]: string;
|
|
@@ -2137,6 +2542,7 @@ export declare class GetElastictaskResponse extends $tea.Model {
|
|
|
2137
2542
|
headers: {
|
|
2138
2543
|
[key: string]: string;
|
|
2139
2544
|
};
|
|
2545
|
+
statusCode: number;
|
|
2140
2546
|
body: GetElastictaskResponseBody;
|
|
2141
2547
|
static names(): {
|
|
2142
2548
|
[key: string]: string;
|
|
@@ -2148,6 +2554,18 @@ export declare class GetElastictaskResponse extends $tea.Model {
|
|
|
2148
2554
|
[key: string]: any;
|
|
2149
2555
|
});
|
|
2150
2556
|
}
|
|
2557
|
+
export declare class GetEmonGrafanaAlertsRequest extends $tea.Model {
|
|
2558
|
+
body?: string;
|
|
2559
|
+
static names(): {
|
|
2560
|
+
[key: string]: string;
|
|
2561
|
+
};
|
|
2562
|
+
static types(): {
|
|
2563
|
+
[key: string]: any;
|
|
2564
|
+
};
|
|
2565
|
+
constructor(map?: {
|
|
2566
|
+
[key: string]: any;
|
|
2567
|
+
});
|
|
2568
|
+
}
|
|
2151
2569
|
export declare class GetEmonGrafanaAlertsResponseBody extends $tea.Model {
|
|
2152
2570
|
code?: string;
|
|
2153
2571
|
message?: string;
|
|
@@ -2167,6 +2585,7 @@ export declare class GetEmonGrafanaAlertsResponse extends $tea.Model {
|
|
|
2167
2585
|
headers: {
|
|
2168
2586
|
[key: string]: string;
|
|
2169
2587
|
};
|
|
2588
|
+
statusCode: number;
|
|
2170
2589
|
body: GetEmonGrafanaAlertsResponseBody;
|
|
2171
2590
|
static names(): {
|
|
2172
2591
|
[key: string]: string;
|
|
@@ -2178,6 +2597,18 @@ export declare class GetEmonGrafanaAlertsResponse extends $tea.Model {
|
|
|
2178
2597
|
[key: string]: any;
|
|
2179
2598
|
});
|
|
2180
2599
|
}
|
|
2600
|
+
export declare class GetEmonGrafanaDashboardsRequest extends $tea.Model {
|
|
2601
|
+
body?: string;
|
|
2602
|
+
static names(): {
|
|
2603
|
+
[key: string]: string;
|
|
2604
|
+
};
|
|
2605
|
+
static types(): {
|
|
2606
|
+
[key: string]: any;
|
|
2607
|
+
};
|
|
2608
|
+
constructor(map?: {
|
|
2609
|
+
[key: string]: any;
|
|
2610
|
+
});
|
|
2611
|
+
}
|
|
2181
2612
|
export declare class GetEmonGrafanaDashboardsResponseBody extends $tea.Model {
|
|
2182
2613
|
code?: string;
|
|
2183
2614
|
message?: string;
|
|
@@ -2197,6 +2628,7 @@ export declare class GetEmonGrafanaDashboardsResponse extends $tea.Model {
|
|
|
2197
2628
|
headers: {
|
|
2198
2629
|
[key: string]: string;
|
|
2199
2630
|
};
|
|
2631
|
+
statusCode: number;
|
|
2200
2632
|
body: GetEmonGrafanaDashboardsResponseBody;
|
|
2201
2633
|
static names(): {
|
|
2202
2634
|
[key: string]: string;
|
|
@@ -2208,6 +2640,18 @@ export declare class GetEmonGrafanaDashboardsResponse extends $tea.Model {
|
|
|
2208
2640
|
[key: string]: any;
|
|
2209
2641
|
});
|
|
2210
2642
|
}
|
|
2643
|
+
export declare class GetEmonMonitorDataRequest extends $tea.Model {
|
|
2644
|
+
body?: string;
|
|
2645
|
+
static names(): {
|
|
2646
|
+
[key: string]: string;
|
|
2647
|
+
};
|
|
2648
|
+
static types(): {
|
|
2649
|
+
[key: string]: any;
|
|
2650
|
+
};
|
|
2651
|
+
constructor(map?: {
|
|
2652
|
+
[key: string]: any;
|
|
2653
|
+
});
|
|
2654
|
+
}
|
|
2211
2655
|
export declare class GetEmonMonitorDataResponseBody extends $tea.Model {
|
|
2212
2656
|
code?: string;
|
|
2213
2657
|
message?: string;
|
|
@@ -2228,6 +2672,7 @@ export declare class GetEmonMonitorDataResponse extends $tea.Model {
|
|
|
2228
2672
|
headers: {
|
|
2229
2673
|
[key: string]: string;
|
|
2230
2674
|
};
|
|
2675
|
+
statusCode: number;
|
|
2231
2676
|
body: GetEmonMonitorDataResponseBody;
|
|
2232
2677
|
static names(): {
|
|
2233
2678
|
[key: string]: string;
|
|
@@ -2256,6 +2701,7 @@ export declare class GetOpenStoreUsageResponse extends $tea.Model {
|
|
|
2256
2701
|
headers: {
|
|
2257
2702
|
[key: string]: string;
|
|
2258
2703
|
};
|
|
2704
|
+
statusCode: number;
|
|
2259
2705
|
body: GetOpenStoreUsageResponseBody;
|
|
2260
2706
|
static names(): {
|
|
2261
2707
|
[key: string]: string;
|
|
@@ -2296,6 +2742,7 @@ export declare class GetRegionConfigurationResponse extends $tea.Model {
|
|
|
2296
2742
|
headers: {
|
|
2297
2743
|
[key: string]: string;
|
|
2298
2744
|
};
|
|
2745
|
+
statusCode: number;
|
|
2299
2746
|
body: GetRegionConfigurationResponseBody;
|
|
2300
2747
|
static names(): {
|
|
2301
2748
|
[key: string]: string;
|
|
@@ -2338,6 +2785,7 @@ export declare class GetSuggestShrinkableNodesResponse extends $tea.Model {
|
|
|
2338
2785
|
headers: {
|
|
2339
2786
|
[key: string]: string;
|
|
2340
2787
|
};
|
|
2788
|
+
statusCode: number;
|
|
2341
2789
|
body: GetSuggestShrinkableNodesResponseBody;
|
|
2342
2790
|
static names(): {
|
|
2343
2791
|
[key: string]: string;
|
|
@@ -2379,6 +2827,7 @@ export declare class GetTransferableNodesResponse extends $tea.Model {
|
|
|
2379
2827
|
headers: {
|
|
2380
2828
|
[key: string]: string;
|
|
2381
2829
|
};
|
|
2830
|
+
statusCode: number;
|
|
2382
2831
|
body: GetTransferableNodesResponseBody;
|
|
2383
2832
|
static names(): {
|
|
2384
2833
|
[key: string]: string;
|
|
@@ -2392,6 +2841,7 @@ export declare class GetTransferableNodesResponse extends $tea.Model {
|
|
|
2392
2841
|
}
|
|
2393
2842
|
export declare class InitializeOperationRoleRequest extends $tea.Model {
|
|
2394
2843
|
clientToken?: string;
|
|
2844
|
+
body?: string;
|
|
2395
2845
|
static names(): {
|
|
2396
2846
|
[key: string]: string;
|
|
2397
2847
|
};
|
|
@@ -2419,6 +2869,7 @@ export declare class InitializeOperationRoleResponse extends $tea.Model {
|
|
|
2419
2869
|
headers: {
|
|
2420
2870
|
[key: string]: string;
|
|
2421
2871
|
};
|
|
2872
|
+
statusCode: number;
|
|
2422
2873
|
body: InitializeOperationRoleResponseBody;
|
|
2423
2874
|
static names(): {
|
|
2424
2875
|
[key: string]: string;
|
|
@@ -2432,6 +2883,7 @@ export declare class InitializeOperationRoleResponse extends $tea.Model {
|
|
|
2432
2883
|
}
|
|
2433
2884
|
export declare class InstallAckOperatorRequest extends $tea.Model {
|
|
2434
2885
|
clientToken?: string;
|
|
2886
|
+
body?: string;
|
|
2435
2887
|
static names(): {
|
|
2436
2888
|
[key: string]: string;
|
|
2437
2889
|
};
|
|
@@ -2459,6 +2911,7 @@ export declare class InstallAckOperatorResponse extends $tea.Model {
|
|
|
2459
2911
|
headers: {
|
|
2460
2912
|
[key: string]: string;
|
|
2461
2913
|
};
|
|
2914
|
+
statusCode: number;
|
|
2462
2915
|
body: InstallAckOperatorResponseBody;
|
|
2463
2916
|
static names(): {
|
|
2464
2917
|
[key: string]: string;
|
|
@@ -2471,6 +2924,7 @@ export declare class InstallAckOperatorResponse extends $tea.Model {
|
|
|
2471
2924
|
});
|
|
2472
2925
|
}
|
|
2473
2926
|
export declare class InstallKibanaSystemPluginRequest extends $tea.Model {
|
|
2927
|
+
body?: string;
|
|
2474
2928
|
clientToken?: string;
|
|
2475
2929
|
static names(): {
|
|
2476
2930
|
[key: string]: string;
|
|
@@ -2499,6 +2953,7 @@ export declare class InstallKibanaSystemPluginResponse extends $tea.Model {
|
|
|
2499
2953
|
headers: {
|
|
2500
2954
|
[key: string]: string;
|
|
2501
2955
|
};
|
|
2956
|
+
statusCode: number;
|
|
2502
2957
|
body: InstallKibanaSystemPluginResponseBody;
|
|
2503
2958
|
static names(): {
|
|
2504
2959
|
[key: string]: string;
|
|
@@ -2511,6 +2966,7 @@ export declare class InstallKibanaSystemPluginResponse extends $tea.Model {
|
|
|
2511
2966
|
});
|
|
2512
2967
|
}
|
|
2513
2968
|
export declare class InstallLogstashSystemPluginRequest extends $tea.Model {
|
|
2969
|
+
body?: string;
|
|
2514
2970
|
clientToken?: string;
|
|
2515
2971
|
static names(): {
|
|
2516
2972
|
[key: string]: string;
|
|
@@ -2539,6 +2995,7 @@ export declare class InstallLogstashSystemPluginResponse extends $tea.Model {
|
|
|
2539
2995
|
headers: {
|
|
2540
2996
|
[key: string]: string;
|
|
2541
2997
|
};
|
|
2998
|
+
statusCode: number;
|
|
2542
2999
|
body: InstallLogstashSystemPluginResponseBody;
|
|
2543
3000
|
static names(): {
|
|
2544
3001
|
[key: string]: string;
|
|
@@ -2551,6 +3008,7 @@ export declare class InstallLogstashSystemPluginResponse extends $tea.Model {
|
|
|
2551
3008
|
});
|
|
2552
3009
|
}
|
|
2553
3010
|
export declare class InstallSystemPluginRequest extends $tea.Model {
|
|
3011
|
+
body?: string;
|
|
2554
3012
|
clientToken?: string;
|
|
2555
3013
|
static names(): {
|
|
2556
3014
|
[key: string]: string;
|
|
@@ -2579,6 +3037,7 @@ export declare class InstallSystemPluginResponse extends $tea.Model {
|
|
|
2579
3037
|
headers: {
|
|
2580
3038
|
[key: string]: string;
|
|
2581
3039
|
};
|
|
3040
|
+
statusCode: number;
|
|
2582
3041
|
body: InstallSystemPluginResponseBody;
|
|
2583
3042
|
static names(): {
|
|
2584
3043
|
[key: string]: string;
|
|
@@ -2590,6 +3049,18 @@ export declare class InstallSystemPluginResponse extends $tea.Model {
|
|
|
2590
3049
|
[key: string]: any;
|
|
2591
3050
|
});
|
|
2592
3051
|
}
|
|
3052
|
+
export declare class InstallUserPluginsRequest extends $tea.Model {
|
|
3053
|
+
body?: string;
|
|
3054
|
+
static names(): {
|
|
3055
|
+
[key: string]: string;
|
|
3056
|
+
};
|
|
3057
|
+
static types(): {
|
|
3058
|
+
[key: string]: any;
|
|
3059
|
+
};
|
|
3060
|
+
constructor(map?: {
|
|
3061
|
+
[key: string]: any;
|
|
3062
|
+
});
|
|
3063
|
+
}
|
|
2593
3064
|
export declare class InstallUserPluginsResponseBody extends $tea.Model {
|
|
2594
3065
|
requestId?: string;
|
|
2595
3066
|
result?: string[];
|
|
@@ -2607,6 +3078,7 @@ export declare class InstallUserPluginsResponse extends $tea.Model {
|
|
|
2607
3078
|
headers: {
|
|
2608
3079
|
[key: string]: string;
|
|
2609
3080
|
};
|
|
3081
|
+
statusCode: number;
|
|
2610
3082
|
body: InstallUserPluginsResponseBody;
|
|
2611
3083
|
static names(): {
|
|
2612
3084
|
[key: string]: string;
|
|
@@ -2649,6 +3121,7 @@ export declare class InterruptElasticsearchTaskResponse extends $tea.Model {
|
|
|
2649
3121
|
headers: {
|
|
2650
3122
|
[key: string]: string;
|
|
2651
3123
|
};
|
|
3124
|
+
statusCode: number;
|
|
2652
3125
|
body: InterruptElasticsearchTaskResponseBody;
|
|
2653
3126
|
static names(): {
|
|
2654
3127
|
[key: string]: string;
|
|
@@ -2691,6 +3164,7 @@ export declare class InterruptLogstashTaskResponse extends $tea.Model {
|
|
|
2691
3164
|
headers: {
|
|
2692
3165
|
[key: string]: string;
|
|
2693
3166
|
};
|
|
3167
|
+
statusCode: number;
|
|
2694
3168
|
body: InterruptLogstashTaskResponseBody;
|
|
2695
3169
|
static names(): {
|
|
2696
3170
|
[key: string]: string;
|
|
@@ -2733,6 +3207,7 @@ export declare class ListAckClustersResponse extends $tea.Model {
|
|
|
2733
3207
|
headers: {
|
|
2734
3208
|
[key: string]: string;
|
|
2735
3209
|
};
|
|
3210
|
+
statusCode: number;
|
|
2736
3211
|
body: ListAckClustersResponseBody;
|
|
2737
3212
|
static names(): {
|
|
2738
3213
|
[key: string]: string;
|
|
@@ -2774,6 +3249,7 @@ export declare class ListAckNamespacesResponse extends $tea.Model {
|
|
|
2774
3249
|
headers: {
|
|
2775
3250
|
[key: string]: string;
|
|
2776
3251
|
};
|
|
3252
|
+
statusCode: number;
|
|
2777
3253
|
body: ListAckNamespacesResponseBody;
|
|
2778
3254
|
static names(): {
|
|
2779
3255
|
[key: string]: string;
|
|
@@ -2785,6 +3261,54 @@ export declare class ListAckNamespacesResponse extends $tea.Model {
|
|
|
2785
3261
|
[key: string]: any;
|
|
2786
3262
|
});
|
|
2787
3263
|
}
|
|
3264
|
+
export declare class ListActionRecordsRequest extends $tea.Model {
|
|
3265
|
+
actionNames?: string;
|
|
3266
|
+
endTime?: number;
|
|
3267
|
+
filter?: string;
|
|
3268
|
+
page?: number;
|
|
3269
|
+
requestId?: string;
|
|
3270
|
+
size?: number;
|
|
3271
|
+
startTime?: number;
|
|
3272
|
+
userId?: string;
|
|
3273
|
+
static names(): {
|
|
3274
|
+
[key: string]: string;
|
|
3275
|
+
};
|
|
3276
|
+
static types(): {
|
|
3277
|
+
[key: string]: any;
|
|
3278
|
+
};
|
|
3279
|
+
constructor(map?: {
|
|
3280
|
+
[key: string]: any;
|
|
3281
|
+
});
|
|
3282
|
+
}
|
|
3283
|
+
export declare class ListActionRecordsResponseBody extends $tea.Model {
|
|
3284
|
+
requestId?: string;
|
|
3285
|
+
result?: ListActionRecordsResponseBodyResult[];
|
|
3286
|
+
static names(): {
|
|
3287
|
+
[key: string]: string;
|
|
3288
|
+
};
|
|
3289
|
+
static types(): {
|
|
3290
|
+
[key: string]: any;
|
|
3291
|
+
};
|
|
3292
|
+
constructor(map?: {
|
|
3293
|
+
[key: string]: any;
|
|
3294
|
+
});
|
|
3295
|
+
}
|
|
3296
|
+
export declare class ListActionRecordsResponse extends $tea.Model {
|
|
3297
|
+
headers: {
|
|
3298
|
+
[key: string]: string;
|
|
3299
|
+
};
|
|
3300
|
+
statusCode: number;
|
|
3301
|
+
body: ListActionRecordsResponseBody;
|
|
3302
|
+
static names(): {
|
|
3303
|
+
[key: string]: string;
|
|
3304
|
+
};
|
|
3305
|
+
static types(): {
|
|
3306
|
+
[key: string]: any;
|
|
3307
|
+
};
|
|
3308
|
+
constructor(map?: {
|
|
3309
|
+
[key: string]: any;
|
|
3310
|
+
});
|
|
3311
|
+
}
|
|
2788
3312
|
export declare class ListAllNodeRequest extends $tea.Model {
|
|
2789
3313
|
extended?: boolean;
|
|
2790
3314
|
static names(): {
|
|
@@ -2814,6 +3338,7 @@ export declare class ListAllNodeResponse extends $tea.Model {
|
|
|
2814
3338
|
headers: {
|
|
2815
3339
|
[key: string]: string;
|
|
2816
3340
|
};
|
|
3341
|
+
statusCode: number;
|
|
2817
3342
|
body: ListAllNodeResponseBody;
|
|
2818
3343
|
static names(): {
|
|
2819
3344
|
[key: string]: string;
|
|
@@ -2854,6 +3379,7 @@ export declare class ListAlternativeSnapshotReposResponse extends $tea.Model {
|
|
|
2854
3379
|
headers: {
|
|
2855
3380
|
[key: string]: string;
|
|
2856
3381
|
};
|
|
3382
|
+
statusCode: number;
|
|
2857
3383
|
body: ListAlternativeSnapshotReposResponseBody;
|
|
2858
3384
|
static names(): {
|
|
2859
3385
|
[key: string]: string;
|
|
@@ -2899,6 +3425,7 @@ export declare class ListApmResponse extends $tea.Model {
|
|
|
2899
3425
|
headers: {
|
|
2900
3426
|
[key: string]: string;
|
|
2901
3427
|
};
|
|
3428
|
+
statusCode: number;
|
|
2902
3429
|
body: ListApmResponseBody;
|
|
2903
3430
|
static names(): {
|
|
2904
3431
|
[key: string]: string;
|
|
@@ -2927,6 +3454,7 @@ export declare class ListAvailableEsInstanceIdsResponse extends $tea.Model {
|
|
|
2927
3454
|
headers: {
|
|
2928
3455
|
[key: string]: string;
|
|
2929
3456
|
};
|
|
3457
|
+
statusCode: number;
|
|
2930
3458
|
body: ListAvailableEsInstanceIdsResponseBody;
|
|
2931
3459
|
static names(): {
|
|
2932
3460
|
[key: string]: string;
|
|
@@ -2973,6 +3501,7 @@ export declare class ListCollectorsResponse extends $tea.Model {
|
|
|
2973
3501
|
headers: {
|
|
2974
3502
|
[key: string]: string;
|
|
2975
3503
|
};
|
|
3504
|
+
statusCode: number;
|
|
2976
3505
|
body: ListCollectorsResponseBody;
|
|
2977
3506
|
static names(): {
|
|
2978
3507
|
[key: string]: string;
|
|
@@ -3016,6 +3545,7 @@ export declare class ListComponentIndicesResponse extends $tea.Model {
|
|
|
3016
3545
|
headers: {
|
|
3017
3546
|
[key: string]: string;
|
|
3018
3547
|
};
|
|
3548
|
+
statusCode: number;
|
|
3019
3549
|
body: ListComponentIndicesResponseBody;
|
|
3020
3550
|
static names(): {
|
|
3021
3551
|
[key: string]: string;
|
|
@@ -3044,6 +3574,7 @@ export declare class ListConnectedClustersResponse extends $tea.Model {
|
|
|
3044
3574
|
headers: {
|
|
3045
3575
|
[key: string]: string;
|
|
3046
3576
|
};
|
|
3577
|
+
statusCode: number;
|
|
3047
3578
|
body: ListConnectedClustersResponseBody;
|
|
3048
3579
|
static names(): {
|
|
3049
3580
|
[key: string]: string;
|
|
@@ -3086,6 +3617,7 @@ export declare class ListDataStreamsResponse extends $tea.Model {
|
|
|
3086
3617
|
headers: {
|
|
3087
3618
|
[key: string]: string;
|
|
3088
3619
|
};
|
|
3620
|
+
statusCode: number;
|
|
3089
3621
|
body: ListDataStreamsResponseBody;
|
|
3090
3622
|
static names(): {
|
|
3091
3623
|
[key: string]: string;
|
|
@@ -3114,6 +3646,7 @@ export declare class ListDataTasksResponse extends $tea.Model {
|
|
|
3114
3646
|
headers: {
|
|
3115
3647
|
[key: string]: string;
|
|
3116
3648
|
};
|
|
3649
|
+
statusCode: number;
|
|
3117
3650
|
body: ListDataTasksResponseBody;
|
|
3118
3651
|
static names(): {
|
|
3119
3652
|
[key: string]: string;
|
|
@@ -3156,6 +3689,7 @@ export declare class ListDefaultCollectorConfigurationsResponse extends $tea.Mod
|
|
|
3156
3689
|
headers: {
|
|
3157
3690
|
[key: string]: string;
|
|
3158
3691
|
};
|
|
3692
|
+
statusCode: number;
|
|
3159
3693
|
body: ListDefaultCollectorConfigurationsResponseBody;
|
|
3160
3694
|
static names(): {
|
|
3161
3695
|
[key: string]: string;
|
|
@@ -3199,6 +3733,7 @@ export declare class ListDeprecatedTemplatesResponse extends $tea.Model {
|
|
|
3199
3733
|
headers: {
|
|
3200
3734
|
[key: string]: string;
|
|
3201
3735
|
};
|
|
3736
|
+
statusCode: number;
|
|
3202
3737
|
body: ListDeprecatedTemplatesResponseBody;
|
|
3203
3738
|
static names(): {
|
|
3204
3739
|
[key: string]: string;
|
|
@@ -3239,6 +3774,7 @@ export declare class ListDiagnoseIndicesResponse extends $tea.Model {
|
|
|
3239
3774
|
headers: {
|
|
3240
3775
|
[key: string]: string;
|
|
3241
3776
|
};
|
|
3777
|
+
statusCode: number;
|
|
3242
3778
|
body: ListDiagnoseIndicesResponseBody;
|
|
3243
3779
|
static names(): {
|
|
3244
3780
|
[key: string]: string;
|
|
@@ -3286,6 +3822,7 @@ export declare class ListDiagnoseReportResponse extends $tea.Model {
|
|
|
3286
3822
|
headers: {
|
|
3287
3823
|
[key: string]: string;
|
|
3288
3824
|
};
|
|
3825
|
+
statusCode: number;
|
|
3289
3826
|
body: ListDiagnoseReportResponseBody;
|
|
3290
3827
|
static names(): {
|
|
3291
3828
|
[key: string]: string;
|
|
@@ -3332,6 +3869,7 @@ export declare class ListDiagnoseReportIdsResponse extends $tea.Model {
|
|
|
3332
3869
|
headers: {
|
|
3333
3870
|
[key: string]: string;
|
|
3334
3871
|
};
|
|
3872
|
+
statusCode: number;
|
|
3335
3873
|
body: ListDiagnoseReportIdsResponseBody;
|
|
3336
3874
|
static names(): {
|
|
3337
3875
|
[key: string]: string;
|
|
@@ -3374,6 +3912,7 @@ export declare class ListDictInformationResponse extends $tea.Model {
|
|
|
3374
3912
|
headers: {
|
|
3375
3913
|
[key: string]: string;
|
|
3376
3914
|
};
|
|
3915
|
+
statusCode: number;
|
|
3377
3916
|
body: ListDictInformationResponseBody;
|
|
3378
3917
|
static names(): {
|
|
3379
3918
|
[key: string]: string;
|
|
@@ -3416,6 +3955,7 @@ export declare class ListDictsResponse extends $tea.Model {
|
|
|
3416
3955
|
headers: {
|
|
3417
3956
|
[key: string]: string;
|
|
3418
3957
|
};
|
|
3958
|
+
statusCode: number;
|
|
3419
3959
|
body: ListDictsResponseBody;
|
|
3420
3960
|
static names(): {
|
|
3421
3961
|
[key: string]: string;
|
|
@@ -3462,6 +4002,7 @@ export declare class ListEcsInstancesResponse extends $tea.Model {
|
|
|
3462
4002
|
headers: {
|
|
3463
4003
|
[key: string]: string;
|
|
3464
4004
|
};
|
|
4005
|
+
statusCode: number;
|
|
3465
4006
|
body: ListEcsInstancesResponseBody;
|
|
3466
4007
|
static names(): {
|
|
3467
4008
|
[key: string]: string;
|
|
@@ -3490,6 +4031,7 @@ export declare class ListExtendfilesResponse extends $tea.Model {
|
|
|
3490
4031
|
headers: {
|
|
3491
4032
|
[key: string]: string;
|
|
3492
4033
|
};
|
|
4034
|
+
statusCode: number;
|
|
3493
4035
|
body: ListExtendfilesResponseBody;
|
|
3494
4036
|
static names(): {
|
|
3495
4037
|
[key: string]: string;
|
|
@@ -3530,6 +4072,7 @@ export declare class ListILMPoliciesResponse extends $tea.Model {
|
|
|
3530
4072
|
headers: {
|
|
3531
4073
|
[key: string]: string;
|
|
3532
4074
|
};
|
|
4075
|
+
statusCode: number;
|
|
3533
4076
|
body: ListILMPoliciesResponseBody;
|
|
3534
4077
|
static names(): {
|
|
3535
4078
|
[key: string]: string;
|
|
@@ -3572,6 +4115,7 @@ export declare class ListIndexTemplatesResponse extends $tea.Model {
|
|
|
3572
4115
|
headers: {
|
|
3573
4116
|
[key: string]: string;
|
|
3574
4117
|
};
|
|
4118
|
+
statusCode: number;
|
|
3575
4119
|
body: ListIndexTemplatesResponseBody;
|
|
3576
4120
|
static names(): {
|
|
3577
4121
|
[key: string]: string;
|
|
@@ -3623,6 +4167,7 @@ export declare class ListInstanceResponse extends $tea.Model {
|
|
|
3623
4167
|
headers: {
|
|
3624
4168
|
[key: string]: string;
|
|
3625
4169
|
};
|
|
4170
|
+
statusCode: number;
|
|
3626
4171
|
body: ListInstanceResponseBody;
|
|
3627
4172
|
static names(): {
|
|
3628
4173
|
[key: string]: string;
|
|
@@ -3635,17 +4180,43 @@ export declare class ListInstanceResponse extends $tea.Model {
|
|
|
3635
4180
|
});
|
|
3636
4181
|
}
|
|
3637
4182
|
export declare class ListInstanceHistoryEventsRequest extends $tea.Model {
|
|
3638
|
-
body?: ListInstanceHistoryEventsRequestBody[];
|
|
3639
4183
|
eventCreateEndTime?: string;
|
|
3640
4184
|
eventCreateStartTime?: string;
|
|
4185
|
+
eventCycleStatus?: string[];
|
|
3641
4186
|
eventExecuteEndTime?: string;
|
|
3642
4187
|
eventExecuteStartTime?: string;
|
|
3643
4188
|
eventFinashEndTime?: string;
|
|
3644
4189
|
eventFinashStartTime?: string;
|
|
3645
|
-
eventLevel?: string;
|
|
3646
|
-
eventType?: string;
|
|
4190
|
+
eventLevel?: string[];
|
|
4191
|
+
eventType?: string[];
|
|
4192
|
+
instanceId?: string;
|
|
4193
|
+
nodeIP?: string;
|
|
4194
|
+
page?: number;
|
|
4195
|
+
size?: number;
|
|
4196
|
+
static names(): {
|
|
4197
|
+
[key: string]: string;
|
|
4198
|
+
};
|
|
4199
|
+
static types(): {
|
|
4200
|
+
[key: string]: any;
|
|
4201
|
+
};
|
|
4202
|
+
constructor(map?: {
|
|
4203
|
+
[key: string]: any;
|
|
4204
|
+
});
|
|
4205
|
+
}
|
|
4206
|
+
export declare class ListInstanceHistoryEventsShrinkRequest extends $tea.Model {
|
|
4207
|
+
eventCreateEndTime?: string;
|
|
4208
|
+
eventCreateStartTime?: string;
|
|
4209
|
+
eventCycleStatusShrink?: string;
|
|
4210
|
+
eventExecuteEndTime?: string;
|
|
4211
|
+
eventExecuteStartTime?: string;
|
|
4212
|
+
eventFinashEndTime?: string;
|
|
4213
|
+
eventFinashStartTime?: string;
|
|
4214
|
+
eventLevelShrink?: string;
|
|
4215
|
+
eventTypeShrink?: string;
|
|
3647
4216
|
instanceId?: string;
|
|
3648
4217
|
nodeIP?: string;
|
|
4218
|
+
page?: number;
|
|
4219
|
+
size?: number;
|
|
3649
4220
|
static names(): {
|
|
3650
4221
|
[key: string]: string;
|
|
3651
4222
|
};
|
|
@@ -3674,6 +4245,7 @@ export declare class ListInstanceHistoryEventsResponse extends $tea.Model {
|
|
|
3674
4245
|
headers: {
|
|
3675
4246
|
[key: string]: string;
|
|
3676
4247
|
};
|
|
4248
|
+
statusCode: number;
|
|
3677
4249
|
body: ListInstanceHistoryEventsResponseBody;
|
|
3678
4250
|
static names(): {
|
|
3679
4251
|
[key: string]: string;
|
|
@@ -3720,6 +4292,7 @@ export declare class ListInstanceIndicesResponse extends $tea.Model {
|
|
|
3720
4292
|
headers: {
|
|
3721
4293
|
[key: string]: string;
|
|
3722
4294
|
};
|
|
4295
|
+
statusCode: number;
|
|
3723
4296
|
body: ListInstanceIndicesResponseBody;
|
|
3724
4297
|
static names(): {
|
|
3725
4298
|
[key: string]: string;
|
|
@@ -3762,6 +4335,7 @@ export declare class ListKibanaPluginsResponse extends $tea.Model {
|
|
|
3762
4335
|
headers: {
|
|
3763
4336
|
[key: string]: string;
|
|
3764
4337
|
};
|
|
4338
|
+
statusCode: number;
|
|
3765
4339
|
body: ListKibanaPluginsResponseBody;
|
|
3766
4340
|
static names(): {
|
|
3767
4341
|
[key: string]: string;
|
|
@@ -3780,6 +4354,7 @@ export declare class ListLogstashRequest extends $tea.Model {
|
|
|
3780
4354
|
page?: number;
|
|
3781
4355
|
resourceGroupId?: string;
|
|
3782
4356
|
size?: number;
|
|
4357
|
+
tags?: string;
|
|
3783
4358
|
version?: string;
|
|
3784
4359
|
static names(): {
|
|
3785
4360
|
[key: string]: string;
|
|
@@ -3794,7 +4369,7 @@ export declare class ListLogstashRequest extends $tea.Model {
|
|
|
3794
4369
|
export declare class ListLogstashResponseBody extends $tea.Model {
|
|
3795
4370
|
headers?: ListLogstashResponseBodyHeaders;
|
|
3796
4371
|
requestId?: string;
|
|
3797
|
-
result?:
|
|
4372
|
+
result?: ListLogstashResponseBodyResult[];
|
|
3798
4373
|
static names(): {
|
|
3799
4374
|
[key: string]: string;
|
|
3800
4375
|
};
|
|
@@ -3809,6 +4384,7 @@ export declare class ListLogstashResponse extends $tea.Model {
|
|
|
3809
4384
|
headers: {
|
|
3810
4385
|
[key: string]: string;
|
|
3811
4386
|
};
|
|
4387
|
+
statusCode: number;
|
|
3812
4388
|
body: ListLogstashResponseBody;
|
|
3813
4389
|
static names(): {
|
|
3814
4390
|
[key: string]: string;
|
|
@@ -3854,6 +4430,7 @@ export declare class ListLogstashLogResponse extends $tea.Model {
|
|
|
3854
4430
|
headers: {
|
|
3855
4431
|
[key: string]: string;
|
|
3856
4432
|
};
|
|
4433
|
+
statusCode: number;
|
|
3857
4434
|
body: ListLogstashLogResponseBody;
|
|
3858
4435
|
static names(): {
|
|
3859
4436
|
[key: string]: string;
|
|
@@ -3897,6 +4474,7 @@ export declare class ListLogstashPluginsResponse extends $tea.Model {
|
|
|
3897
4474
|
headers: {
|
|
3898
4475
|
[key: string]: string;
|
|
3899
4476
|
};
|
|
4477
|
+
statusCode: number;
|
|
3900
4478
|
body: ListLogstashPluginsResponseBody;
|
|
3901
4479
|
static names(): {
|
|
3902
4480
|
[key: string]: string;
|
|
@@ -3942,6 +4520,7 @@ export declare class ListNodesResponse extends $tea.Model {
|
|
|
3942
4520
|
headers: {
|
|
3943
4521
|
[key: string]: string;
|
|
3944
4522
|
};
|
|
4523
|
+
statusCode: number;
|
|
3945
4524
|
body: ListNodesResponseBody;
|
|
3946
4525
|
static names(): {
|
|
3947
4526
|
[key: string]: string;
|
|
@@ -3985,6 +4564,7 @@ export declare class ListPipelineResponse extends $tea.Model {
|
|
|
3985
4564
|
headers: {
|
|
3986
4565
|
[key: string]: string;
|
|
3987
4566
|
};
|
|
4567
|
+
statusCode: number;
|
|
3988
4568
|
body: ListPipelineResponseBody;
|
|
3989
4569
|
static names(): {
|
|
3990
4570
|
[key: string]: string;
|
|
@@ -3996,6 +4576,18 @@ export declare class ListPipelineResponse extends $tea.Model {
|
|
|
3996
4576
|
[key: string]: any;
|
|
3997
4577
|
});
|
|
3998
4578
|
}
|
|
4579
|
+
export declare class ListPipelineIdsRequest extends $tea.Model {
|
|
4580
|
+
body?: string;
|
|
4581
|
+
static names(): {
|
|
4582
|
+
[key: string]: string;
|
|
4583
|
+
};
|
|
4584
|
+
static types(): {
|
|
4585
|
+
[key: string]: any;
|
|
4586
|
+
};
|
|
4587
|
+
constructor(map?: {
|
|
4588
|
+
[key: string]: any;
|
|
4589
|
+
});
|
|
4590
|
+
}
|
|
3999
4591
|
export declare class ListPipelineIdsResponseBody extends $tea.Model {
|
|
4000
4592
|
requestId?: string;
|
|
4001
4593
|
result?: ListPipelineIdsResponseBodyResult[];
|
|
@@ -4013,6 +4605,7 @@ export declare class ListPipelineIdsResponse extends $tea.Model {
|
|
|
4013
4605
|
headers: {
|
|
4014
4606
|
[key: string]: string;
|
|
4015
4607
|
};
|
|
4608
|
+
statusCode: number;
|
|
4016
4609
|
body: ListPipelineIdsResponseBody;
|
|
4017
4610
|
static names(): {
|
|
4018
4611
|
[key: string]: string;
|
|
@@ -4057,6 +4650,7 @@ export declare class ListPluginsResponse extends $tea.Model {
|
|
|
4057
4650
|
headers: {
|
|
4058
4651
|
[key: string]: string;
|
|
4059
4652
|
};
|
|
4653
|
+
statusCode: number;
|
|
4060
4654
|
body: ListPluginsResponseBody;
|
|
4061
4655
|
static names(): {
|
|
4062
4656
|
[key: string]: string;
|
|
@@ -4103,6 +4697,7 @@ export declare class ListSearchLogResponse extends $tea.Model {
|
|
|
4103
4697
|
headers: {
|
|
4104
4698
|
[key: string]: string;
|
|
4105
4699
|
};
|
|
4700
|
+
statusCode: number;
|
|
4106
4701
|
body: ListSearchLogResponseBody;
|
|
4107
4702
|
static names(): {
|
|
4108
4703
|
[key: string]: string;
|
|
@@ -4143,6 +4738,7 @@ export declare class ListShardRecoveriesResponse extends $tea.Model {
|
|
|
4143
4738
|
headers: {
|
|
4144
4739
|
[key: string]: string;
|
|
4145
4740
|
};
|
|
4741
|
+
statusCode: number;
|
|
4146
4742
|
body: ListShardRecoveriesResponseBody;
|
|
4147
4743
|
static names(): {
|
|
4148
4744
|
[key: string]: string;
|
|
@@ -4171,6 +4767,7 @@ export declare class ListSnapshotReposByInstanceIdResponse extends $tea.Model {
|
|
|
4171
4767
|
headers: {
|
|
4172
4768
|
[key: string]: string;
|
|
4173
4769
|
};
|
|
4770
|
+
statusCode: number;
|
|
4174
4771
|
body: ListSnapshotReposByInstanceIdResponseBody;
|
|
4175
4772
|
static names(): {
|
|
4176
4773
|
[key: string]: string;
|
|
@@ -4218,6 +4815,7 @@ export declare class ListTagResourcesResponse extends $tea.Model {
|
|
|
4218
4815
|
headers: {
|
|
4219
4816
|
[key: string]: string;
|
|
4220
4817
|
};
|
|
4818
|
+
statusCode: number;
|
|
4221
4819
|
body: ListTagResourcesResponseBody;
|
|
4222
4820
|
static names(): {
|
|
4223
4821
|
[key: string]: string;
|
|
@@ -4259,6 +4857,7 @@ export declare class ListTagsResponse extends $tea.Model {
|
|
|
4259
4857
|
headers: {
|
|
4260
4858
|
[key: string]: string;
|
|
4261
4859
|
};
|
|
4860
|
+
statusCode: number;
|
|
4262
4861
|
body: ListTagsResponseBody;
|
|
4263
4862
|
static names(): {
|
|
4264
4863
|
[key: string]: string;
|
|
@@ -4300,6 +4899,7 @@ export declare class ListVpcEndpointsResponse extends $tea.Model {
|
|
|
4300
4899
|
headers: {
|
|
4301
4900
|
[key: string]: string;
|
|
4302
4901
|
};
|
|
4902
|
+
statusCode: number;
|
|
4303
4903
|
body: ListVpcEndpointsResponseBody;
|
|
4304
4904
|
static names(): {
|
|
4305
4905
|
[key: string]: string;
|
|
@@ -4312,6 +4912,7 @@ export declare class ListVpcEndpointsResponse extends $tea.Model {
|
|
|
4312
4912
|
});
|
|
4313
4913
|
}
|
|
4314
4914
|
export declare class MigrateToOtherZoneRequest extends $tea.Model {
|
|
4915
|
+
body?: string;
|
|
4315
4916
|
dryRun?: boolean;
|
|
4316
4917
|
static names(): {
|
|
4317
4918
|
[key: string]: string;
|
|
@@ -4340,6 +4941,7 @@ export declare class MigrateToOtherZoneResponse extends $tea.Model {
|
|
|
4340
4941
|
headers: {
|
|
4341
4942
|
[key: string]: string;
|
|
4342
4943
|
};
|
|
4944
|
+
statusCode: number;
|
|
4343
4945
|
body: MigrateToOtherZoneResponseBody;
|
|
4344
4946
|
static names(): {
|
|
4345
4947
|
[key: string]: string;
|
|
@@ -4353,6 +4955,7 @@ export declare class MigrateToOtherZoneResponse extends $tea.Model {
|
|
|
4353
4955
|
}
|
|
4354
4956
|
export declare class ModifyDeployMachineRequest extends $tea.Model {
|
|
4355
4957
|
clientToken?: string;
|
|
4958
|
+
body?: string;
|
|
4356
4959
|
static names(): {
|
|
4357
4960
|
[key: string]: string;
|
|
4358
4961
|
};
|
|
@@ -4380,6 +4983,7 @@ export declare class ModifyDeployMachineResponse extends $tea.Model {
|
|
|
4380
4983
|
headers: {
|
|
4381
4984
|
[key: string]: string;
|
|
4382
4985
|
};
|
|
4986
|
+
statusCode: number;
|
|
4383
4987
|
body: ModifyDeployMachineResponseBody;
|
|
4384
4988
|
static names(): {
|
|
4385
4989
|
[key: string]: string;
|
|
@@ -4391,6 +4995,18 @@ export declare class ModifyDeployMachineResponse extends $tea.Model {
|
|
|
4391
4995
|
[key: string]: any;
|
|
4392
4996
|
});
|
|
4393
4997
|
}
|
|
4998
|
+
export declare class ModifyElastictaskRequest extends $tea.Model {
|
|
4999
|
+
body?: string;
|
|
5000
|
+
static names(): {
|
|
5001
|
+
[key: string]: string;
|
|
5002
|
+
};
|
|
5003
|
+
static types(): {
|
|
5004
|
+
[key: string]: any;
|
|
5005
|
+
};
|
|
5006
|
+
constructor(map?: {
|
|
5007
|
+
[key: string]: any;
|
|
5008
|
+
});
|
|
5009
|
+
}
|
|
4394
5010
|
export declare class ModifyElastictaskResponseBody extends $tea.Model {
|
|
4395
5011
|
requestId?: string;
|
|
4396
5012
|
result?: ModifyElastictaskResponseBodyResult;
|
|
@@ -4408,6 +5024,7 @@ export declare class ModifyElastictaskResponse extends $tea.Model {
|
|
|
4408
5024
|
headers: {
|
|
4409
5025
|
[key: string]: string;
|
|
4410
5026
|
};
|
|
5027
|
+
statusCode: number;
|
|
4411
5028
|
body: ModifyElastictaskResponseBody;
|
|
4412
5029
|
static names(): {
|
|
4413
5030
|
[key: string]: string;
|
|
@@ -4421,6 +5038,7 @@ export declare class ModifyElastictaskResponse extends $tea.Model {
|
|
|
4421
5038
|
}
|
|
4422
5039
|
export declare class ModifyInstanceMaintainTimeRequest extends $tea.Model {
|
|
4423
5040
|
clientToken?: string;
|
|
5041
|
+
body?: string;
|
|
4424
5042
|
static names(): {
|
|
4425
5043
|
[key: string]: string;
|
|
4426
5044
|
};
|
|
@@ -4448,6 +5066,7 @@ export declare class ModifyInstanceMaintainTimeResponse extends $tea.Model {
|
|
|
4448
5066
|
headers: {
|
|
4449
5067
|
[key: string]: string;
|
|
4450
5068
|
};
|
|
5069
|
+
statusCode: number;
|
|
4451
5070
|
body: ModifyInstanceMaintainTimeResponseBody;
|
|
4452
5071
|
static names(): {
|
|
4453
5072
|
[key: string]: string;
|
|
@@ -4493,6 +5112,7 @@ export declare class ModifyWhiteIpsResponse extends $tea.Model {
|
|
|
4493
5112
|
headers: {
|
|
4494
5113
|
[key: string]: string;
|
|
4495
5114
|
};
|
|
5115
|
+
statusCode: number;
|
|
4496
5116
|
body: ModifyWhiteIpsResponseBody;
|
|
4497
5117
|
static names(): {
|
|
4498
5118
|
[key: string]: string;
|
|
@@ -4505,7 +5125,7 @@ export declare class ModifyWhiteIpsResponse extends $tea.Model {
|
|
|
4505
5125
|
});
|
|
4506
5126
|
}
|
|
4507
5127
|
export declare class MoveResourceGroupRequest extends $tea.Model {
|
|
4508
|
-
|
|
5128
|
+
body?: string;
|
|
4509
5129
|
clientToken?: string;
|
|
4510
5130
|
static names(): {
|
|
4511
5131
|
[key: string]: string;
|
|
@@ -4534,6 +5154,7 @@ export declare class MoveResourceGroupResponse extends $tea.Model {
|
|
|
4534
5154
|
headers: {
|
|
4535
5155
|
[key: string]: string;
|
|
4536
5156
|
};
|
|
5157
|
+
statusCode: number;
|
|
4537
5158
|
body: MoveResourceGroupResponseBody;
|
|
4538
5159
|
static names(): {
|
|
4539
5160
|
[key: string]: string;
|
|
@@ -4575,6 +5196,7 @@ export declare class OpenDiagnosisResponse extends $tea.Model {
|
|
|
4575
5196
|
headers: {
|
|
4576
5197
|
[key: string]: string;
|
|
4577
5198
|
};
|
|
5199
|
+
statusCode: number;
|
|
4578
5200
|
body: OpenDiagnosisResponseBody;
|
|
4579
5201
|
static names(): {
|
|
4580
5202
|
[key: string]: string;
|
|
@@ -4615,6 +5237,7 @@ export declare class OpenHttpsResponse extends $tea.Model {
|
|
|
4615
5237
|
headers: {
|
|
4616
5238
|
[key: string]: string;
|
|
4617
5239
|
};
|
|
5240
|
+
statusCode: number;
|
|
4618
5241
|
body: OpenHttpsResponseBody;
|
|
4619
5242
|
static names(): {
|
|
4620
5243
|
[key: string]: string;
|
|
@@ -4626,6 +5249,18 @@ export declare class OpenHttpsResponse extends $tea.Model {
|
|
|
4626
5249
|
[key: string]: any;
|
|
4627
5250
|
});
|
|
4628
5251
|
}
|
|
5252
|
+
export declare class PostEmonTryAlarmRuleRequest extends $tea.Model {
|
|
5253
|
+
body?: string;
|
|
5254
|
+
static names(): {
|
|
5255
|
+
[key: string]: string;
|
|
5256
|
+
};
|
|
5257
|
+
static types(): {
|
|
5258
|
+
[key: string]: any;
|
|
5259
|
+
};
|
|
5260
|
+
constructor(map?: {
|
|
5261
|
+
[key: string]: any;
|
|
5262
|
+
});
|
|
5263
|
+
}
|
|
4629
5264
|
export declare class PostEmonTryAlarmRuleResponseBody extends $tea.Model {
|
|
4630
5265
|
code?: string;
|
|
4631
5266
|
message?: string;
|
|
@@ -4645,6 +5280,7 @@ export declare class PostEmonTryAlarmRuleResponse extends $tea.Model {
|
|
|
4645
5280
|
headers: {
|
|
4646
5281
|
[key: string]: string;
|
|
4647
5282
|
};
|
|
5283
|
+
statusCode: number;
|
|
4648
5284
|
body: PostEmonTryAlarmRuleResponseBody;
|
|
4649
5285
|
static names(): {
|
|
4650
5286
|
[key: string]: string;
|
|
@@ -4685,6 +5321,7 @@ export declare class RecommendTemplatesResponse extends $tea.Model {
|
|
|
4685
5321
|
headers: {
|
|
4686
5322
|
[key: string]: string;
|
|
4687
5323
|
};
|
|
5324
|
+
statusCode: number;
|
|
4688
5325
|
body: RecommendTemplatesResponseBody;
|
|
4689
5326
|
static names(): {
|
|
4690
5327
|
[key: string]: string;
|
|
@@ -4698,6 +5335,7 @@ export declare class RecommendTemplatesResponse extends $tea.Model {
|
|
|
4698
5335
|
}
|
|
4699
5336
|
export declare class ReinstallCollectorRequest extends $tea.Model {
|
|
4700
5337
|
clientToken?: string;
|
|
5338
|
+
body?: string;
|
|
4701
5339
|
static names(): {
|
|
4702
5340
|
[key: string]: string;
|
|
4703
5341
|
};
|
|
@@ -4725,6 +5363,7 @@ export declare class ReinstallCollectorResponse extends $tea.Model {
|
|
|
4725
5363
|
headers: {
|
|
4726
5364
|
[key: string]: string;
|
|
4727
5365
|
};
|
|
5366
|
+
statusCode: number;
|
|
4728
5367
|
body: ReinstallCollectorResponseBody;
|
|
4729
5368
|
static names(): {
|
|
4730
5369
|
[key: string]: string;
|
|
@@ -4753,6 +5392,7 @@ export declare class RemoveApmResponse extends $tea.Model {
|
|
|
4753
5392
|
headers: {
|
|
4754
5393
|
[key: string]: string;
|
|
4755
5394
|
};
|
|
5395
|
+
statusCode: number;
|
|
4756
5396
|
body: RemoveApmResponseBody;
|
|
4757
5397
|
static names(): {
|
|
4758
5398
|
[key: string]: string;
|
|
@@ -4765,6 +5405,7 @@ export declare class RemoveApmResponse extends $tea.Model {
|
|
|
4765
5405
|
});
|
|
4766
5406
|
}
|
|
4767
5407
|
export declare class RenewInstanceRequest extends $tea.Model {
|
|
5408
|
+
body?: string;
|
|
4768
5409
|
clientToken?: string;
|
|
4769
5410
|
static names(): {
|
|
4770
5411
|
[key: string]: string;
|
|
@@ -4793,6 +5434,7 @@ export declare class RenewInstanceResponse extends $tea.Model {
|
|
|
4793
5434
|
headers: {
|
|
4794
5435
|
[key: string]: string;
|
|
4795
5436
|
};
|
|
5437
|
+
statusCode: number;
|
|
4796
5438
|
body: RenewInstanceResponseBody;
|
|
4797
5439
|
static names(): {
|
|
4798
5440
|
[key: string]: string;
|
|
@@ -4805,6 +5447,7 @@ export declare class RenewInstanceResponse extends $tea.Model {
|
|
|
4805
5447
|
});
|
|
4806
5448
|
}
|
|
4807
5449
|
export declare class RenewLogstashRequest extends $tea.Model {
|
|
5450
|
+
body?: string;
|
|
4808
5451
|
clientToken?: string;
|
|
4809
5452
|
static names(): {
|
|
4810
5453
|
[key: string]: string;
|
|
@@ -4833,6 +5476,7 @@ export declare class RenewLogstashResponse extends $tea.Model {
|
|
|
4833
5476
|
headers: {
|
|
4834
5477
|
[key: string]: string;
|
|
4835
5478
|
};
|
|
5479
|
+
statusCode: number;
|
|
4836
5480
|
body: RenewLogstashResponseBody;
|
|
4837
5481
|
static names(): {
|
|
4838
5482
|
[key: string]: string;
|
|
@@ -4873,6 +5517,7 @@ export declare class RestartCollectorResponse extends $tea.Model {
|
|
|
4873
5517
|
headers: {
|
|
4874
5518
|
[key: string]: string;
|
|
4875
5519
|
};
|
|
5520
|
+
statusCode: number;
|
|
4876
5521
|
body: RestartCollectorResponseBody;
|
|
4877
5522
|
static names(): {
|
|
4878
5523
|
[key: string]: string;
|
|
@@ -4885,6 +5530,7 @@ export declare class RestartCollectorResponse extends $tea.Model {
|
|
|
4885
5530
|
});
|
|
4886
5531
|
}
|
|
4887
5532
|
export declare class RestartInstanceRequest extends $tea.Model {
|
|
5533
|
+
body?: string;
|
|
4888
5534
|
clientToken?: string;
|
|
4889
5535
|
force?: boolean;
|
|
4890
5536
|
static names(): {
|
|
@@ -4914,6 +5560,7 @@ export declare class RestartInstanceResponse extends $tea.Model {
|
|
|
4914
5560
|
headers: {
|
|
4915
5561
|
[key: string]: string;
|
|
4916
5562
|
};
|
|
5563
|
+
statusCode: number;
|
|
4917
5564
|
body: RestartInstanceResponseBody;
|
|
4918
5565
|
static names(): {
|
|
4919
5566
|
[key: string]: string;
|
|
@@ -4926,6 +5573,11 @@ export declare class RestartInstanceResponse extends $tea.Model {
|
|
|
4926
5573
|
});
|
|
4927
5574
|
}
|
|
4928
5575
|
export declare class RestartLogstashRequest extends $tea.Model {
|
|
5576
|
+
batchCount?: number;
|
|
5577
|
+
blueGreenDep?: boolean;
|
|
5578
|
+
nodeTypes?: string[];
|
|
5579
|
+
nodes?: string[];
|
|
5580
|
+
restartType?: string;
|
|
4929
5581
|
clientToken?: string;
|
|
4930
5582
|
force?: boolean;
|
|
4931
5583
|
static names(): {
|
|
@@ -4940,6 +5592,7 @@ export declare class RestartLogstashRequest extends $tea.Model {
|
|
|
4940
5592
|
}
|
|
4941
5593
|
export declare class RestartLogstashResponseBody extends $tea.Model {
|
|
4942
5594
|
requestId?: string;
|
|
5595
|
+
result?: Logstash;
|
|
4943
5596
|
static names(): {
|
|
4944
5597
|
[key: string]: string;
|
|
4945
5598
|
};
|
|
@@ -4954,6 +5607,7 @@ export declare class RestartLogstashResponse extends $tea.Model {
|
|
|
4954
5607
|
headers: {
|
|
4955
5608
|
[key: string]: string;
|
|
4956
5609
|
};
|
|
5610
|
+
statusCode: number;
|
|
4957
5611
|
body: RestartLogstashResponseBody;
|
|
4958
5612
|
static names(): {
|
|
4959
5613
|
[key: string]: string;
|
|
@@ -4994,6 +5648,7 @@ export declare class ResumeElasticsearchTaskResponse extends $tea.Model {
|
|
|
4994
5648
|
headers: {
|
|
4995
5649
|
[key: string]: string;
|
|
4996
5650
|
};
|
|
5651
|
+
statusCode: number;
|
|
4997
5652
|
body: ResumeElasticsearchTaskResponseBody;
|
|
4998
5653
|
static names(): {
|
|
4999
5654
|
[key: string]: string;
|
|
@@ -5036,6 +5691,7 @@ export declare class ResumeLogstashTaskResponse extends $tea.Model {
|
|
|
5036
5691
|
headers: {
|
|
5037
5692
|
[key: string]: string;
|
|
5038
5693
|
};
|
|
5694
|
+
statusCode: number;
|
|
5039
5695
|
body: ResumeLogstashTaskResponseBody;
|
|
5040
5696
|
static names(): {
|
|
5041
5697
|
[key: string]: string;
|
|
@@ -5076,6 +5732,7 @@ export declare class RolloverDataStreamResponse extends $tea.Model {
|
|
|
5076
5732
|
headers: {
|
|
5077
5733
|
[key: string]: string;
|
|
5078
5734
|
};
|
|
5735
|
+
statusCode: number;
|
|
5079
5736
|
body: RolloverDataStreamResponseBody;
|
|
5080
5737
|
static names(): {
|
|
5081
5738
|
[key: string]: string;
|
|
@@ -5089,6 +5746,7 @@ export declare class RolloverDataStreamResponse extends $tea.Model {
|
|
|
5089
5746
|
}
|
|
5090
5747
|
export declare class RunPipelinesRequest extends $tea.Model {
|
|
5091
5748
|
clientToken?: string;
|
|
5749
|
+
body?: string;
|
|
5092
5750
|
static names(): {
|
|
5093
5751
|
[key: string]: string;
|
|
5094
5752
|
};
|
|
@@ -5116,6 +5774,7 @@ export declare class RunPipelinesResponse extends $tea.Model {
|
|
|
5116
5774
|
headers: {
|
|
5117
5775
|
[key: string]: string;
|
|
5118
5776
|
};
|
|
5777
|
+
statusCode: number;
|
|
5119
5778
|
body: RunPipelinesResponseBody;
|
|
5120
5779
|
static names(): {
|
|
5121
5780
|
[key: string]: string;
|
|
@@ -5130,6 +5789,7 @@ export declare class RunPipelinesResponse extends $tea.Model {
|
|
|
5130
5789
|
export declare class ShrinkNodeRequest extends $tea.Model {
|
|
5131
5790
|
body?: ShrinkNodeRequestBody[];
|
|
5132
5791
|
clientToken?: string;
|
|
5792
|
+
count?: number;
|
|
5133
5793
|
ignoreStatus?: boolean;
|
|
5134
5794
|
nodeType?: string;
|
|
5135
5795
|
static names(): {
|
|
@@ -5159,6 +5819,7 @@ export declare class ShrinkNodeResponse extends $tea.Model {
|
|
|
5159
5819
|
headers: {
|
|
5160
5820
|
[key: string]: string;
|
|
5161
5821
|
};
|
|
5822
|
+
statusCode: number;
|
|
5162
5823
|
body: ShrinkNodeResponseBody;
|
|
5163
5824
|
static names(): {
|
|
5164
5825
|
[key: string]: string;
|
|
@@ -5187,6 +5848,7 @@ export declare class StartApmResponse extends $tea.Model {
|
|
|
5187
5848
|
headers: {
|
|
5188
5849
|
[key: string]: string;
|
|
5189
5850
|
};
|
|
5851
|
+
statusCode: number;
|
|
5190
5852
|
body: StartApmResponseBody;
|
|
5191
5853
|
static names(): {
|
|
5192
5854
|
[key: string]: string;
|
|
@@ -5227,6 +5889,7 @@ export declare class StartCollectorResponse extends $tea.Model {
|
|
|
5227
5889
|
headers: {
|
|
5228
5890
|
[key: string]: string;
|
|
5229
5891
|
};
|
|
5892
|
+
statusCode: number;
|
|
5230
5893
|
body: StartCollectorResponseBody;
|
|
5231
5894
|
static names(): {
|
|
5232
5895
|
[key: string]: string;
|
|
@@ -5255,6 +5918,7 @@ export declare class StopApmResponse extends $tea.Model {
|
|
|
5255
5918
|
headers: {
|
|
5256
5919
|
[key: string]: string;
|
|
5257
5920
|
};
|
|
5921
|
+
statusCode: number;
|
|
5258
5922
|
body: StopApmResponseBody;
|
|
5259
5923
|
static names(): {
|
|
5260
5924
|
[key: string]: string;
|
|
@@ -5295,6 +5959,7 @@ export declare class StopCollectorResponse extends $tea.Model {
|
|
|
5295
5959
|
headers: {
|
|
5296
5960
|
[key: string]: string;
|
|
5297
5961
|
};
|
|
5962
|
+
statusCode: number;
|
|
5298
5963
|
body: StopCollectorResponseBody;
|
|
5299
5964
|
static names(): {
|
|
5300
5965
|
[key: string]: string;
|
|
@@ -5308,6 +5973,7 @@ export declare class StopCollectorResponse extends $tea.Model {
|
|
|
5308
5973
|
}
|
|
5309
5974
|
export declare class StopPipelinesRequest extends $tea.Model {
|
|
5310
5975
|
clientToken?: string;
|
|
5976
|
+
body?: string;
|
|
5311
5977
|
static names(): {
|
|
5312
5978
|
[key: string]: string;
|
|
5313
5979
|
};
|
|
@@ -5335,6 +6001,7 @@ export declare class StopPipelinesResponse extends $tea.Model {
|
|
|
5335
6001
|
headers: {
|
|
5336
6002
|
[key: string]: string;
|
|
5337
6003
|
};
|
|
6004
|
+
statusCode: number;
|
|
5338
6005
|
body: StopPipelinesResponseBody;
|
|
5339
6006
|
static names(): {
|
|
5340
6007
|
[key: string]: string;
|
|
@@ -5362,6 +6029,7 @@ export declare class TagResourcesRequest extends $tea.Model {
|
|
|
5362
6029
|
}
|
|
5363
6030
|
export declare class TagResourcesResponseBody extends $tea.Model {
|
|
5364
6031
|
requestId?: string;
|
|
6032
|
+
result?: boolean;
|
|
5365
6033
|
static names(): {
|
|
5366
6034
|
[key: string]: string;
|
|
5367
6035
|
};
|
|
@@ -5376,6 +6044,7 @@ export declare class TagResourcesResponse extends $tea.Model {
|
|
|
5376
6044
|
headers: {
|
|
5377
6045
|
[key: string]: string;
|
|
5378
6046
|
};
|
|
6047
|
+
statusCode: number;
|
|
5379
6048
|
body: TagResourcesResponseBody;
|
|
5380
6049
|
static names(): {
|
|
5381
6050
|
[key: string]: string;
|
|
@@ -5418,6 +6087,7 @@ export declare class TransferNodeResponse extends $tea.Model {
|
|
|
5418
6087
|
headers: {
|
|
5419
6088
|
[key: string]: string;
|
|
5420
6089
|
};
|
|
6090
|
+
statusCode: number;
|
|
5421
6091
|
body: TransferNodeResponseBody;
|
|
5422
6092
|
static names(): {
|
|
5423
6093
|
[key: string]: string;
|
|
@@ -5461,6 +6131,7 @@ export declare class TriggerNetworkResponse extends $tea.Model {
|
|
|
5461
6131
|
headers: {
|
|
5462
6132
|
[key: string]: string;
|
|
5463
6133
|
};
|
|
6134
|
+
statusCode: number;
|
|
5464
6135
|
body: TriggerNetworkResponseBody;
|
|
5465
6136
|
static names(): {
|
|
5466
6137
|
[key: string]: string;
|
|
@@ -5473,6 +6144,7 @@ export declare class TriggerNetworkResponse extends $tea.Model {
|
|
|
5473
6144
|
});
|
|
5474
6145
|
}
|
|
5475
6146
|
export declare class UninstallKibanaPluginRequest extends $tea.Model {
|
|
6147
|
+
body?: string;
|
|
5476
6148
|
clientToken?: string;
|
|
5477
6149
|
static names(): {
|
|
5478
6150
|
[key: string]: string;
|
|
@@ -5501,6 +6173,7 @@ export declare class UninstallKibanaPluginResponse extends $tea.Model {
|
|
|
5501
6173
|
headers: {
|
|
5502
6174
|
[key: string]: string;
|
|
5503
6175
|
};
|
|
6176
|
+
statusCode: number;
|
|
5504
6177
|
body: UninstallKibanaPluginResponseBody;
|
|
5505
6178
|
static names(): {
|
|
5506
6179
|
[key: string]: string;
|
|
@@ -5513,6 +6186,7 @@ export declare class UninstallKibanaPluginResponse extends $tea.Model {
|
|
|
5513
6186
|
});
|
|
5514
6187
|
}
|
|
5515
6188
|
export declare class UninstallLogstashPluginRequest extends $tea.Model {
|
|
6189
|
+
body?: string[];
|
|
5516
6190
|
clientToken?: string;
|
|
5517
6191
|
static names(): {
|
|
5518
6192
|
[key: string]: string;
|
|
@@ -5525,6 +6199,9 @@ export declare class UninstallLogstashPluginRequest extends $tea.Model {
|
|
|
5525
6199
|
});
|
|
5526
6200
|
}
|
|
5527
6201
|
export declare class UninstallLogstashPluginResponseBody extends $tea.Model {
|
|
6202
|
+
headers?: {
|
|
6203
|
+
[key: string]: any;
|
|
6204
|
+
};
|
|
5528
6205
|
requestId?: string;
|
|
5529
6206
|
result?: string[];
|
|
5530
6207
|
static names(): {
|
|
@@ -5541,6 +6218,7 @@ export declare class UninstallLogstashPluginResponse extends $tea.Model {
|
|
|
5541
6218
|
headers: {
|
|
5542
6219
|
[key: string]: string;
|
|
5543
6220
|
};
|
|
6221
|
+
statusCode: number;
|
|
5544
6222
|
body: UninstallLogstashPluginResponseBody;
|
|
5545
6223
|
static names(): {
|
|
5546
6224
|
[key: string]: string;
|
|
@@ -5553,6 +6231,7 @@ export declare class UninstallLogstashPluginResponse extends $tea.Model {
|
|
|
5553
6231
|
});
|
|
5554
6232
|
}
|
|
5555
6233
|
export declare class UninstallPluginRequest extends $tea.Model {
|
|
6234
|
+
body?: string;
|
|
5556
6235
|
clientToken?: string;
|
|
5557
6236
|
static names(): {
|
|
5558
6237
|
[key: string]: string;
|
|
@@ -5581,6 +6260,7 @@ export declare class UninstallPluginResponse extends $tea.Model {
|
|
|
5581
6260
|
headers: {
|
|
5582
6261
|
[key: string]: string;
|
|
5583
6262
|
};
|
|
6263
|
+
statusCode: number;
|
|
5584
6264
|
body: UninstallPluginResponseBody;
|
|
5585
6265
|
static names(): {
|
|
5586
6266
|
[key: string]: string;
|
|
@@ -5597,6 +6277,7 @@ export declare class UntagResourcesRequest extends $tea.Model {
|
|
|
5597
6277
|
resourceIds?: string;
|
|
5598
6278
|
resourceType?: string;
|
|
5599
6279
|
tagKeys?: string;
|
|
6280
|
+
body?: string;
|
|
5600
6281
|
static names(): {
|
|
5601
6282
|
[key: string]: string;
|
|
5602
6283
|
};
|
|
@@ -5624,6 +6305,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
5624
6305
|
headers: {
|
|
5625
6306
|
[key: string]: string;
|
|
5626
6307
|
};
|
|
6308
|
+
statusCode: number;
|
|
5627
6309
|
body: UntagResourcesResponseBody;
|
|
5628
6310
|
static names(): {
|
|
5629
6311
|
[key: string]: string;
|
|
@@ -5636,6 +6318,7 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
5636
6318
|
});
|
|
5637
6319
|
}
|
|
5638
6320
|
export declare class UpdateAdminPasswordRequest extends $tea.Model {
|
|
6321
|
+
body?: string;
|
|
5639
6322
|
clientToken?: string;
|
|
5640
6323
|
static names(): {
|
|
5641
6324
|
[key: string]: string;
|
|
@@ -5663,6 +6346,7 @@ export declare class UpdateAdminPasswordResponse extends $tea.Model {
|
|
|
5663
6346
|
headers: {
|
|
5664
6347
|
[key: string]: string;
|
|
5665
6348
|
};
|
|
6349
|
+
statusCode: number;
|
|
5666
6350
|
body: UpdateAdminPasswordResponseBody;
|
|
5667
6351
|
static names(): {
|
|
5668
6352
|
[key: string]: string;
|
|
@@ -5675,6 +6359,7 @@ export declare class UpdateAdminPasswordResponse extends $tea.Model {
|
|
|
5675
6359
|
});
|
|
5676
6360
|
}
|
|
5677
6361
|
export declare class UpdateAdvancedSettingRequest extends $tea.Model {
|
|
6362
|
+
body?: string;
|
|
5678
6363
|
clientToken?: string;
|
|
5679
6364
|
static names(): {
|
|
5680
6365
|
[key: string]: string;
|
|
@@ -5703,6 +6388,7 @@ export declare class UpdateAdvancedSettingResponse extends $tea.Model {
|
|
|
5703
6388
|
headers: {
|
|
5704
6389
|
[key: string]: string;
|
|
5705
6390
|
};
|
|
6391
|
+
statusCode: number;
|
|
5706
6392
|
body: UpdateAdvancedSettingResponseBody;
|
|
5707
6393
|
static names(): {
|
|
5708
6394
|
[key: string]: string;
|
|
@@ -5715,6 +6401,7 @@ export declare class UpdateAdvancedSettingResponse extends $tea.Model {
|
|
|
5715
6401
|
});
|
|
5716
6402
|
}
|
|
5717
6403
|
export declare class UpdateAliwsDictRequest extends $tea.Model {
|
|
6404
|
+
body?: string;
|
|
5718
6405
|
clientToken?: string;
|
|
5719
6406
|
static names(): {
|
|
5720
6407
|
[key: string]: string;
|
|
@@ -5743,6 +6430,7 @@ export declare class UpdateAliwsDictResponse extends $tea.Model {
|
|
|
5743
6430
|
headers: {
|
|
5744
6431
|
[key: string]: string;
|
|
5745
6432
|
};
|
|
6433
|
+
statusCode: number;
|
|
5746
6434
|
body: UpdateAliwsDictResponseBody;
|
|
5747
6435
|
static names(): {
|
|
5748
6436
|
[key: string]: string;
|
|
@@ -5787,6 +6475,7 @@ export declare class UpdateApmResponse extends $tea.Model {
|
|
|
5787
6475
|
headers: {
|
|
5788
6476
|
[key: string]: string;
|
|
5789
6477
|
};
|
|
6478
|
+
statusCode: number;
|
|
5790
6479
|
body: UpdateApmResponseBody;
|
|
5791
6480
|
static names(): {
|
|
5792
6481
|
[key: string]: string;
|
|
@@ -5800,7 +6489,6 @@ export declare class UpdateApmResponse extends $tea.Model {
|
|
|
5800
6489
|
}
|
|
5801
6490
|
export declare class UpdateBlackIpsRequest extends $tea.Model {
|
|
5802
6491
|
clientToken?: string;
|
|
5803
|
-
esIPBlacklist?: string[];
|
|
5804
6492
|
static names(): {
|
|
5805
6493
|
[key: string]: string;
|
|
5806
6494
|
};
|
|
@@ -5828,6 +6516,7 @@ export declare class UpdateBlackIpsResponse extends $tea.Model {
|
|
|
5828
6516
|
headers: {
|
|
5829
6517
|
[key: string]: string;
|
|
5830
6518
|
};
|
|
6519
|
+
statusCode: number;
|
|
5831
6520
|
body: UpdateBlackIpsResponseBody;
|
|
5832
6521
|
static names(): {
|
|
5833
6522
|
[key: string]: string;
|
|
@@ -5841,6 +6530,7 @@ export declare class UpdateBlackIpsResponse extends $tea.Model {
|
|
|
5841
6530
|
}
|
|
5842
6531
|
export declare class UpdateCollectorRequest extends $tea.Model {
|
|
5843
6532
|
clientToken?: string;
|
|
6533
|
+
body?: string;
|
|
5844
6534
|
static names(): {
|
|
5845
6535
|
[key: string]: string;
|
|
5846
6536
|
};
|
|
@@ -5868,6 +6558,7 @@ export declare class UpdateCollectorResponse extends $tea.Model {
|
|
|
5868
6558
|
headers: {
|
|
5869
6559
|
[key: string]: string;
|
|
5870
6560
|
};
|
|
6561
|
+
statusCode: number;
|
|
5871
6562
|
body: UpdateCollectorResponseBody;
|
|
5872
6563
|
static names(): {
|
|
5873
6564
|
[key: string]: string;
|
|
@@ -5881,6 +6572,7 @@ export declare class UpdateCollectorResponse extends $tea.Model {
|
|
|
5881
6572
|
}
|
|
5882
6573
|
export declare class UpdateCollectorNameRequest extends $tea.Model {
|
|
5883
6574
|
clientToken?: string;
|
|
6575
|
+
body?: string;
|
|
5884
6576
|
static names(): {
|
|
5885
6577
|
[key: string]: string;
|
|
5886
6578
|
};
|
|
@@ -5908,6 +6600,7 @@ export declare class UpdateCollectorNameResponse extends $tea.Model {
|
|
|
5908
6600
|
headers: {
|
|
5909
6601
|
[key: string]: string;
|
|
5910
6602
|
};
|
|
6603
|
+
statusCode: number;
|
|
5911
6604
|
body: UpdateCollectorNameResponseBody;
|
|
5912
6605
|
static names(): {
|
|
5913
6606
|
[key: string]: string;
|
|
@@ -5950,6 +6643,7 @@ export declare class UpdateComponentIndexResponse extends $tea.Model {
|
|
|
5950
6643
|
headers: {
|
|
5951
6644
|
[key: string]: string;
|
|
5952
6645
|
};
|
|
6646
|
+
statusCode: number;
|
|
5953
6647
|
body: UpdateComponentIndexResponseBody;
|
|
5954
6648
|
static names(): {
|
|
5955
6649
|
[key: string]: string;
|
|
@@ -5991,6 +6685,7 @@ export declare class UpdateDescriptionResponse extends $tea.Model {
|
|
|
5991
6685
|
headers: {
|
|
5992
6686
|
[key: string]: string;
|
|
5993
6687
|
};
|
|
6688
|
+
statusCode: number;
|
|
5994
6689
|
body: UpdateDescriptionResponseBody;
|
|
5995
6690
|
static names(): {
|
|
5996
6691
|
[key: string]: string;
|
|
@@ -6004,6 +6699,7 @@ export declare class UpdateDescriptionResponse extends $tea.Model {
|
|
|
6004
6699
|
}
|
|
6005
6700
|
export declare class UpdateDiagnosisSettingsRequest extends $tea.Model {
|
|
6006
6701
|
clientToken?: string;
|
|
6702
|
+
body?: string;
|
|
6007
6703
|
lang?: string;
|
|
6008
6704
|
static names(): {
|
|
6009
6705
|
[key: string]: string;
|
|
@@ -6032,6 +6728,7 @@ export declare class UpdateDiagnosisSettingsResponse extends $tea.Model {
|
|
|
6032
6728
|
headers: {
|
|
6033
6729
|
[key: string]: string;
|
|
6034
6730
|
};
|
|
6731
|
+
statusCode: number;
|
|
6035
6732
|
body: UpdateDiagnosisSettingsResponseBody;
|
|
6036
6733
|
static names(): {
|
|
6037
6734
|
[key: string]: string;
|
|
@@ -6044,6 +6741,7 @@ export declare class UpdateDiagnosisSettingsResponse extends $tea.Model {
|
|
|
6044
6741
|
});
|
|
6045
6742
|
}
|
|
6046
6743
|
export declare class UpdateDictRequest extends $tea.Model {
|
|
6744
|
+
body?: string;
|
|
6047
6745
|
clientToken?: string;
|
|
6048
6746
|
static names(): {
|
|
6049
6747
|
[key: string]: string;
|
|
@@ -6072,6 +6770,7 @@ export declare class UpdateDictResponse extends $tea.Model {
|
|
|
6072
6770
|
headers: {
|
|
6073
6771
|
[key: string]: string;
|
|
6074
6772
|
};
|
|
6773
|
+
statusCode: number;
|
|
6075
6774
|
body: UpdateDictResponseBody;
|
|
6076
6775
|
static names(): {
|
|
6077
6776
|
[key: string]: string;
|
|
@@ -6083,8 +6782,53 @@ export declare class UpdateDictResponse extends $tea.Model {
|
|
|
6083
6782
|
[key: string]: any;
|
|
6084
6783
|
});
|
|
6085
6784
|
}
|
|
6785
|
+
export declare class UpdateDynamicSettingsRequest extends $tea.Model {
|
|
6786
|
+
clientToken?: string;
|
|
6787
|
+
regionId?: string;
|
|
6788
|
+
body?: string;
|
|
6789
|
+
mode?: string;
|
|
6790
|
+
static names(): {
|
|
6791
|
+
[key: string]: string;
|
|
6792
|
+
};
|
|
6793
|
+
static types(): {
|
|
6794
|
+
[key: string]: any;
|
|
6795
|
+
};
|
|
6796
|
+
constructor(map?: {
|
|
6797
|
+
[key: string]: any;
|
|
6798
|
+
});
|
|
6799
|
+
}
|
|
6800
|
+
export declare class UpdateDynamicSettingsResponseBody extends $tea.Model {
|
|
6801
|
+
requestId?: string;
|
|
6802
|
+
result?: boolean;
|
|
6803
|
+
static names(): {
|
|
6804
|
+
[key: string]: string;
|
|
6805
|
+
};
|
|
6806
|
+
static types(): {
|
|
6807
|
+
[key: string]: any;
|
|
6808
|
+
};
|
|
6809
|
+
constructor(map?: {
|
|
6810
|
+
[key: string]: any;
|
|
6811
|
+
});
|
|
6812
|
+
}
|
|
6813
|
+
export declare class UpdateDynamicSettingsResponse extends $tea.Model {
|
|
6814
|
+
headers: {
|
|
6815
|
+
[key: string]: string;
|
|
6816
|
+
};
|
|
6817
|
+
statusCode: number;
|
|
6818
|
+
body: UpdateDynamicSettingsResponseBody;
|
|
6819
|
+
static names(): {
|
|
6820
|
+
[key: string]: string;
|
|
6821
|
+
};
|
|
6822
|
+
static types(): {
|
|
6823
|
+
[key: string]: any;
|
|
6824
|
+
};
|
|
6825
|
+
constructor(map?: {
|
|
6826
|
+
[key: string]: any;
|
|
6827
|
+
});
|
|
6828
|
+
}
|
|
6086
6829
|
export declare class UpdateExtendConfigRequest extends $tea.Model {
|
|
6087
6830
|
clientToken?: string;
|
|
6831
|
+
body?: string;
|
|
6088
6832
|
static names(): {
|
|
6089
6833
|
[key: string]: string;
|
|
6090
6834
|
};
|
|
@@ -6112,6 +6856,7 @@ export declare class UpdateExtendConfigResponse extends $tea.Model {
|
|
|
6112
6856
|
headers: {
|
|
6113
6857
|
[key: string]: string;
|
|
6114
6858
|
};
|
|
6859
|
+
statusCode: number;
|
|
6115
6860
|
body: UpdateExtendConfigResponseBody;
|
|
6116
6861
|
static names(): {
|
|
6117
6862
|
[key: string]: string;
|
|
@@ -6125,6 +6870,7 @@ export declare class UpdateExtendConfigResponse extends $tea.Model {
|
|
|
6125
6870
|
}
|
|
6126
6871
|
export declare class UpdateExtendfilesRequest extends $tea.Model {
|
|
6127
6872
|
clientToken?: string;
|
|
6873
|
+
body?: string;
|
|
6128
6874
|
static names(): {
|
|
6129
6875
|
[key: string]: string;
|
|
6130
6876
|
};
|
|
@@ -6152,6 +6898,7 @@ export declare class UpdateExtendfilesResponse extends $tea.Model {
|
|
|
6152
6898
|
headers: {
|
|
6153
6899
|
[key: string]: string;
|
|
6154
6900
|
};
|
|
6901
|
+
statusCode: number;
|
|
6155
6902
|
body: UpdateExtendfilesResponseBody;
|
|
6156
6903
|
static names(): {
|
|
6157
6904
|
[key: string]: string;
|
|
@@ -6164,6 +6911,7 @@ export declare class UpdateExtendfilesResponse extends $tea.Model {
|
|
|
6164
6911
|
});
|
|
6165
6912
|
}
|
|
6166
6913
|
export declare class UpdateHotIkDictsRequest extends $tea.Model {
|
|
6914
|
+
body?: string;
|
|
6167
6915
|
clientToken?: string;
|
|
6168
6916
|
static names(): {
|
|
6169
6917
|
[key: string]: string;
|
|
@@ -6192,6 +6940,7 @@ export declare class UpdateHotIkDictsResponse extends $tea.Model {
|
|
|
6192
6940
|
headers: {
|
|
6193
6941
|
[key: string]: string;
|
|
6194
6942
|
};
|
|
6943
|
+
statusCode: number;
|
|
6195
6944
|
body: UpdateHotIkDictsResponseBody;
|
|
6196
6945
|
static names(): {
|
|
6197
6946
|
[key: string]: string;
|
|
@@ -6205,6 +6954,7 @@ export declare class UpdateHotIkDictsResponse extends $tea.Model {
|
|
|
6205
6954
|
}
|
|
6206
6955
|
export declare class UpdateILMPolicyRequest extends $tea.Model {
|
|
6207
6956
|
clientToken?: string;
|
|
6957
|
+
body?: string;
|
|
6208
6958
|
static names(): {
|
|
6209
6959
|
[key: string]: string;
|
|
6210
6960
|
};
|
|
@@ -6232,6 +6982,7 @@ export declare class UpdateILMPolicyResponse extends $tea.Model {
|
|
|
6232
6982
|
headers: {
|
|
6233
6983
|
[key: string]: string;
|
|
6234
6984
|
};
|
|
6985
|
+
statusCode: number;
|
|
6235
6986
|
body: UpdateILMPolicyResponseBody;
|
|
6236
6987
|
static names(): {
|
|
6237
6988
|
[key: string]: string;
|
|
@@ -6245,6 +6996,7 @@ export declare class UpdateILMPolicyResponse extends $tea.Model {
|
|
|
6245
6996
|
}
|
|
6246
6997
|
export declare class UpdateIndexTemplateRequest extends $tea.Model {
|
|
6247
6998
|
clientToken?: string;
|
|
6999
|
+
body?: string;
|
|
6248
7000
|
static names(): {
|
|
6249
7001
|
[key: string]: string;
|
|
6250
7002
|
};
|
|
@@ -6272,6 +7024,7 @@ export declare class UpdateIndexTemplateResponse extends $tea.Model {
|
|
|
6272
7024
|
headers: {
|
|
6273
7025
|
[key: string]: string;
|
|
6274
7026
|
};
|
|
7027
|
+
statusCode: number;
|
|
6275
7028
|
body: UpdateIndexTemplateResponseBody;
|
|
6276
7029
|
static names(): {
|
|
6277
7030
|
[key: string]: string;
|
|
@@ -6284,8 +7037,16 @@ export declare class UpdateIndexTemplateResponse extends $tea.Model {
|
|
|
6284
7037
|
});
|
|
6285
7038
|
}
|
|
6286
7039
|
export declare class UpdateInstanceRequest extends $tea.Model {
|
|
7040
|
+
clientNodeConfiguration?: ClientNodeConfiguration;
|
|
7041
|
+
elasticDataNodeConfiguration?: ElasticDataNodeConfiguration;
|
|
7042
|
+
instanceCategory?: string;
|
|
7043
|
+
kibanaConfiguration?: KibanaNodeConfiguration;
|
|
7044
|
+
masterConfiguration?: MasterNodeConfiguration;
|
|
7045
|
+
nodeAmount?: number;
|
|
7046
|
+
nodeSpec?: NodeSpec;
|
|
7047
|
+
warmNodeConfiguration?: WarmNodeConfiguration;
|
|
6287
7048
|
clientToken?: string;
|
|
6288
|
-
|
|
7049
|
+
force?: boolean;
|
|
6289
7050
|
orderActionType?: string;
|
|
6290
7051
|
static names(): {
|
|
6291
7052
|
[key: string]: string;
|
|
@@ -6314,6 +7075,7 @@ export declare class UpdateInstanceResponse extends $tea.Model {
|
|
|
6314
7075
|
headers: {
|
|
6315
7076
|
[key: string]: string;
|
|
6316
7077
|
};
|
|
7078
|
+
statusCode: number;
|
|
6317
7079
|
body: UpdateInstanceResponseBody;
|
|
6318
7080
|
static names(): {
|
|
6319
7081
|
[key: string]: string;
|
|
@@ -6326,6 +7088,7 @@ export declare class UpdateInstanceResponse extends $tea.Model {
|
|
|
6326
7088
|
});
|
|
6327
7089
|
}
|
|
6328
7090
|
export declare class UpdateInstanceChargeTypeRequest extends $tea.Model {
|
|
7091
|
+
body?: string;
|
|
6329
7092
|
clientToken?: string;
|
|
6330
7093
|
static names(): {
|
|
6331
7094
|
[key: string]: string;
|
|
@@ -6354,6 +7117,7 @@ export declare class UpdateInstanceChargeTypeResponse extends $tea.Model {
|
|
|
6354
7117
|
headers: {
|
|
6355
7118
|
[key: string]: string;
|
|
6356
7119
|
};
|
|
7120
|
+
statusCode: number;
|
|
6357
7121
|
body: UpdateInstanceChargeTypeResponseBody;
|
|
6358
7122
|
static names(): {
|
|
6359
7123
|
[key: string]: string;
|
|
@@ -6366,6 +7130,7 @@ export declare class UpdateInstanceChargeTypeResponse extends $tea.Model {
|
|
|
6366
7130
|
});
|
|
6367
7131
|
}
|
|
6368
7132
|
export declare class UpdateInstanceSettingsRequest extends $tea.Model {
|
|
7133
|
+
body?: string;
|
|
6369
7134
|
clientToken?: string;
|
|
6370
7135
|
static names(): {
|
|
6371
7136
|
[key: string]: string;
|
|
@@ -6393,6 +7158,7 @@ export declare class UpdateInstanceSettingsResponse extends $tea.Model {
|
|
|
6393
7158
|
headers: {
|
|
6394
7159
|
[key: string]: string;
|
|
6395
7160
|
};
|
|
7161
|
+
statusCode: number;
|
|
6396
7162
|
body: UpdateInstanceSettingsResponseBody;
|
|
6397
7163
|
static names(): {
|
|
6398
7164
|
[key: string]: string;
|
|
@@ -6405,6 +7171,7 @@ export declare class UpdateInstanceSettingsResponse extends $tea.Model {
|
|
|
6405
7171
|
});
|
|
6406
7172
|
}
|
|
6407
7173
|
export declare class UpdateKibanaSettingsRequest extends $tea.Model {
|
|
7174
|
+
body?: string;
|
|
6408
7175
|
clientToken?: string;
|
|
6409
7176
|
static names(): {
|
|
6410
7177
|
[key: string]: string;
|
|
@@ -6433,6 +7200,7 @@ export declare class UpdateKibanaSettingsResponse extends $tea.Model {
|
|
|
6433
7200
|
headers: {
|
|
6434
7201
|
[key: string]: string;
|
|
6435
7202
|
};
|
|
7203
|
+
statusCode: number;
|
|
6436
7204
|
body: UpdateKibanaSettingsResponseBody;
|
|
6437
7205
|
static names(): {
|
|
6438
7206
|
[key: string]: string;
|
|
@@ -6445,6 +7213,8 @@ export declare class UpdateKibanaSettingsResponse extends $tea.Model {
|
|
|
6445
7213
|
});
|
|
6446
7214
|
}
|
|
6447
7215
|
export declare class UpdateKibanaWhiteIpsRequest extends $tea.Model {
|
|
7216
|
+
kibanaIPWhitelist?: string[];
|
|
7217
|
+
whiteIpGroup?: UpdateKibanaWhiteIpsRequestWhiteIpGroup;
|
|
6448
7218
|
clientToken?: string;
|
|
6449
7219
|
modifyMode?: string;
|
|
6450
7220
|
static names(): {
|
|
@@ -6474,6 +7244,7 @@ export declare class UpdateKibanaWhiteIpsResponse extends $tea.Model {
|
|
|
6474
7244
|
headers: {
|
|
6475
7245
|
[key: string]: string;
|
|
6476
7246
|
};
|
|
7247
|
+
statusCode: number;
|
|
6477
7248
|
body: UpdateKibanaWhiteIpsResponseBody;
|
|
6478
7249
|
static names(): {
|
|
6479
7250
|
[key: string]: string;
|
|
@@ -6486,7 +7257,6 @@ export declare class UpdateKibanaWhiteIpsResponse extends $tea.Model {
|
|
|
6486
7257
|
});
|
|
6487
7258
|
}
|
|
6488
7259
|
export declare class UpdateLogstashRequest extends $tea.Model {
|
|
6489
|
-
description?: string;
|
|
6490
7260
|
nodeAmount?: number;
|
|
6491
7261
|
nodeSpec?: UpdateLogstashRequestNodeSpec;
|
|
6492
7262
|
clientToken?: string;
|
|
@@ -6501,7 +7271,7 @@ export declare class UpdateLogstashRequest extends $tea.Model {
|
|
|
6501
7271
|
});
|
|
6502
7272
|
}
|
|
6503
7273
|
export declare class UpdateLogstashResponseBody extends $tea.Model {
|
|
6504
|
-
requestId?:
|
|
7274
|
+
requestId?: string;
|
|
6505
7275
|
result?: boolean;
|
|
6506
7276
|
static names(): {
|
|
6507
7277
|
[key: string]: string;
|
|
@@ -6517,6 +7287,7 @@ export declare class UpdateLogstashResponse extends $tea.Model {
|
|
|
6517
7287
|
headers: {
|
|
6518
7288
|
[key: string]: string;
|
|
6519
7289
|
};
|
|
7290
|
+
statusCode: number;
|
|
6520
7291
|
body: UpdateLogstashResponseBody;
|
|
6521
7292
|
static names(): {
|
|
6522
7293
|
[key: string]: string;
|
|
@@ -6529,8 +7300,7 @@ export declare class UpdateLogstashResponse extends $tea.Model {
|
|
|
6529
7300
|
});
|
|
6530
7301
|
}
|
|
6531
7302
|
export declare class UpdateLogstashChargeTypeRequest extends $tea.Model {
|
|
6532
|
-
|
|
6533
|
-
paymentType?: string;
|
|
7303
|
+
body?: string;
|
|
6534
7304
|
clientToken?: string;
|
|
6535
7305
|
static names(): {
|
|
6536
7306
|
[key: string]: string;
|
|
@@ -6543,7 +7313,7 @@ export declare class UpdateLogstashChargeTypeRequest extends $tea.Model {
|
|
|
6543
7313
|
});
|
|
6544
7314
|
}
|
|
6545
7315
|
export declare class UpdateLogstashChargeTypeResponseBody extends $tea.Model {
|
|
6546
|
-
requestId?:
|
|
7316
|
+
requestId?: string;
|
|
6547
7317
|
result?: boolean;
|
|
6548
7318
|
static names(): {
|
|
6549
7319
|
[key: string]: string;
|
|
@@ -6559,6 +7329,7 @@ export declare class UpdateLogstashChargeTypeResponse extends $tea.Model {
|
|
|
6559
7329
|
headers: {
|
|
6560
7330
|
[key: string]: string;
|
|
6561
7331
|
};
|
|
7332
|
+
statusCode: number;
|
|
6562
7333
|
body: UpdateLogstashChargeTypeResponseBody;
|
|
6563
7334
|
static names(): {
|
|
6564
7335
|
[key: string]: string;
|
|
@@ -6571,7 +7342,7 @@ export declare class UpdateLogstashChargeTypeResponse extends $tea.Model {
|
|
|
6571
7342
|
});
|
|
6572
7343
|
}
|
|
6573
7344
|
export declare class UpdateLogstashDescriptionRequest extends $tea.Model {
|
|
6574
|
-
|
|
7345
|
+
body?: string;
|
|
6575
7346
|
clientToken?: string;
|
|
6576
7347
|
static names(): {
|
|
6577
7348
|
[key: string]: string;
|
|
@@ -6600,6 +7371,7 @@ export declare class UpdateLogstashDescriptionResponse extends $tea.Model {
|
|
|
6600
7371
|
headers: {
|
|
6601
7372
|
[key: string]: string;
|
|
6602
7373
|
};
|
|
7374
|
+
statusCode: number;
|
|
6603
7375
|
body: UpdateLogstashDescriptionResponseBody;
|
|
6604
7376
|
static names(): {
|
|
6605
7377
|
[key: string]: string;
|
|
@@ -6612,9 +7384,7 @@ export declare class UpdateLogstashDescriptionResponse extends $tea.Model {
|
|
|
6612
7384
|
});
|
|
6613
7385
|
}
|
|
6614
7386
|
export declare class UpdateLogstashSettingsRequest extends $tea.Model {
|
|
6615
|
-
body?:
|
|
6616
|
-
[key: string]: any;
|
|
6617
|
-
};
|
|
7387
|
+
body?: string;
|
|
6618
7388
|
clientToken?: string;
|
|
6619
7389
|
static names(): {
|
|
6620
7390
|
[key: string]: string;
|
|
@@ -6628,7 +7398,6 @@ export declare class UpdateLogstashSettingsRequest extends $tea.Model {
|
|
|
6628
7398
|
}
|
|
6629
7399
|
export declare class UpdateLogstashSettingsResponseBody extends $tea.Model {
|
|
6630
7400
|
requestId?: string;
|
|
6631
|
-
result?: Logstash;
|
|
6632
7401
|
static names(): {
|
|
6633
7402
|
[key: string]: string;
|
|
6634
7403
|
};
|
|
@@ -6643,6 +7412,7 @@ export declare class UpdateLogstashSettingsResponse extends $tea.Model {
|
|
|
6643
7412
|
headers: {
|
|
6644
7413
|
[key: string]: string;
|
|
6645
7414
|
};
|
|
7415
|
+
statusCode: number;
|
|
6646
7416
|
body: UpdateLogstashSettingsResponseBody;
|
|
6647
7417
|
static names(): {
|
|
6648
7418
|
[key: string]: string;
|
|
@@ -6655,6 +7425,11 @@ export declare class UpdateLogstashSettingsResponse extends $tea.Model {
|
|
|
6655
7425
|
});
|
|
6656
7426
|
}
|
|
6657
7427
|
export declare class UpdatePipelineManagementConfigRequest extends $tea.Model {
|
|
7428
|
+
endpoints?: string[];
|
|
7429
|
+
password?: string;
|
|
7430
|
+
pipelineIds?: string[];
|
|
7431
|
+
pipelineManagementType?: string;
|
|
7432
|
+
userName?: string;
|
|
6658
7433
|
clientToken?: string;
|
|
6659
7434
|
static names(): {
|
|
6660
7435
|
[key: string]: string;
|
|
@@ -6683,6 +7458,7 @@ export declare class UpdatePipelineManagementConfigResponse extends $tea.Model {
|
|
|
6683
7458
|
headers: {
|
|
6684
7459
|
[key: string]: string;
|
|
6685
7460
|
};
|
|
7461
|
+
statusCode: number;
|
|
6686
7462
|
body: UpdatePipelineManagementConfigResponseBody;
|
|
6687
7463
|
static names(): {
|
|
6688
7464
|
[key: string]: string;
|
|
@@ -6695,6 +7471,7 @@ export declare class UpdatePipelineManagementConfigResponse extends $tea.Model {
|
|
|
6695
7471
|
});
|
|
6696
7472
|
}
|
|
6697
7473
|
export declare class UpdatePipelinesRequest extends $tea.Model {
|
|
7474
|
+
body?: string;
|
|
6698
7475
|
clientToken?: string;
|
|
6699
7476
|
trigger?: boolean;
|
|
6700
7477
|
static names(): {
|
|
@@ -6724,6 +7501,7 @@ export declare class UpdatePipelinesResponse extends $tea.Model {
|
|
|
6724
7501
|
headers: {
|
|
6725
7502
|
[key: string]: string;
|
|
6726
7503
|
};
|
|
7504
|
+
statusCode: number;
|
|
6727
7505
|
body: UpdatePipelinesResponseBody;
|
|
6728
7506
|
static names(): {
|
|
6729
7507
|
[key: string]: string;
|
|
@@ -6736,6 +7514,7 @@ export declare class UpdatePipelinesResponse extends $tea.Model {
|
|
|
6736
7514
|
});
|
|
6737
7515
|
}
|
|
6738
7516
|
export declare class UpdatePrivateNetworkWhiteIpsRequest extends $tea.Model {
|
|
7517
|
+
body?: string;
|
|
6739
7518
|
clientToken?: string;
|
|
6740
7519
|
modifyMode?: string;
|
|
6741
7520
|
static names(): {
|
|
@@ -6765,6 +7544,7 @@ export declare class UpdatePrivateNetworkWhiteIpsResponse extends $tea.Model {
|
|
|
6765
7544
|
headers: {
|
|
6766
7545
|
[key: string]: string;
|
|
6767
7546
|
};
|
|
7547
|
+
statusCode: number;
|
|
6768
7548
|
body: UpdatePrivateNetworkWhiteIpsResponseBody;
|
|
6769
7549
|
static names(): {
|
|
6770
7550
|
[key: string]: string;
|
|
@@ -6777,6 +7557,7 @@ export declare class UpdatePrivateNetworkWhiteIpsResponse extends $tea.Model {
|
|
|
6777
7557
|
});
|
|
6778
7558
|
}
|
|
6779
7559
|
export declare class UpdatePublicNetworkRequest extends $tea.Model {
|
|
7560
|
+
body?: string;
|
|
6780
7561
|
clientToken?: string;
|
|
6781
7562
|
static names(): {
|
|
6782
7563
|
[key: string]: string;
|
|
@@ -6805,6 +7586,7 @@ export declare class UpdatePublicNetworkResponse extends $tea.Model {
|
|
|
6805
7586
|
headers: {
|
|
6806
7587
|
[key: string]: string;
|
|
6807
7588
|
};
|
|
7589
|
+
statusCode: number;
|
|
6808
7590
|
body: UpdatePublicNetworkResponseBody;
|
|
6809
7591
|
static names(): {
|
|
6810
7592
|
[key: string]: string;
|
|
@@ -6817,6 +7599,7 @@ export declare class UpdatePublicNetworkResponse extends $tea.Model {
|
|
|
6817
7599
|
});
|
|
6818
7600
|
}
|
|
6819
7601
|
export declare class UpdatePublicWhiteIpsRequest extends $tea.Model {
|
|
7602
|
+
body?: string;
|
|
6820
7603
|
clientToken?: string;
|
|
6821
7604
|
modifyMode?: string;
|
|
6822
7605
|
static names(): {
|
|
@@ -6846,6 +7629,7 @@ export declare class UpdatePublicWhiteIpsResponse extends $tea.Model {
|
|
|
6846
7629
|
headers: {
|
|
6847
7630
|
[key: string]: string;
|
|
6848
7631
|
};
|
|
7632
|
+
statusCode: number;
|
|
6849
7633
|
body: UpdatePublicWhiteIpsResponseBody;
|
|
6850
7634
|
static names(): {
|
|
6851
7635
|
[key: string]: string;
|
|
@@ -6859,6 +7643,7 @@ export declare class UpdatePublicWhiteIpsResponse extends $tea.Model {
|
|
|
6859
7643
|
}
|
|
6860
7644
|
export declare class UpdateReadWritePolicyRequest extends $tea.Model {
|
|
6861
7645
|
clientToken?: string;
|
|
7646
|
+
body?: string;
|
|
6862
7647
|
static names(): {
|
|
6863
7648
|
[key: string]: string;
|
|
6864
7649
|
};
|
|
@@ -6886,6 +7671,7 @@ export declare class UpdateReadWritePolicyResponse extends $tea.Model {
|
|
|
6886
7671
|
headers: {
|
|
6887
7672
|
[key: string]: string;
|
|
6888
7673
|
};
|
|
7674
|
+
statusCode: number;
|
|
6889
7675
|
body: UpdateReadWritePolicyResponseBody;
|
|
6890
7676
|
static names(): {
|
|
6891
7677
|
[key: string]: string;
|
|
@@ -6897,6 +7683,18 @@ export declare class UpdateReadWritePolicyResponse extends $tea.Model {
|
|
|
6897
7683
|
[key: string]: any;
|
|
6898
7684
|
});
|
|
6899
7685
|
}
|
|
7686
|
+
export declare class UpdateSnapshotSettingRequest extends $tea.Model {
|
|
7687
|
+
body?: string;
|
|
7688
|
+
static names(): {
|
|
7689
|
+
[key: string]: string;
|
|
7690
|
+
};
|
|
7691
|
+
static types(): {
|
|
7692
|
+
[key: string]: any;
|
|
7693
|
+
};
|
|
7694
|
+
constructor(map?: {
|
|
7695
|
+
[key: string]: any;
|
|
7696
|
+
});
|
|
7697
|
+
}
|
|
6900
7698
|
export declare class UpdateSnapshotSettingResponseBody extends $tea.Model {
|
|
6901
7699
|
requestId?: string;
|
|
6902
7700
|
result?: UpdateSnapshotSettingResponseBodyResult;
|
|
@@ -6914,6 +7712,7 @@ export declare class UpdateSnapshotSettingResponse extends $tea.Model {
|
|
|
6914
7712
|
headers: {
|
|
6915
7713
|
[key: string]: string;
|
|
6916
7714
|
};
|
|
7715
|
+
statusCode: number;
|
|
6917
7716
|
body: UpdateSnapshotSettingResponseBody;
|
|
6918
7717
|
static names(): {
|
|
6919
7718
|
[key: string]: string;
|
|
@@ -6926,6 +7725,7 @@ export declare class UpdateSnapshotSettingResponse extends $tea.Model {
|
|
|
6926
7725
|
});
|
|
6927
7726
|
}
|
|
6928
7727
|
export declare class UpdateSynonymsDictsRequest extends $tea.Model {
|
|
7728
|
+
body?: string;
|
|
6929
7729
|
clientToken?: string;
|
|
6930
7730
|
static names(): {
|
|
6931
7731
|
[key: string]: string;
|
|
@@ -6954,6 +7754,7 @@ export declare class UpdateSynonymsDictsResponse extends $tea.Model {
|
|
|
6954
7754
|
headers: {
|
|
6955
7755
|
[key: string]: string;
|
|
6956
7756
|
};
|
|
7757
|
+
statusCode: number;
|
|
6957
7758
|
body: UpdateSynonymsDictsResponseBody;
|
|
6958
7759
|
static names(): {
|
|
6959
7760
|
[key: string]: string;
|
|
@@ -6967,6 +7768,7 @@ export declare class UpdateSynonymsDictsResponse extends $tea.Model {
|
|
|
6967
7768
|
}
|
|
6968
7769
|
export declare class UpdateTemplateRequest extends $tea.Model {
|
|
6969
7770
|
clientToken?: string;
|
|
7771
|
+
body?: string;
|
|
6970
7772
|
static names(): {
|
|
6971
7773
|
[key: string]: string;
|
|
6972
7774
|
};
|
|
@@ -6994,6 +7796,7 @@ export declare class UpdateTemplateResponse extends $tea.Model {
|
|
|
6994
7796
|
headers: {
|
|
6995
7797
|
[key: string]: string;
|
|
6996
7798
|
};
|
|
7799
|
+
statusCode: number;
|
|
6997
7800
|
body: UpdateTemplateResponseBody;
|
|
6998
7801
|
static names(): {
|
|
6999
7802
|
[key: string]: string;
|
|
@@ -7037,6 +7840,7 @@ export declare class UpdateWhiteIpsResponse extends $tea.Model {
|
|
|
7037
7840
|
headers: {
|
|
7038
7841
|
[key: string]: string;
|
|
7039
7842
|
};
|
|
7843
|
+
statusCode: number;
|
|
7040
7844
|
body: UpdateWhiteIpsResponseBody;
|
|
7041
7845
|
static names(): {
|
|
7042
7846
|
[key: string]: string;
|
|
@@ -7050,6 +7854,10 @@ export declare class UpdateWhiteIpsResponse extends $tea.Model {
|
|
|
7050
7854
|
}
|
|
7051
7855
|
export declare class UpdateXpackMonitorConfigRequest extends $tea.Model {
|
|
7052
7856
|
clientToken?: string;
|
|
7857
|
+
enable?: boolean;
|
|
7858
|
+
endpoints?: string[];
|
|
7859
|
+
password?: string;
|
|
7860
|
+
userName?: string;
|
|
7053
7861
|
static names(): {
|
|
7054
7862
|
[key: string]: string;
|
|
7055
7863
|
};
|
|
@@ -7077,6 +7885,7 @@ export declare class UpdateXpackMonitorConfigResponse extends $tea.Model {
|
|
|
7077
7885
|
headers: {
|
|
7078
7886
|
[key: string]: string;
|
|
7079
7887
|
};
|
|
7888
|
+
statusCode: number;
|
|
7080
7889
|
body: UpdateXpackMonitorConfigResponseBody;
|
|
7081
7890
|
static names(): {
|
|
7082
7891
|
[key: string]: string;
|
|
@@ -7089,10 +7898,10 @@ export declare class UpdateXpackMonitorConfigResponse extends $tea.Model {
|
|
|
7089
7898
|
});
|
|
7090
7899
|
}
|
|
7091
7900
|
export declare class UpgradeEngineVersionRequest extends $tea.Model {
|
|
7092
|
-
clientToken?: string;
|
|
7093
|
-
dryRun?: boolean;
|
|
7094
7901
|
type?: string;
|
|
7095
7902
|
version?: string;
|
|
7903
|
+
clientToken?: string;
|
|
7904
|
+
dryRun?: boolean;
|
|
7096
7905
|
static names(): {
|
|
7097
7906
|
[key: string]: string;
|
|
7098
7907
|
};
|
|
@@ -7105,7 +7914,7 @@ export declare class UpgradeEngineVersionRequest extends $tea.Model {
|
|
|
7105
7914
|
}
|
|
7106
7915
|
export declare class UpgradeEngineVersionResponseBody extends $tea.Model {
|
|
7107
7916
|
requestId?: string;
|
|
7108
|
-
result?: UpgradeEngineVersionResponseBodyResult;
|
|
7917
|
+
result?: UpgradeEngineVersionResponseBodyResult[];
|
|
7109
7918
|
static names(): {
|
|
7110
7919
|
[key: string]: string;
|
|
7111
7920
|
};
|
|
@@ -7120,6 +7929,7 @@ export declare class UpgradeEngineVersionResponse extends $tea.Model {
|
|
|
7120
7929
|
headers: {
|
|
7121
7930
|
[key: string]: string;
|
|
7122
7931
|
};
|
|
7932
|
+
statusCode: number;
|
|
7123
7933
|
body: UpgradeEngineVersionResponseBody;
|
|
7124
7934
|
static names(): {
|
|
7125
7935
|
[key: string]: string;
|
|
@@ -7133,6 +7943,7 @@ export declare class UpgradeEngineVersionResponse extends $tea.Model {
|
|
|
7133
7943
|
}
|
|
7134
7944
|
export declare class ValidateConnectionRequest extends $tea.Model {
|
|
7135
7945
|
clientToken?: string;
|
|
7946
|
+
body?: string;
|
|
7136
7947
|
static names(): {
|
|
7137
7948
|
[key: string]: string;
|
|
7138
7949
|
};
|
|
@@ -7160,6 +7971,7 @@ export declare class ValidateConnectionResponse extends $tea.Model {
|
|
|
7160
7971
|
headers: {
|
|
7161
7972
|
[key: string]: string;
|
|
7162
7973
|
};
|
|
7974
|
+
statusCode: number;
|
|
7163
7975
|
body: ValidateConnectionResponseBody;
|
|
7164
7976
|
static names(): {
|
|
7165
7977
|
[key: string]: string;
|
|
@@ -7173,6 +7985,7 @@ export declare class ValidateConnectionResponse extends $tea.Model {
|
|
|
7173
7985
|
}
|
|
7174
7986
|
export declare class ValidateShrinkNodesRequest extends $tea.Model {
|
|
7175
7987
|
body?: ValidateShrinkNodesRequestBody[];
|
|
7988
|
+
count?: number;
|
|
7176
7989
|
ignoreStatus?: boolean;
|
|
7177
7990
|
nodeType?: string;
|
|
7178
7991
|
static names(): {
|
|
@@ -7202,6 +8015,7 @@ export declare class ValidateShrinkNodesResponse extends $tea.Model {
|
|
|
7202
8015
|
headers: {
|
|
7203
8016
|
[key: string]: string;
|
|
7204
8017
|
};
|
|
8018
|
+
statusCode: number;
|
|
7205
8019
|
body: ValidateShrinkNodesResponseBody;
|
|
7206
8020
|
static names(): {
|
|
7207
8021
|
[key: string]: string;
|
|
@@ -7243,6 +8057,7 @@ export declare class ValidateSlrPermissionResponse extends $tea.Model {
|
|
|
7243
8057
|
headers: {
|
|
7244
8058
|
[key: string]: string;
|
|
7245
8059
|
};
|
|
8060
|
+
statusCode: number;
|
|
7246
8061
|
body: ValidateSlrPermissionResponseBody;
|
|
7247
8062
|
static names(): {
|
|
7248
8063
|
[key: string]: string;
|
|
@@ -7284,6 +8099,7 @@ export declare class ValidateTransferableNodesResponse extends $tea.Model {
|
|
|
7284
8099
|
headers: {
|
|
7285
8100
|
[key: string]: string;
|
|
7286
8101
|
};
|
|
8102
|
+
statusCode: number;
|
|
7287
8103
|
body: ValidateTransferableNodesResponseBody;
|
|
7288
8104
|
static names(): {
|
|
7289
8105
|
[key: string]: string;
|
|
@@ -7296,6 +8112,20 @@ export declare class ValidateTransferableNodesResponse extends $tea.Model {
|
|
|
7296
8112
|
});
|
|
7297
8113
|
}
|
|
7298
8114
|
export declare class CreateInstanceRequest extends $tea.Model {
|
|
8115
|
+
clientNodeConfiguration?: ClientNodeConfiguration;
|
|
8116
|
+
elasticDataNodeConfiguration?: ElasticDataNodeConfiguration;
|
|
8117
|
+
esAdminPassword?: string;
|
|
8118
|
+
esVersion?: string;
|
|
8119
|
+
instanceCategory?: string;
|
|
8120
|
+
kibanaConfiguration?: KibanaNodeConfiguration;
|
|
8121
|
+
masterConfiguration?: MasterNodeConfiguration;
|
|
8122
|
+
networkConfig?: NetworkConfig;
|
|
8123
|
+
nodeAmount?: number;
|
|
8124
|
+
nodeSpec?: NodeSpec;
|
|
8125
|
+
paymentInfo?: PaymentInfo;
|
|
8126
|
+
paymentType?: string;
|
|
8127
|
+
warmNodeConfiguration?: WarmNodeConfiguration;
|
|
8128
|
+
zoneCount?: number;
|
|
7299
8129
|
clientToken?: string;
|
|
7300
8130
|
static names(): {
|
|
7301
8131
|
[key: string]: string;
|
|
@@ -7324,6 +8154,7 @@ export declare class CreateInstanceResponse extends $tea.Model {
|
|
|
7324
8154
|
headers: {
|
|
7325
8155
|
[key: string]: string;
|
|
7326
8156
|
};
|
|
8157
|
+
statusCode: number;
|
|
7327
8158
|
body: CreateInstanceResponseBody;
|
|
7328
8159
|
static names(): {
|
|
7329
8160
|
[key: string]: string;
|
|
@@ -7335,6 +8166,18 @@ export declare class CreateInstanceResponse extends $tea.Model {
|
|
|
7335
8166
|
[key: string]: any;
|
|
7336
8167
|
});
|
|
7337
8168
|
}
|
|
8169
|
+
export declare class ElasticsearchAdvancedSetting extends $tea.Model {
|
|
8170
|
+
gcName?: string;
|
|
8171
|
+
static names(): {
|
|
8172
|
+
[key: string]: string;
|
|
8173
|
+
};
|
|
8174
|
+
static types(): {
|
|
8175
|
+
[key: string]: any;
|
|
8176
|
+
};
|
|
8177
|
+
constructor(map?: {
|
|
8178
|
+
[key: string]: any;
|
|
8179
|
+
});
|
|
8180
|
+
}
|
|
7338
8181
|
export declare class LogstashEndpointList extends $tea.Model {
|
|
7339
8182
|
host?: string;
|
|
7340
8183
|
port?: number;
|
|
@@ -8413,21 +9256,8 @@ export declare class DescribeXpackMonitorConfigResponseBodyResult extends $tea.M
|
|
|
8413
9256
|
[key: string]: any;
|
|
8414
9257
|
});
|
|
8415
9258
|
}
|
|
8416
|
-
export declare class DiagnoseInstanceResponseBodyResultDiagnoseItems extends $tea.Model {
|
|
8417
|
-
item?: string;
|
|
8418
|
-
static names(): {
|
|
8419
|
-
[key: string]: string;
|
|
8420
|
-
};
|
|
8421
|
-
static types(): {
|
|
8422
|
-
[key: string]: any;
|
|
8423
|
-
};
|
|
8424
|
-
constructor(map?: {
|
|
8425
|
-
[key: string]: any;
|
|
8426
|
-
});
|
|
8427
|
-
}
|
|
8428
9259
|
export declare class DiagnoseInstanceResponseBodyResult extends $tea.Model {
|
|
8429
9260
|
createTime?: number;
|
|
8430
|
-
diagnoseItems?: DiagnoseInstanceResponseBodyResultDiagnoseItems[];
|
|
8431
9261
|
instanceId?: string;
|
|
8432
9262
|
reportId?: string;
|
|
8433
9263
|
state?: string;
|
|
@@ -8917,6 +9747,80 @@ export declare class ListAckNamespacesResponseBodyResult extends $tea.Model {
|
|
|
8917
9747
|
[key: string]: any;
|
|
8918
9748
|
});
|
|
8919
9749
|
}
|
|
9750
|
+
export declare class ListActionRecordsResponseBodyResultStatusInfoSubStatusInfo extends $tea.Model {
|
|
9751
|
+
completeNodeCount?: number;
|
|
9752
|
+
endTime?: number;
|
|
9753
|
+
exception?: string;
|
|
9754
|
+
latencyMills?: number;
|
|
9755
|
+
nodeCount?: number;
|
|
9756
|
+
process?: string;
|
|
9757
|
+
startTime?: number;
|
|
9758
|
+
stateType?: string;
|
|
9759
|
+
subState?: string;
|
|
9760
|
+
static names(): {
|
|
9761
|
+
[key: string]: string;
|
|
9762
|
+
};
|
|
9763
|
+
static types(): {
|
|
9764
|
+
[key: string]: any;
|
|
9765
|
+
};
|
|
9766
|
+
constructor(map?: {
|
|
9767
|
+
[key: string]: any;
|
|
9768
|
+
});
|
|
9769
|
+
}
|
|
9770
|
+
export declare class ListActionRecordsResponseBodyResultStatusInfo extends $tea.Model {
|
|
9771
|
+
completeNodeCount?: number;
|
|
9772
|
+
endTime?: number;
|
|
9773
|
+
exception?: string;
|
|
9774
|
+
latencyMills?: number;
|
|
9775
|
+
nodeCount?: number;
|
|
9776
|
+
process?: string;
|
|
9777
|
+
startTime?: number;
|
|
9778
|
+
stateType?: string;
|
|
9779
|
+
subState?: string;
|
|
9780
|
+
subStatusInfo?: ListActionRecordsResponseBodyResultStatusInfoSubStatusInfo[];
|
|
9781
|
+
static names(): {
|
|
9782
|
+
[key: string]: string;
|
|
9783
|
+
};
|
|
9784
|
+
static types(): {
|
|
9785
|
+
[key: string]: any;
|
|
9786
|
+
};
|
|
9787
|
+
constructor(map?: {
|
|
9788
|
+
[key: string]: any;
|
|
9789
|
+
});
|
|
9790
|
+
}
|
|
9791
|
+
export declare class ListActionRecordsResponseBodyResult extends $tea.Model {
|
|
9792
|
+
actionName?: string;
|
|
9793
|
+
actionParams?: {
|
|
9794
|
+
[key: string]: any;
|
|
9795
|
+
};
|
|
9796
|
+
actionResultAccessList?: string[];
|
|
9797
|
+
endTime?: number;
|
|
9798
|
+
instanceId?: string;
|
|
9799
|
+
metaNow?: string;
|
|
9800
|
+
metaOld?: string;
|
|
9801
|
+
ownerId?: string;
|
|
9802
|
+
process?: string;
|
|
9803
|
+
recordDiff?: {
|
|
9804
|
+
[key: string]: any;
|
|
9805
|
+
};
|
|
9806
|
+
recordIds?: string[];
|
|
9807
|
+
requestId?: string;
|
|
9808
|
+
startTime?: number;
|
|
9809
|
+
stateType?: string;
|
|
9810
|
+
statusInfo?: ListActionRecordsResponseBodyResultStatusInfo[];
|
|
9811
|
+
userId?: string;
|
|
9812
|
+
userInfo?: string;
|
|
9813
|
+
userType?: string;
|
|
9814
|
+
static names(): {
|
|
9815
|
+
[key: string]: string;
|
|
9816
|
+
};
|
|
9817
|
+
static types(): {
|
|
9818
|
+
[key: string]: any;
|
|
9819
|
+
};
|
|
9820
|
+
constructor(map?: {
|
|
9821
|
+
[key: string]: any;
|
|
9822
|
+
});
|
|
9823
|
+
}
|
|
8920
9824
|
export declare class ListAllNodeResponseBodyResult extends $tea.Model {
|
|
8921
9825
|
cpuPercent?: string;
|
|
8922
9826
|
diskUsedPercent?: string;
|
|
@@ -9818,19 +10722,6 @@ export declare class ListInstanceResponseBodyResult extends $tea.Model {
|
|
|
9818
10722
|
[key: string]: any;
|
|
9819
10723
|
});
|
|
9820
10724
|
}
|
|
9821
|
-
export declare class ListInstanceHistoryEventsRequestBody extends $tea.Model {
|
|
9822
|
-
desc?: boolean;
|
|
9823
|
-
sortField?: string;
|
|
9824
|
-
static names(): {
|
|
9825
|
-
[key: string]: string;
|
|
9826
|
-
};
|
|
9827
|
-
static types(): {
|
|
9828
|
-
[key: string]: any;
|
|
9829
|
-
};
|
|
9830
|
-
constructor(map?: {
|
|
9831
|
-
[key: string]: any;
|
|
9832
|
-
});
|
|
9833
|
-
}
|
|
9834
10725
|
export declare class ListInstanceHistoryEventsResponseBodyHeaders extends $tea.Model {
|
|
9835
10726
|
xTotalCount?: number;
|
|
9836
10727
|
xTotalFailed?: number;
|
|
@@ -9846,7 +10737,7 @@ export declare class ListInstanceHistoryEventsResponseBodyHeaders extends $tea.M
|
|
|
9846
10737
|
});
|
|
9847
10738
|
}
|
|
9848
10739
|
export declare class ListInstanceHistoryEventsResponseBodyResult extends $tea.Model {
|
|
9849
|
-
|
|
10740
|
+
ecsId?: string;
|
|
9850
10741
|
eventCreateTime?: string;
|
|
9851
10742
|
eventCycleStatus?: string;
|
|
9852
10743
|
eventExecuteTime?: string;
|
|
@@ -9940,6 +10831,71 @@ export declare class ListLogstashResponseBodyHeaders extends $tea.Model {
|
|
|
9940
10831
|
[key: string]: any;
|
|
9941
10832
|
});
|
|
9942
10833
|
}
|
|
10834
|
+
export declare class ListLogstashResponseBodyResultTags extends $tea.Model {
|
|
10835
|
+
tagKey?: string;
|
|
10836
|
+
tagValue?: string;
|
|
10837
|
+
static names(): {
|
|
10838
|
+
[key: string]: string;
|
|
10839
|
+
};
|
|
10840
|
+
static types(): {
|
|
10841
|
+
[key: string]: any;
|
|
10842
|
+
};
|
|
10843
|
+
constructor(map?: {
|
|
10844
|
+
[key: string]: any;
|
|
10845
|
+
});
|
|
10846
|
+
}
|
|
10847
|
+
export declare class ListLogstashResponseBodyResultNetworkConfig extends $tea.Model {
|
|
10848
|
+
type?: string;
|
|
10849
|
+
vpcId?: string;
|
|
10850
|
+
vsArea?: string;
|
|
10851
|
+
vswitchId?: string;
|
|
10852
|
+
static names(): {
|
|
10853
|
+
[key: string]: string;
|
|
10854
|
+
};
|
|
10855
|
+
static types(): {
|
|
10856
|
+
[key: string]: any;
|
|
10857
|
+
};
|
|
10858
|
+
constructor(map?: {
|
|
10859
|
+
[key: string]: any;
|
|
10860
|
+
});
|
|
10861
|
+
}
|
|
10862
|
+
export declare class ListLogstashResponseBodyResultNodeSpec extends $tea.Model {
|
|
10863
|
+
disk?: number;
|
|
10864
|
+
diskEncryption?: boolean;
|
|
10865
|
+
diskType?: string;
|
|
10866
|
+
spec?: string;
|
|
10867
|
+
static names(): {
|
|
10868
|
+
[key: string]: string;
|
|
10869
|
+
};
|
|
10870
|
+
static types(): {
|
|
10871
|
+
[key: string]: any;
|
|
10872
|
+
};
|
|
10873
|
+
constructor(map?: {
|
|
10874
|
+
[key: string]: any;
|
|
10875
|
+
});
|
|
10876
|
+
}
|
|
10877
|
+
export declare class ListLogstashResponseBodyResult extends $tea.Model {
|
|
10878
|
+
tags?: ListLogstashResponseBodyResultTags[];
|
|
10879
|
+
createdAt?: string;
|
|
10880
|
+
description?: string;
|
|
10881
|
+
instanceId?: string;
|
|
10882
|
+
networkConfig?: ListLogstashResponseBodyResultNetworkConfig;
|
|
10883
|
+
nodeAmount?: number;
|
|
10884
|
+
nodeSpec?: ListLogstashResponseBodyResultNodeSpec;
|
|
10885
|
+
paymentType?: string;
|
|
10886
|
+
status?: string;
|
|
10887
|
+
updatedAt?: string;
|
|
10888
|
+
version?: string;
|
|
10889
|
+
static names(): {
|
|
10890
|
+
[key: string]: string;
|
|
10891
|
+
};
|
|
10892
|
+
static types(): {
|
|
10893
|
+
[key: string]: any;
|
|
10894
|
+
};
|
|
10895
|
+
constructor(map?: {
|
|
10896
|
+
[key: string]: any;
|
|
10897
|
+
});
|
|
10898
|
+
}
|
|
9943
10899
|
export declare class ListLogstashLogResponseBodyResult extends $tea.Model {
|
|
9944
10900
|
content?: string;
|
|
9945
10901
|
host?: string;
|
|
@@ -10552,6 +11508,8 @@ export declare class RestartInstanceResponseBodyResult extends $tea.Model {
|
|
|
10552
11508
|
}
|
|
10553
11509
|
export declare class ShrinkNodeRequestBody extends $tea.Model {
|
|
10554
11510
|
host?: string;
|
|
11511
|
+
hostName?: string;
|
|
11512
|
+
nodeType?: string;
|
|
10555
11513
|
port?: number;
|
|
10556
11514
|
zoneId?: string;
|
|
10557
11515
|
static names(): {
|
|
@@ -10844,11 +11802,11 @@ export declare class UpdateHotIkDictsResponseBodyResult extends $tea.Model {
|
|
|
10844
11802
|
[key: string]: any;
|
|
10845
11803
|
});
|
|
10846
11804
|
}
|
|
10847
|
-
export declare class
|
|
10848
|
-
|
|
10849
|
-
|
|
10850
|
-
|
|
10851
|
-
|
|
11805
|
+
export declare class UpdateInstanceResponseBodyResultKibanaConfiguration extends $tea.Model {
|
|
11806
|
+
amount?: number;
|
|
11807
|
+
disk?: number;
|
|
11808
|
+
diskType?: string;
|
|
11809
|
+
spec?: string;
|
|
10852
11810
|
static names(): {
|
|
10853
11811
|
[key: string]: string;
|
|
10854
11812
|
};
|
|
@@ -10859,7 +11817,7 @@ export declare class UpdateInstanceResponseBodyResultDictList extends $tea.Model
|
|
|
10859
11817
|
[key: string]: any;
|
|
10860
11818
|
});
|
|
10861
11819
|
}
|
|
10862
|
-
export declare class
|
|
11820
|
+
export declare class UpdateInstanceResponseBodyResultMasterConfiguration extends $tea.Model {
|
|
10863
11821
|
amount?: number;
|
|
10864
11822
|
disk?: number;
|
|
10865
11823
|
diskType?: string;
|
|
@@ -10874,8 +11832,7 @@ export declare class UpdateInstanceResponseBodyResultKibanaConfiguration extends
|
|
|
10874
11832
|
[key: string]: any;
|
|
10875
11833
|
});
|
|
10876
11834
|
}
|
|
10877
|
-
export declare class
|
|
10878
|
-
amount?: number;
|
|
11835
|
+
export declare class UpdateInstanceResponseBodyResultNodeSpec extends $tea.Model {
|
|
10879
11836
|
disk?: number;
|
|
10880
11837
|
diskType?: string;
|
|
10881
11838
|
spec?: string;
|
|
@@ -10889,11 +11846,18 @@ export declare class UpdateInstanceResponseBodyResultMasterConfiguration extends
|
|
|
10889
11846
|
[key: string]: any;
|
|
10890
11847
|
});
|
|
10891
11848
|
}
|
|
10892
|
-
export declare class
|
|
10893
|
-
|
|
10894
|
-
|
|
10895
|
-
|
|
10896
|
-
|
|
11849
|
+
export declare class UpdateInstanceResponseBodyResult extends $tea.Model {
|
|
11850
|
+
createdAt?: string;
|
|
11851
|
+
description?: string;
|
|
11852
|
+
domain?: string;
|
|
11853
|
+
esVersion?: string;
|
|
11854
|
+
instanceId?: string;
|
|
11855
|
+
kibanaConfiguration?: UpdateInstanceResponseBodyResultKibanaConfiguration;
|
|
11856
|
+
masterConfiguration?: UpdateInstanceResponseBodyResultMasterConfiguration;
|
|
11857
|
+
nodeAmount?: number;
|
|
11858
|
+
nodeSpec?: UpdateInstanceResponseBodyResultNodeSpec;
|
|
11859
|
+
paymentType?: string;
|
|
11860
|
+
status?: string;
|
|
10897
11861
|
static names(): {
|
|
10898
11862
|
[key: string]: string;
|
|
10899
11863
|
};
|
|
@@ -10904,10 +11868,10 @@ export declare class UpdateInstanceResponseBodyResultNetworkConfig extends $tea.
|
|
|
10904
11868
|
[key: string]: any;
|
|
10905
11869
|
});
|
|
10906
11870
|
}
|
|
10907
|
-
export declare class
|
|
10908
|
-
|
|
10909
|
-
|
|
10910
|
-
|
|
11871
|
+
export declare class UpdateKibanaWhiteIpsRequestWhiteIpGroup extends $tea.Model {
|
|
11872
|
+
groupName?: string;
|
|
11873
|
+
ips?: string[];
|
|
11874
|
+
whiteIpType?: string;
|
|
10911
11875
|
static names(): {
|
|
10912
11876
|
[key: string]: string;
|
|
10913
11877
|
};
|
|
@@ -10918,11 +11882,10 @@ export declare class UpdateInstanceResponseBodyResultNodeSpec extends $tea.Model
|
|
|
10918
11882
|
[key: string]: any;
|
|
10919
11883
|
});
|
|
10920
11884
|
}
|
|
10921
|
-
export declare class
|
|
10922
|
-
|
|
10923
|
-
|
|
10924
|
-
|
|
10925
|
-
type?: string;
|
|
11885
|
+
export declare class UpdateKibanaWhiteIpsResponseBodyResultNetworkConfigWhiteIpGroupList extends $tea.Model {
|
|
11886
|
+
groupName?: string;
|
|
11887
|
+
ips?: string[];
|
|
11888
|
+
whiteIpType?: string;
|
|
10926
11889
|
static names(): {
|
|
10927
11890
|
[key: string]: string;
|
|
10928
11891
|
};
|
|
@@ -10933,26 +11896,12 @@ export declare class UpdateInstanceResponseBodyResultSynonymsDicts extends $tea.
|
|
|
10933
11896
|
[key: string]: any;
|
|
10934
11897
|
});
|
|
10935
11898
|
}
|
|
10936
|
-
export declare class
|
|
10937
|
-
|
|
10938
|
-
|
|
10939
|
-
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
instanceId?: string;
|
|
10943
|
-
kibanaConfiguration?: UpdateInstanceResponseBodyResultKibanaConfiguration;
|
|
10944
|
-
kibanaDomain?: string;
|
|
10945
|
-
kibanaPort?: number;
|
|
10946
|
-
masterConfiguration?: UpdateInstanceResponseBodyResultMasterConfiguration;
|
|
10947
|
-
networkConfig?: UpdateInstanceResponseBodyResultNetworkConfig;
|
|
10948
|
-
nodeAmount?: number;
|
|
10949
|
-
nodeSpec?: UpdateInstanceResponseBodyResultNodeSpec;
|
|
10950
|
-
paymentType?: string;
|
|
10951
|
-
publicDomain?: string;
|
|
10952
|
-
publicPort?: number;
|
|
10953
|
-
status?: string;
|
|
10954
|
-
synonymsDicts?: UpdateInstanceResponseBodyResultSynonymsDicts[];
|
|
10955
|
-
updatedAt?: string;
|
|
11899
|
+
export declare class UpdateKibanaWhiteIpsResponseBodyResultNetworkConfig extends $tea.Model {
|
|
11900
|
+
type?: string;
|
|
11901
|
+
vpcId?: string;
|
|
11902
|
+
vsArea?: string;
|
|
11903
|
+
vswitchId?: string;
|
|
11904
|
+
whiteIpGroupList?: UpdateKibanaWhiteIpsResponseBodyResultNetworkConfigWhiteIpGroupList[];
|
|
10956
11905
|
static names(): {
|
|
10957
11906
|
[key: string]: string;
|
|
10958
11907
|
};
|
|
@@ -10966,6 +11915,7 @@ export declare class UpdateInstanceResponseBodyResult extends $tea.Model {
|
|
|
10966
11915
|
export declare class UpdateKibanaWhiteIpsResponseBodyResult extends $tea.Model {
|
|
10967
11916
|
kibanaIPWhitelist?: string[];
|
|
10968
11917
|
kibanaPrivateIPWhitelist?: string[];
|
|
11918
|
+
networkConfig?: UpdateKibanaWhiteIpsResponseBodyResultNetworkConfig;
|
|
10969
11919
|
static names(): {
|
|
10970
11920
|
[key: string]: string;
|
|
10971
11921
|
};
|
|
@@ -10990,19 +11940,6 @@ export declare class UpdateLogstashRequestNodeSpec extends $tea.Model {
|
|
|
10990
11940
|
[key: string]: any;
|
|
10991
11941
|
});
|
|
10992
11942
|
}
|
|
10993
|
-
export declare class UpdateLogstashChargeTypeRequestPaymentInfo extends $tea.Model {
|
|
10994
|
-
duration?: number;
|
|
10995
|
-
pricingCycle?: string;
|
|
10996
|
-
static names(): {
|
|
10997
|
-
[key: string]: string;
|
|
10998
|
-
};
|
|
10999
|
-
static types(): {
|
|
11000
|
-
[key: string]: any;
|
|
11001
|
-
};
|
|
11002
|
-
constructor(map?: {
|
|
11003
|
-
[key: string]: any;
|
|
11004
|
-
});
|
|
11005
|
-
}
|
|
11006
11943
|
export declare class UpdateLogstashDescriptionResponseBodyResult extends $tea.Model {
|
|
11007
11944
|
description?: string;
|
|
11008
11945
|
static names(): {
|
|
@@ -11148,7 +12085,7 @@ export declare class UpgradeEngineVersionResponseBodyResultValidateResult extend
|
|
|
11148
12085
|
}
|
|
11149
12086
|
export declare class UpgradeEngineVersionResponseBodyResult extends $tea.Model {
|
|
11150
12087
|
status?: string;
|
|
11151
|
-
validateResult?: UpgradeEngineVersionResponseBodyResultValidateResult;
|
|
12088
|
+
validateResult?: UpgradeEngineVersionResponseBodyResultValidateResult[];
|
|
11152
12089
|
validateType?: string;
|
|
11153
12090
|
static names(): {
|
|
11154
12091
|
[key: string]: string;
|
|
@@ -11162,6 +12099,8 @@ export declare class UpgradeEngineVersionResponseBodyResult extends $tea.Model {
|
|
|
11162
12099
|
}
|
|
11163
12100
|
export declare class ValidateShrinkNodesRequestBody extends $tea.Model {
|
|
11164
12101
|
host?: string;
|
|
12102
|
+
hostName?: string;
|
|
12103
|
+
nodeType?: string;
|
|
11165
12104
|
port?: number;
|
|
11166
12105
|
zoneId?: string;
|
|
11167
12106
|
static names(): {
|
|
@@ -11213,8 +12152,8 @@ export default class Client extends OpenApi {
|
|
|
11213
12152
|
addConnectableClusterWithOptions(InstanceId: string, request: AddConnectableClusterRequest, headers: {
|
|
11214
12153
|
[key: string]: string;
|
|
11215
12154
|
}, runtime: $Util.RuntimeOptions): Promise<AddConnectableClusterResponse>;
|
|
11216
|
-
addSnapshotRepo(InstanceId: string): Promise<AddSnapshotRepoResponse>;
|
|
11217
|
-
addSnapshotRepoWithOptions(InstanceId: string, headers: {
|
|
12155
|
+
addSnapshotRepo(InstanceId: string, request: AddSnapshotRepoRequest): Promise<AddSnapshotRepoResponse>;
|
|
12156
|
+
addSnapshotRepoWithOptions(InstanceId: string, request: AddSnapshotRepoRequest, headers: {
|
|
11218
12157
|
[key: string]: string;
|
|
11219
12158
|
}, runtime: $Util.RuntimeOptions): Promise<AddSnapshotRepoResponse>;
|
|
11220
12159
|
cancelDeletion(InstanceId: string, request: CancelDeletionRequest): Promise<CancelDeletionResponse>;
|
|
@@ -11373,6 +12312,10 @@ export default class Client extends OpenApi {
|
|
|
11373
12312
|
describeDiagnosisSettingsWithOptions(InstanceId: string, request: DescribeDiagnosisSettingsRequest, headers: {
|
|
11374
12313
|
[key: string]: string;
|
|
11375
12314
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisSettingsResponse>;
|
|
12315
|
+
describeDynamicSettings(InstanceId: string): Promise<DescribeDynamicSettingsResponse>;
|
|
12316
|
+
describeDynamicSettingsWithOptions(InstanceId: string, headers: {
|
|
12317
|
+
[key: string]: string;
|
|
12318
|
+
}, runtime: $Util.RuntimeOptions): Promise<DescribeDynamicSettingsResponse>;
|
|
11376
12319
|
describeElasticsearchHealth(InstanceId: string): Promise<DescribeElasticsearchHealthResponse>;
|
|
11377
12320
|
describeElasticsearchHealthWithOptions(InstanceId: string, headers: {
|
|
11378
12321
|
[key: string]: string;
|
|
@@ -11433,24 +12376,24 @@ export default class Client extends OpenApi {
|
|
|
11433
12376
|
estimatedRestartTimeWithOptions(InstanceId: string, request: EstimatedRestartTimeRequest, headers: {
|
|
11434
12377
|
[key: string]: string;
|
|
11435
12378
|
}, runtime: $Util.RuntimeOptions): Promise<EstimatedRestartTimeResponse>;
|
|
11436
|
-
getClusterDataInformation(): Promise<GetClusterDataInformationResponse>;
|
|
11437
|
-
getClusterDataInformationWithOptions(headers: {
|
|
12379
|
+
getClusterDataInformation(request: GetClusterDataInformationRequest): Promise<GetClusterDataInformationResponse>;
|
|
12380
|
+
getClusterDataInformationWithOptions(request: GetClusterDataInformationRequest, headers: {
|
|
11438
12381
|
[key: string]: string;
|
|
11439
12382
|
}, runtime: $Util.RuntimeOptions): Promise<GetClusterDataInformationResponse>;
|
|
11440
12383
|
getElastictask(InstanceId: string): Promise<GetElastictaskResponse>;
|
|
11441
12384
|
getElastictaskWithOptions(InstanceId: string, headers: {
|
|
11442
12385
|
[key: string]: string;
|
|
11443
12386
|
}, runtime: $Util.RuntimeOptions): Promise<GetElastictaskResponse>;
|
|
11444
|
-
getEmonGrafanaAlerts(ProjectId: string): Promise<GetEmonGrafanaAlertsResponse>;
|
|
11445
|
-
getEmonGrafanaAlertsWithOptions(ProjectId: string, headers: {
|
|
12387
|
+
getEmonGrafanaAlerts(ProjectId: string, request: GetEmonGrafanaAlertsRequest): Promise<GetEmonGrafanaAlertsResponse>;
|
|
12388
|
+
getEmonGrafanaAlertsWithOptions(ProjectId: string, request: GetEmonGrafanaAlertsRequest, headers: {
|
|
11446
12389
|
[key: string]: string;
|
|
11447
12390
|
}, runtime: $Util.RuntimeOptions): Promise<GetEmonGrafanaAlertsResponse>;
|
|
11448
|
-
getEmonGrafanaDashboards(ProjectId: string): Promise<GetEmonGrafanaDashboardsResponse>;
|
|
11449
|
-
getEmonGrafanaDashboardsWithOptions(ProjectId: string, headers: {
|
|
12391
|
+
getEmonGrafanaDashboards(ProjectId: string, request: GetEmonGrafanaDashboardsRequest): Promise<GetEmonGrafanaDashboardsResponse>;
|
|
12392
|
+
getEmonGrafanaDashboardsWithOptions(ProjectId: string, request: GetEmonGrafanaDashboardsRequest, headers: {
|
|
11450
12393
|
[key: string]: string;
|
|
11451
12394
|
}, runtime: $Util.RuntimeOptions): Promise<GetEmonGrafanaDashboardsResponse>;
|
|
11452
|
-
getEmonMonitorData(ProjectId: string): Promise<GetEmonMonitorDataResponse>;
|
|
11453
|
-
getEmonMonitorDataWithOptions(ProjectId: string, headers: {
|
|
12395
|
+
getEmonMonitorData(ProjectId: string, request: GetEmonMonitorDataRequest): Promise<GetEmonMonitorDataResponse>;
|
|
12396
|
+
getEmonMonitorDataWithOptions(ProjectId: string, request: GetEmonMonitorDataRequest, headers: {
|
|
11454
12397
|
[key: string]: string;
|
|
11455
12398
|
}, runtime: $Util.RuntimeOptions): Promise<GetEmonMonitorDataResponse>;
|
|
11456
12399
|
getOpenStoreUsage(InstanceId: string): Promise<GetOpenStoreUsageResponse>;
|
|
@@ -11489,8 +12432,8 @@ export default class Client extends OpenApi {
|
|
|
11489
12432
|
installSystemPluginWithOptions(InstanceId: string, request: InstallSystemPluginRequest, headers: {
|
|
11490
12433
|
[key: string]: string;
|
|
11491
12434
|
}, runtime: $Util.RuntimeOptions): Promise<InstallSystemPluginResponse>;
|
|
11492
|
-
installUserPlugins(InstanceId: string): Promise<InstallUserPluginsResponse>;
|
|
11493
|
-
installUserPluginsWithOptions(InstanceId: string, headers: {
|
|
12435
|
+
installUserPlugins(InstanceId: string, request: InstallUserPluginsRequest): Promise<InstallUserPluginsResponse>;
|
|
12436
|
+
installUserPluginsWithOptions(InstanceId: string, request: InstallUserPluginsRequest, headers: {
|
|
11494
12437
|
[key: string]: string;
|
|
11495
12438
|
}, runtime: $Util.RuntimeOptions): Promise<InstallUserPluginsResponse>;
|
|
11496
12439
|
interruptElasticsearchTask(InstanceId: string, request: InterruptElasticsearchTaskRequest): Promise<InterruptElasticsearchTaskResponse>;
|
|
@@ -11509,6 +12452,10 @@ export default class Client extends OpenApi {
|
|
|
11509
12452
|
listAckNamespacesWithOptions(ClusterId: string, request: ListAckNamespacesRequest, headers: {
|
|
11510
12453
|
[key: string]: string;
|
|
11511
12454
|
}, runtime: $Util.RuntimeOptions): Promise<ListAckNamespacesResponse>;
|
|
12455
|
+
listActionRecords(InstanceId: string, request: ListActionRecordsRequest): Promise<ListActionRecordsResponse>;
|
|
12456
|
+
listActionRecordsWithOptions(InstanceId: string, request: ListActionRecordsRequest, headers: {
|
|
12457
|
+
[key: string]: string;
|
|
12458
|
+
}, runtime: $Util.RuntimeOptions): Promise<ListActionRecordsResponse>;
|
|
11512
12459
|
listAllNode(InstanceId: string, request: ListAllNodeRequest): Promise<ListAllNodeResponse>;
|
|
11513
12460
|
listAllNodeWithOptions(InstanceId: string, request: ListAllNodeRequest, headers: {
|
|
11514
12461
|
[key: string]: string;
|
|
@@ -11594,7 +12541,7 @@ export default class Client extends OpenApi {
|
|
|
11594
12541
|
[key: string]: string;
|
|
11595
12542
|
}, runtime: $Util.RuntimeOptions): Promise<ListInstanceResponse>;
|
|
11596
12543
|
listInstanceHistoryEvents(request: ListInstanceHistoryEventsRequest): Promise<ListInstanceHistoryEventsResponse>;
|
|
11597
|
-
listInstanceHistoryEventsWithOptions(
|
|
12544
|
+
listInstanceHistoryEventsWithOptions(tmpReq: ListInstanceHistoryEventsRequest, headers: {
|
|
11598
12545
|
[key: string]: string;
|
|
11599
12546
|
}, runtime: $Util.RuntimeOptions): Promise<ListInstanceHistoryEventsResponse>;
|
|
11600
12547
|
listInstanceIndices(InstanceId: string, request: ListInstanceIndicesRequest): Promise<ListInstanceIndicesResponse>;
|
|
@@ -11625,8 +12572,8 @@ export default class Client extends OpenApi {
|
|
|
11625
12572
|
listPipelineWithOptions(InstanceId: string, request: ListPipelineRequest, headers: {
|
|
11626
12573
|
[key: string]: string;
|
|
11627
12574
|
}, runtime: $Util.RuntimeOptions): Promise<ListPipelineResponse>;
|
|
11628
|
-
listPipelineIds(InstanceId: string): Promise<ListPipelineIdsResponse>;
|
|
11629
|
-
listPipelineIdsWithOptions(InstanceId: string, headers: {
|
|
12575
|
+
listPipelineIds(InstanceId: string, request: ListPipelineIdsRequest): Promise<ListPipelineIdsResponse>;
|
|
12576
|
+
listPipelineIdsWithOptions(InstanceId: string, request: ListPipelineIdsRequest, headers: {
|
|
11630
12577
|
[key: string]: string;
|
|
11631
12578
|
}, runtime: $Util.RuntimeOptions): Promise<ListPipelineIdsResponse>;
|
|
11632
12579
|
listPlugins(InstanceId: string, request: ListPluginsRequest): Promise<ListPluginsResponse>;
|
|
@@ -11665,8 +12612,8 @@ export default class Client extends OpenApi {
|
|
|
11665
12612
|
modifyDeployMachineWithOptions(ResId: string, request: ModifyDeployMachineRequest, headers: {
|
|
11666
12613
|
[key: string]: string;
|
|
11667
12614
|
}, runtime: $Util.RuntimeOptions): Promise<ModifyDeployMachineResponse>;
|
|
11668
|
-
modifyElastictask(InstanceId: string): Promise<ModifyElastictaskResponse>;
|
|
11669
|
-
modifyElastictaskWithOptions(InstanceId: string, headers: {
|
|
12615
|
+
modifyElastictask(InstanceId: string, request: ModifyElastictaskRequest): Promise<ModifyElastictaskResponse>;
|
|
12616
|
+
modifyElastictaskWithOptions(InstanceId: string, request: ModifyElastictaskRequest, headers: {
|
|
11670
12617
|
[key: string]: string;
|
|
11671
12618
|
}, runtime: $Util.RuntimeOptions): Promise<ModifyElastictaskResponse>;
|
|
11672
12619
|
modifyInstanceMaintainTime(InstanceId: string, request: ModifyInstanceMaintainTimeRequest): Promise<ModifyInstanceMaintainTimeResponse>;
|
|
@@ -11689,8 +12636,8 @@ export default class Client extends OpenApi {
|
|
|
11689
12636
|
openHttpsWithOptions(InstanceId: string, request: OpenHttpsRequest, headers: {
|
|
11690
12637
|
[key: string]: string;
|
|
11691
12638
|
}, runtime: $Util.RuntimeOptions): Promise<OpenHttpsResponse>;
|
|
11692
|
-
postEmonTryAlarmRule(ProjectId: string, AlarmGroupId: string): Promise<PostEmonTryAlarmRuleResponse>;
|
|
11693
|
-
postEmonTryAlarmRuleWithOptions(ProjectId: string, AlarmGroupId: string, headers: {
|
|
12639
|
+
postEmonTryAlarmRule(ProjectId: string, AlarmGroupId: string, request: PostEmonTryAlarmRuleRequest): Promise<PostEmonTryAlarmRuleResponse>;
|
|
12640
|
+
postEmonTryAlarmRuleWithOptions(ProjectId: string, AlarmGroupId: string, request: PostEmonTryAlarmRuleRequest, headers: {
|
|
11694
12641
|
[key: string]: string;
|
|
11695
12642
|
}, runtime: $Util.RuntimeOptions): Promise<PostEmonTryAlarmRuleResponse>;
|
|
11696
12643
|
recommendTemplates(InstanceId: string, request: RecommendTemplatesRequest): Promise<RecommendTemplatesResponse>;
|
|
@@ -11837,6 +12784,10 @@ export default class Client extends OpenApi {
|
|
|
11837
12784
|
updateDictWithOptions(InstanceId: string, request: UpdateDictRequest, headers: {
|
|
11838
12785
|
[key: string]: string;
|
|
11839
12786
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateDictResponse>;
|
|
12787
|
+
updateDynamicSettings(InstanceId: string, request: UpdateDynamicSettingsRequest): Promise<UpdateDynamicSettingsResponse>;
|
|
12788
|
+
updateDynamicSettingsWithOptions(InstanceId: string, request: UpdateDynamicSettingsRequest, headers: {
|
|
12789
|
+
[key: string]: string;
|
|
12790
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateDynamicSettingsResponse>;
|
|
11840
12791
|
updateExtendConfig(InstanceId: string, request: UpdateExtendConfigRequest): Promise<UpdateExtendConfigResponse>;
|
|
11841
12792
|
updateExtendConfigWithOptions(InstanceId: string, request: UpdateExtendConfigRequest, headers: {
|
|
11842
12793
|
[key: string]: string;
|
|
@@ -11917,8 +12868,8 @@ export default class Client extends OpenApi {
|
|
|
11917
12868
|
updateReadWritePolicyWithOptions(InstanceId: string, request: UpdateReadWritePolicyRequest, headers: {
|
|
11918
12869
|
[key: string]: string;
|
|
11919
12870
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateReadWritePolicyResponse>;
|
|
11920
|
-
updateSnapshotSetting(InstanceId: string): Promise<UpdateSnapshotSettingResponse>;
|
|
11921
|
-
updateSnapshotSettingWithOptions(InstanceId: string, headers: {
|
|
12871
|
+
updateSnapshotSetting(InstanceId: string, request: UpdateSnapshotSettingRequest): Promise<UpdateSnapshotSettingResponse>;
|
|
12872
|
+
updateSnapshotSettingWithOptions(InstanceId: string, request: UpdateSnapshotSettingRequest, headers: {
|
|
11922
12873
|
[key: string]: string;
|
|
11923
12874
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateSnapshotSettingResponse>;
|
|
11924
12875
|
updateSynonymsDicts(InstanceId: string, request: UpdateSynonymsDictsRequest): Promise<UpdateSynonymsDictsResponse>;
|