@alicloud/elasticsearch20170613 1.1.5 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1038 -756
- package/dist/client.js +607 -172
- package/dist/client.js.map +1 -1
- package/package.json +5 -5
- package/src/client.ts +1329 -801
package/dist/client.d.ts
CHANGED
|
@@ -237,6 +237,28 @@ export declare class MasterNodeConfiguration extends $tea.Model {
|
|
|
237
237
|
[key: string]: any;
|
|
238
238
|
});
|
|
239
239
|
}
|
|
240
|
+
export declare class MigrationJob extends $tea.Model {
|
|
241
|
+
currentState?: string;
|
|
242
|
+
disableSourceClusterAuth?: boolean;
|
|
243
|
+
disableTargetClusterAuth?: boolean;
|
|
244
|
+
endTime?: number;
|
|
245
|
+
migrationJobId?: string;
|
|
246
|
+
phase?: string;
|
|
247
|
+
sourceCluster?: MigrationJobSourceCluster;
|
|
248
|
+
startTime?: number;
|
|
249
|
+
statusResult?: MigrationJobStatusResult[];
|
|
250
|
+
targetCluster?: MigrationJobTargetCluster;
|
|
251
|
+
updateTime?: number;
|
|
252
|
+
static names(): {
|
|
253
|
+
[key: string]: string;
|
|
254
|
+
};
|
|
255
|
+
static types(): {
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
};
|
|
258
|
+
constructor(map?: {
|
|
259
|
+
[key: string]: any;
|
|
260
|
+
});
|
|
261
|
+
}
|
|
240
262
|
export declare class NetworkConfig extends $tea.Model {
|
|
241
263
|
type?: string;
|
|
242
264
|
vpcId?: string;
|
|
@@ -370,6 +392,24 @@ export declare class ZoneInfo extends $tea.Model {
|
|
|
370
392
|
[key: string]: any;
|
|
371
393
|
});
|
|
372
394
|
}
|
|
395
|
+
export declare class ResultSpecInfoMapValue extends $tea.Model {
|
|
396
|
+
cpuCount?: string;
|
|
397
|
+
memorySize?: string;
|
|
398
|
+
enable?: string;
|
|
399
|
+
spec?: string;
|
|
400
|
+
specGroupType?: string;
|
|
401
|
+
disk?: string;
|
|
402
|
+
diskType?: string;
|
|
403
|
+
static names(): {
|
|
404
|
+
[key: string]: string;
|
|
405
|
+
};
|
|
406
|
+
static types(): {
|
|
407
|
+
[key: string]: any;
|
|
408
|
+
};
|
|
409
|
+
constructor(map?: {
|
|
410
|
+
[key: string]: any;
|
|
411
|
+
});
|
|
412
|
+
}
|
|
373
413
|
export declare class ActivateZonesRequest extends $tea.Model {
|
|
374
414
|
body?: string;
|
|
375
415
|
clientToken?: string;
|
|
@@ -397,11 +437,11 @@ export declare class ActivateZonesResponseBody extends $tea.Model {
|
|
|
397
437
|
});
|
|
398
438
|
}
|
|
399
439
|
export declare class ActivateZonesResponse extends $tea.Model {
|
|
400
|
-
headers
|
|
440
|
+
headers?: {
|
|
401
441
|
[key: string]: string;
|
|
402
442
|
};
|
|
403
|
-
statusCode
|
|
404
|
-
body
|
|
443
|
+
statusCode?: number;
|
|
444
|
+
body?: ActivateZonesResponseBody;
|
|
405
445
|
static names(): {
|
|
406
446
|
[key: string]: string;
|
|
407
447
|
};
|
|
@@ -439,11 +479,11 @@ export declare class AddConnectableClusterResponseBody extends $tea.Model {
|
|
|
439
479
|
});
|
|
440
480
|
}
|
|
441
481
|
export declare class AddConnectableClusterResponse extends $tea.Model {
|
|
442
|
-
headers
|
|
482
|
+
headers?: {
|
|
443
483
|
[key: string]: string;
|
|
444
484
|
};
|
|
445
|
-
statusCode
|
|
446
|
-
body
|
|
485
|
+
statusCode?: number;
|
|
486
|
+
body?: AddConnectableClusterResponseBody;
|
|
447
487
|
static names(): {
|
|
448
488
|
[key: string]: string;
|
|
449
489
|
};
|
|
@@ -480,11 +520,11 @@ export declare class AddSnapshotRepoResponseBody extends $tea.Model {
|
|
|
480
520
|
});
|
|
481
521
|
}
|
|
482
522
|
export declare class AddSnapshotRepoResponse extends $tea.Model {
|
|
483
|
-
headers
|
|
523
|
+
headers?: {
|
|
484
524
|
[key: string]: string;
|
|
485
525
|
};
|
|
486
|
-
statusCode
|
|
487
|
-
body
|
|
526
|
+
statusCode?: number;
|
|
527
|
+
body?: AddSnapshotRepoResponseBody;
|
|
488
528
|
static names(): {
|
|
489
529
|
[key: string]: string;
|
|
490
530
|
};
|
|
@@ -521,11 +561,11 @@ export declare class CancelDeletionResponseBody extends $tea.Model {
|
|
|
521
561
|
});
|
|
522
562
|
}
|
|
523
563
|
export declare class CancelDeletionResponse extends $tea.Model {
|
|
524
|
-
headers
|
|
564
|
+
headers?: {
|
|
525
565
|
[key: string]: string;
|
|
526
566
|
};
|
|
527
|
-
statusCode
|
|
528
|
-
body
|
|
567
|
+
statusCode?: number;
|
|
568
|
+
body?: CancelDeletionResponseBody;
|
|
529
569
|
static names(): {
|
|
530
570
|
[key: string]: string;
|
|
531
571
|
};
|
|
@@ -562,11 +602,11 @@ export declare class CancelLogstashDeletionResponseBody extends $tea.Model {
|
|
|
562
602
|
});
|
|
563
603
|
}
|
|
564
604
|
export declare class CancelLogstashDeletionResponse extends $tea.Model {
|
|
565
|
-
headers
|
|
605
|
+
headers?: {
|
|
566
606
|
[key: string]: string;
|
|
567
607
|
};
|
|
568
|
-
statusCode
|
|
569
|
-
body
|
|
608
|
+
statusCode?: number;
|
|
609
|
+
body?: CancelLogstashDeletionResponseBody;
|
|
570
610
|
static names(): {
|
|
571
611
|
[key: string]: string;
|
|
572
612
|
};
|
|
@@ -604,11 +644,11 @@ export declare class CancelTaskResponseBody extends $tea.Model {
|
|
|
604
644
|
});
|
|
605
645
|
}
|
|
606
646
|
export declare class CancelTaskResponse extends $tea.Model {
|
|
607
|
-
headers
|
|
647
|
+
headers?: {
|
|
608
648
|
[key: string]: string;
|
|
609
649
|
};
|
|
610
|
-
statusCode
|
|
611
|
-
body
|
|
650
|
+
statusCode?: number;
|
|
651
|
+
body?: CancelTaskResponseBody;
|
|
612
652
|
static names(): {
|
|
613
653
|
[key: string]: string;
|
|
614
654
|
};
|
|
@@ -648,11 +688,11 @@ export declare class CapacityPlanResponseBody extends $tea.Model {
|
|
|
648
688
|
});
|
|
649
689
|
}
|
|
650
690
|
export declare class CapacityPlanResponse extends $tea.Model {
|
|
651
|
-
headers
|
|
691
|
+
headers?: {
|
|
652
692
|
[key: string]: string;
|
|
653
693
|
};
|
|
654
|
-
statusCode
|
|
655
|
-
body
|
|
694
|
+
statusCode?: number;
|
|
695
|
+
body?: CapacityPlanResponseBody;
|
|
656
696
|
static names(): {
|
|
657
697
|
[key: string]: string;
|
|
658
698
|
};
|
|
@@ -690,11 +730,11 @@ export declare class CloseDiagnosisResponseBody extends $tea.Model {
|
|
|
690
730
|
});
|
|
691
731
|
}
|
|
692
732
|
export declare class CloseDiagnosisResponse extends $tea.Model {
|
|
693
|
-
headers
|
|
733
|
+
headers?: {
|
|
694
734
|
[key: string]: string;
|
|
695
735
|
};
|
|
696
|
-
statusCode
|
|
697
|
-
body
|
|
736
|
+
statusCode?: number;
|
|
737
|
+
body?: CloseDiagnosisResponseBody;
|
|
698
738
|
static names(): {
|
|
699
739
|
[key: string]: string;
|
|
700
740
|
};
|
|
@@ -731,11 +771,11 @@ export declare class CloseHttpsResponseBody extends $tea.Model {
|
|
|
731
771
|
});
|
|
732
772
|
}
|
|
733
773
|
export declare class CloseHttpsResponse extends $tea.Model {
|
|
734
|
-
headers
|
|
774
|
+
headers?: {
|
|
735
775
|
[key: string]: string;
|
|
736
776
|
};
|
|
737
|
-
statusCode
|
|
738
|
-
body
|
|
777
|
+
statusCode?: number;
|
|
778
|
+
body?: CloseHttpsResponseBody;
|
|
739
779
|
static names(): {
|
|
740
780
|
[key: string]: string;
|
|
741
781
|
};
|
|
@@ -772,11 +812,11 @@ export declare class CloseManagedIndexResponseBody extends $tea.Model {
|
|
|
772
812
|
});
|
|
773
813
|
}
|
|
774
814
|
export declare class CloseManagedIndexResponse extends $tea.Model {
|
|
775
|
-
headers
|
|
815
|
+
headers?: {
|
|
776
816
|
[key: string]: string;
|
|
777
817
|
};
|
|
778
|
-
statusCode
|
|
779
|
-
body
|
|
818
|
+
statusCode?: number;
|
|
819
|
+
body?: CloseManagedIndexResponseBody;
|
|
780
820
|
static names(): {
|
|
781
821
|
[key: string]: string;
|
|
782
822
|
};
|
|
@@ -823,11 +863,11 @@ export declare class CreateCollectorResponseBody extends $tea.Model {
|
|
|
823
863
|
});
|
|
824
864
|
}
|
|
825
865
|
export declare class CreateCollectorResponse extends $tea.Model {
|
|
826
|
-
headers
|
|
866
|
+
headers?: {
|
|
827
867
|
[key: string]: string;
|
|
828
868
|
};
|
|
829
|
-
statusCode
|
|
830
|
-
body
|
|
869
|
+
statusCode?: number;
|
|
870
|
+
body?: CreateCollectorResponseBody;
|
|
831
871
|
static names(): {
|
|
832
872
|
[key: string]: string;
|
|
833
873
|
};
|
|
@@ -867,11 +907,11 @@ export declare class CreateComponentIndexResponseBody extends $tea.Model {
|
|
|
867
907
|
});
|
|
868
908
|
}
|
|
869
909
|
export declare class CreateComponentIndexResponse extends $tea.Model {
|
|
870
|
-
headers
|
|
910
|
+
headers?: {
|
|
871
911
|
[key: string]: string;
|
|
872
912
|
};
|
|
873
|
-
statusCode
|
|
874
|
-
body
|
|
913
|
+
statusCode?: number;
|
|
914
|
+
body?: CreateComponentIndexResponseBody;
|
|
875
915
|
static names(): {
|
|
876
916
|
[key: string]: string;
|
|
877
917
|
};
|
|
@@ -909,11 +949,11 @@ export declare class CreateDataStreamResponseBody extends $tea.Model {
|
|
|
909
949
|
});
|
|
910
950
|
}
|
|
911
951
|
export declare class CreateDataStreamResponse extends $tea.Model {
|
|
912
|
-
headers
|
|
952
|
+
headers?: {
|
|
913
953
|
[key: string]: string;
|
|
914
954
|
};
|
|
915
|
-
statusCode
|
|
916
|
-
body
|
|
955
|
+
statusCode?: number;
|
|
956
|
+
body?: CreateDataStreamResponseBody;
|
|
917
957
|
static names(): {
|
|
918
958
|
[key: string]: string;
|
|
919
959
|
};
|
|
@@ -951,11 +991,11 @@ export declare class CreateDataTasksResponseBody extends $tea.Model {
|
|
|
951
991
|
});
|
|
952
992
|
}
|
|
953
993
|
export declare class CreateDataTasksResponse extends $tea.Model {
|
|
954
|
-
headers
|
|
994
|
+
headers?: {
|
|
955
995
|
[key: string]: string;
|
|
956
996
|
};
|
|
957
|
-
statusCode
|
|
958
|
-
body
|
|
997
|
+
statusCode?: number;
|
|
998
|
+
body?: CreateDataTasksResponseBody;
|
|
959
999
|
static names(): {
|
|
960
1000
|
[key: string]: string;
|
|
961
1001
|
};
|
|
@@ -993,11 +1033,11 @@ export declare class CreateILMPolicyResponseBody extends $tea.Model {
|
|
|
993
1033
|
});
|
|
994
1034
|
}
|
|
995
1035
|
export declare class CreateILMPolicyResponse extends $tea.Model {
|
|
996
|
-
headers
|
|
1036
|
+
headers?: {
|
|
997
1037
|
[key: string]: string;
|
|
998
1038
|
};
|
|
999
|
-
statusCode
|
|
1000
|
-
body
|
|
1039
|
+
statusCode?: number;
|
|
1040
|
+
body?: CreateILMPolicyResponseBody;
|
|
1001
1041
|
static names(): {
|
|
1002
1042
|
[key: string]: string;
|
|
1003
1043
|
};
|
|
@@ -1040,11 +1080,11 @@ export declare class CreateIndexTemplateResponseBody extends $tea.Model {
|
|
|
1040
1080
|
});
|
|
1041
1081
|
}
|
|
1042
1082
|
export declare class CreateIndexTemplateResponse extends $tea.Model {
|
|
1043
|
-
headers
|
|
1083
|
+
headers?: {
|
|
1044
1084
|
[key: string]: string;
|
|
1045
1085
|
};
|
|
1046
|
-
statusCode
|
|
1047
|
-
body
|
|
1086
|
+
statusCode?: number;
|
|
1087
|
+
body?: CreateIndexTemplateResponseBody;
|
|
1048
1088
|
static names(): {
|
|
1049
1089
|
[key: string]: string;
|
|
1050
1090
|
};
|
|
@@ -1089,11 +1129,11 @@ export declare class CreateLogstashResponseBody extends $tea.Model {
|
|
|
1089
1129
|
});
|
|
1090
1130
|
}
|
|
1091
1131
|
export declare class CreateLogstashResponse extends $tea.Model {
|
|
1092
|
-
headers
|
|
1132
|
+
headers?: {
|
|
1093
1133
|
[key: string]: string;
|
|
1094
1134
|
};
|
|
1095
|
-
statusCode
|
|
1096
|
-
body
|
|
1135
|
+
statusCode?: number;
|
|
1136
|
+
body?: CreateLogstashResponseBody;
|
|
1097
1137
|
static names(): {
|
|
1098
1138
|
[key: string]: string;
|
|
1099
1139
|
};
|
|
@@ -1132,11 +1172,11 @@ export declare class CreatePipelinesResponseBody extends $tea.Model {
|
|
|
1132
1172
|
});
|
|
1133
1173
|
}
|
|
1134
1174
|
export declare class CreatePipelinesResponse extends $tea.Model {
|
|
1135
|
-
headers
|
|
1175
|
+
headers?: {
|
|
1136
1176
|
[key: string]: string;
|
|
1137
1177
|
};
|
|
1138
|
-
statusCode
|
|
1139
|
-
body
|
|
1178
|
+
statusCode?: number;
|
|
1179
|
+
body?: CreatePipelinesResponseBody;
|
|
1140
1180
|
static names(): {
|
|
1141
1181
|
[key: string]: string;
|
|
1142
1182
|
};
|
|
@@ -1174,11 +1214,11 @@ export declare class CreateSnapshotResponseBody extends $tea.Model {
|
|
|
1174
1214
|
});
|
|
1175
1215
|
}
|
|
1176
1216
|
export declare class CreateSnapshotResponse extends $tea.Model {
|
|
1177
|
-
headers
|
|
1217
|
+
headers?: {
|
|
1178
1218
|
[key: string]: string;
|
|
1179
1219
|
};
|
|
1180
|
-
statusCode
|
|
1181
|
-
body
|
|
1220
|
+
statusCode?: number;
|
|
1221
|
+
body?: CreateSnapshotResponseBody;
|
|
1182
1222
|
static names(): {
|
|
1183
1223
|
[key: string]: string;
|
|
1184
1224
|
};
|
|
@@ -1218,11 +1258,11 @@ export declare class CreateVpcEndpointResponseBody extends $tea.Model {
|
|
|
1218
1258
|
});
|
|
1219
1259
|
}
|
|
1220
1260
|
export declare class CreateVpcEndpointResponse extends $tea.Model {
|
|
1221
|
-
headers
|
|
1261
|
+
headers?: {
|
|
1222
1262
|
[key: string]: string;
|
|
1223
1263
|
};
|
|
1224
|
-
statusCode
|
|
1225
|
-
body
|
|
1264
|
+
statusCode?: number;
|
|
1265
|
+
body?: CreateVpcEndpointResponseBody;
|
|
1226
1266
|
static names(): {
|
|
1227
1267
|
[key: string]: string;
|
|
1228
1268
|
};
|
|
@@ -1260,11 +1300,11 @@ export declare class DeactivateZonesResponseBody extends $tea.Model {
|
|
|
1260
1300
|
});
|
|
1261
1301
|
}
|
|
1262
1302
|
export declare class DeactivateZonesResponse extends $tea.Model {
|
|
1263
|
-
headers
|
|
1303
|
+
headers?: {
|
|
1264
1304
|
[key: string]: string;
|
|
1265
1305
|
};
|
|
1266
|
-
statusCode
|
|
1267
|
-
body
|
|
1306
|
+
statusCode?: number;
|
|
1307
|
+
body?: DeactivateZonesResponseBody;
|
|
1268
1308
|
static names(): {
|
|
1269
1309
|
[key: string]: string;
|
|
1270
1310
|
};
|
|
@@ -1301,11 +1341,11 @@ export declare class DeleteCollectorResponseBody extends $tea.Model {
|
|
|
1301
1341
|
});
|
|
1302
1342
|
}
|
|
1303
1343
|
export declare class DeleteCollectorResponse extends $tea.Model {
|
|
1304
|
-
headers
|
|
1344
|
+
headers?: {
|
|
1305
1345
|
[key: string]: string;
|
|
1306
1346
|
};
|
|
1307
|
-
statusCode
|
|
1308
|
-
body
|
|
1347
|
+
statusCode?: number;
|
|
1348
|
+
body?: DeleteCollectorResponseBody;
|
|
1309
1349
|
static names(): {
|
|
1310
1350
|
[key: string]: string;
|
|
1311
1351
|
};
|
|
@@ -1330,11 +1370,11 @@ export declare class DeleteComponentIndexResponseBody extends $tea.Model {
|
|
|
1330
1370
|
});
|
|
1331
1371
|
}
|
|
1332
1372
|
export declare class DeleteComponentIndexResponse extends $tea.Model {
|
|
1333
|
-
headers
|
|
1373
|
+
headers?: {
|
|
1334
1374
|
[key: string]: string;
|
|
1335
1375
|
};
|
|
1336
|
-
statusCode
|
|
1337
|
-
body
|
|
1376
|
+
statusCode?: number;
|
|
1377
|
+
body?: DeleteComponentIndexResponseBody;
|
|
1338
1378
|
static names(): {
|
|
1339
1379
|
[key: string]: string;
|
|
1340
1380
|
};
|
|
@@ -1372,11 +1412,11 @@ export declare class DeleteConnectedClusterResponseBody extends $tea.Model {
|
|
|
1372
1412
|
});
|
|
1373
1413
|
}
|
|
1374
1414
|
export declare class DeleteConnectedClusterResponse extends $tea.Model {
|
|
1375
|
-
headers
|
|
1415
|
+
headers?: {
|
|
1376
1416
|
[key: string]: string;
|
|
1377
1417
|
};
|
|
1378
|
-
statusCode
|
|
1379
|
-
body
|
|
1418
|
+
statusCode?: number;
|
|
1419
|
+
body?: DeleteConnectedClusterResponseBody;
|
|
1380
1420
|
static names(): {
|
|
1381
1421
|
[key: string]: string;
|
|
1382
1422
|
};
|
|
@@ -1413,11 +1453,11 @@ export declare class DeleteDataStreamResponseBody extends $tea.Model {
|
|
|
1413
1453
|
});
|
|
1414
1454
|
}
|
|
1415
1455
|
export declare class DeleteDataStreamResponse extends $tea.Model {
|
|
1416
|
-
headers
|
|
1456
|
+
headers?: {
|
|
1417
1457
|
[key: string]: string;
|
|
1418
1458
|
};
|
|
1419
|
-
statusCode
|
|
1420
|
-
body
|
|
1459
|
+
statusCode?: number;
|
|
1460
|
+
body?: DeleteDataStreamResponseBody;
|
|
1421
1461
|
static names(): {
|
|
1422
1462
|
[key: string]: string;
|
|
1423
1463
|
};
|
|
@@ -1455,11 +1495,11 @@ export declare class DeleteDataTaskResponseBody extends $tea.Model {
|
|
|
1455
1495
|
});
|
|
1456
1496
|
}
|
|
1457
1497
|
export declare class DeleteDataTaskResponse extends $tea.Model {
|
|
1458
|
-
headers
|
|
1498
|
+
headers?: {
|
|
1459
1499
|
[key: string]: string;
|
|
1460
1500
|
};
|
|
1461
|
-
statusCode
|
|
1462
|
-
body
|
|
1501
|
+
statusCode?: number;
|
|
1502
|
+
body?: DeleteDataTaskResponseBody;
|
|
1463
1503
|
static names(): {
|
|
1464
1504
|
[key: string]: string;
|
|
1465
1505
|
};
|
|
@@ -1484,11 +1524,11 @@ export declare class DeleteDeprecatedTemplateResponseBody extends $tea.Model {
|
|
|
1484
1524
|
});
|
|
1485
1525
|
}
|
|
1486
1526
|
export declare class DeleteDeprecatedTemplateResponse extends $tea.Model {
|
|
1487
|
-
headers
|
|
1527
|
+
headers?: {
|
|
1488
1528
|
[key: string]: string;
|
|
1489
1529
|
};
|
|
1490
|
-
statusCode
|
|
1491
|
-
body
|
|
1530
|
+
statusCode?: number;
|
|
1531
|
+
body?: DeleteDeprecatedTemplateResponseBody;
|
|
1492
1532
|
static names(): {
|
|
1493
1533
|
[key: string]: string;
|
|
1494
1534
|
};
|
|
@@ -1513,11 +1553,11 @@ export declare class DeleteILMPolicyResponseBody extends $tea.Model {
|
|
|
1513
1553
|
});
|
|
1514
1554
|
}
|
|
1515
1555
|
export declare class DeleteILMPolicyResponse extends $tea.Model {
|
|
1516
|
-
headers
|
|
1556
|
+
headers?: {
|
|
1517
1557
|
[key: string]: string;
|
|
1518
1558
|
};
|
|
1519
|
-
statusCode
|
|
1520
|
-
body
|
|
1559
|
+
statusCode?: number;
|
|
1560
|
+
body?: DeleteILMPolicyResponseBody;
|
|
1521
1561
|
static names(): {
|
|
1522
1562
|
[key: string]: string;
|
|
1523
1563
|
};
|
|
@@ -1542,11 +1582,11 @@ export declare class DeleteIndexTemplateResponseBody extends $tea.Model {
|
|
|
1542
1582
|
});
|
|
1543
1583
|
}
|
|
1544
1584
|
export declare class DeleteIndexTemplateResponse extends $tea.Model {
|
|
1545
|
-
headers
|
|
1585
|
+
headers?: {
|
|
1546
1586
|
[key: string]: string;
|
|
1547
1587
|
};
|
|
1548
|
-
statusCode
|
|
1549
|
-
body
|
|
1588
|
+
statusCode?: number;
|
|
1589
|
+
body?: DeleteIndexTemplateResponseBody;
|
|
1550
1590
|
static names(): {
|
|
1551
1591
|
[key: string]: string;
|
|
1552
1592
|
};
|
|
@@ -1583,11 +1623,11 @@ export declare class DeleteInstanceResponseBody extends $tea.Model {
|
|
|
1583
1623
|
});
|
|
1584
1624
|
}
|
|
1585
1625
|
export declare class DeleteInstanceResponse extends $tea.Model {
|
|
1586
|
-
headers
|
|
1626
|
+
headers?: {
|
|
1587
1627
|
[key: string]: string;
|
|
1588
1628
|
};
|
|
1589
|
-
statusCode
|
|
1590
|
-
body
|
|
1629
|
+
statusCode?: number;
|
|
1630
|
+
body?: DeleteInstanceResponseBody;
|
|
1591
1631
|
static names(): {
|
|
1592
1632
|
[key: string]: string;
|
|
1593
1633
|
};
|
|
@@ -1624,11 +1664,11 @@ export declare class DeleteLogstashResponseBody extends $tea.Model {
|
|
|
1624
1664
|
});
|
|
1625
1665
|
}
|
|
1626
1666
|
export declare class DeleteLogstashResponse extends $tea.Model {
|
|
1627
|
-
headers
|
|
1667
|
+
headers?: {
|
|
1628
1668
|
[key: string]: string;
|
|
1629
1669
|
};
|
|
1630
|
-
statusCode
|
|
1631
|
-
body
|
|
1670
|
+
statusCode?: number;
|
|
1671
|
+
body?: DeleteLogstashResponseBody;
|
|
1632
1672
|
static names(): {
|
|
1633
1673
|
[key: string]: string;
|
|
1634
1674
|
};
|
|
@@ -1666,11 +1706,11 @@ export declare class DeletePipelinesResponseBody extends $tea.Model {
|
|
|
1666
1706
|
});
|
|
1667
1707
|
}
|
|
1668
1708
|
export declare class DeletePipelinesResponse extends $tea.Model {
|
|
1669
|
-
headers
|
|
1709
|
+
headers?: {
|
|
1670
1710
|
[key: string]: string;
|
|
1671
1711
|
};
|
|
1672
|
-
statusCode
|
|
1673
|
-
body
|
|
1712
|
+
statusCode?: number;
|
|
1713
|
+
body?: DeletePipelinesResponseBody;
|
|
1674
1714
|
static names(): {
|
|
1675
1715
|
[key: string]: string;
|
|
1676
1716
|
};
|
|
@@ -1708,11 +1748,11 @@ export declare class DeleteSnapshotRepoResponseBody extends $tea.Model {
|
|
|
1708
1748
|
});
|
|
1709
1749
|
}
|
|
1710
1750
|
export declare class DeleteSnapshotRepoResponse extends $tea.Model {
|
|
1711
|
-
headers
|
|
1751
|
+
headers?: {
|
|
1712
1752
|
[key: string]: string;
|
|
1713
1753
|
};
|
|
1714
|
-
statusCode
|
|
1715
|
-
body
|
|
1754
|
+
statusCode?: number;
|
|
1755
|
+
body?: DeleteSnapshotRepoResponseBody;
|
|
1716
1756
|
static names(): {
|
|
1717
1757
|
[key: string]: string;
|
|
1718
1758
|
};
|
|
@@ -1749,11 +1789,11 @@ export declare class DeleteVpcEndpointResponseBody extends $tea.Model {
|
|
|
1749
1789
|
});
|
|
1750
1790
|
}
|
|
1751
1791
|
export declare class DeleteVpcEndpointResponse extends $tea.Model {
|
|
1752
|
-
headers
|
|
1792
|
+
headers?: {
|
|
1753
1793
|
[key: string]: string;
|
|
1754
1794
|
};
|
|
1755
|
-
statusCode
|
|
1756
|
-
body
|
|
1795
|
+
statusCode?: number;
|
|
1796
|
+
body?: DeleteVpcEndpointResponseBody;
|
|
1757
1797
|
static names(): {
|
|
1758
1798
|
[key: string]: string;
|
|
1759
1799
|
};
|
|
@@ -1778,11 +1818,11 @@ export declare class DescribeAckOperatorResponseBody extends $tea.Model {
|
|
|
1778
1818
|
});
|
|
1779
1819
|
}
|
|
1780
1820
|
export declare class DescribeAckOperatorResponse extends $tea.Model {
|
|
1781
|
-
headers
|
|
1821
|
+
headers?: {
|
|
1782
1822
|
[key: string]: string;
|
|
1783
1823
|
};
|
|
1784
|
-
statusCode
|
|
1785
|
-
body
|
|
1824
|
+
statusCode?: number;
|
|
1825
|
+
body?: DescribeAckOperatorResponseBody;
|
|
1786
1826
|
static names(): {
|
|
1787
1827
|
[key: string]: string;
|
|
1788
1828
|
};
|
|
@@ -1807,11 +1847,11 @@ export declare class DescribeApmResponseBody extends $tea.Model {
|
|
|
1807
1847
|
});
|
|
1808
1848
|
}
|
|
1809
1849
|
export declare class DescribeApmResponse extends $tea.Model {
|
|
1810
|
-
headers
|
|
1850
|
+
headers?: {
|
|
1811
1851
|
[key: string]: string;
|
|
1812
1852
|
};
|
|
1813
|
-
statusCode
|
|
1814
|
-
body
|
|
1853
|
+
statusCode?: number;
|
|
1854
|
+
body?: DescribeApmResponseBody;
|
|
1815
1855
|
static names(): {
|
|
1816
1856
|
[key: string]: string;
|
|
1817
1857
|
};
|
|
@@ -1836,11 +1876,11 @@ export declare class DescribeCollectorResponseBody extends $tea.Model {
|
|
|
1836
1876
|
});
|
|
1837
1877
|
}
|
|
1838
1878
|
export declare class DescribeCollectorResponse extends $tea.Model {
|
|
1839
|
-
headers
|
|
1879
|
+
headers?: {
|
|
1840
1880
|
[key: string]: string;
|
|
1841
1881
|
};
|
|
1842
|
-
statusCode
|
|
1843
|
-
body
|
|
1882
|
+
statusCode?: number;
|
|
1883
|
+
body?: DescribeCollectorResponseBody;
|
|
1844
1884
|
static names(): {
|
|
1845
1885
|
[key: string]: string;
|
|
1846
1886
|
};
|
|
@@ -1865,11 +1905,11 @@ export declare class DescribeComponentIndexResponseBody extends $tea.Model {
|
|
|
1865
1905
|
});
|
|
1866
1906
|
}
|
|
1867
1907
|
export declare class DescribeComponentIndexResponse extends $tea.Model {
|
|
1868
|
-
headers
|
|
1908
|
+
headers?: {
|
|
1869
1909
|
[key: string]: string;
|
|
1870
1910
|
};
|
|
1871
|
-
statusCode
|
|
1872
|
-
body
|
|
1911
|
+
statusCode?: number;
|
|
1912
|
+
body?: DescribeComponentIndexResponseBody;
|
|
1873
1913
|
static names(): {
|
|
1874
1914
|
[key: string]: string;
|
|
1875
1915
|
};
|
|
@@ -1906,11 +1946,11 @@ export declare class DescribeConnectableClustersResponseBody extends $tea.Model
|
|
|
1906
1946
|
});
|
|
1907
1947
|
}
|
|
1908
1948
|
export declare class DescribeConnectableClustersResponse extends $tea.Model {
|
|
1909
|
-
headers
|
|
1949
|
+
headers?: {
|
|
1910
1950
|
[key: string]: string;
|
|
1911
1951
|
};
|
|
1912
|
-
statusCode
|
|
1913
|
-
body
|
|
1952
|
+
statusCode?: number;
|
|
1953
|
+
body?: DescribeConnectableClustersResponseBody;
|
|
1914
1954
|
static names(): {
|
|
1915
1955
|
[key: string]: string;
|
|
1916
1956
|
};
|
|
@@ -1935,11 +1975,11 @@ export declare class DescribeDeprecatedTemplateResponseBody extends $tea.Model {
|
|
|
1935
1975
|
});
|
|
1936
1976
|
}
|
|
1937
1977
|
export declare class DescribeDeprecatedTemplateResponse extends $tea.Model {
|
|
1938
|
-
headers
|
|
1978
|
+
headers?: {
|
|
1939
1979
|
[key: string]: string;
|
|
1940
1980
|
};
|
|
1941
|
-
statusCode
|
|
1942
|
-
body
|
|
1981
|
+
statusCode?: number;
|
|
1982
|
+
body?: DescribeDeprecatedTemplateResponseBody;
|
|
1943
1983
|
static names(): {
|
|
1944
1984
|
[key: string]: string;
|
|
1945
1985
|
};
|
|
@@ -1976,11 +2016,11 @@ export declare class DescribeDiagnoseReportResponseBody extends $tea.Model {
|
|
|
1976
2016
|
});
|
|
1977
2017
|
}
|
|
1978
2018
|
export declare class DescribeDiagnoseReportResponse extends $tea.Model {
|
|
1979
|
-
headers
|
|
2019
|
+
headers?: {
|
|
1980
2020
|
[key: string]: string;
|
|
1981
2021
|
};
|
|
1982
|
-
statusCode
|
|
1983
|
-
body
|
|
2022
|
+
statusCode?: number;
|
|
2023
|
+
body?: DescribeDiagnoseReportResponseBody;
|
|
1984
2024
|
static names(): {
|
|
1985
2025
|
[key: string]: string;
|
|
1986
2026
|
};
|
|
@@ -2017,11 +2057,11 @@ export declare class DescribeDiagnosisSettingsResponseBody extends $tea.Model {
|
|
|
2017
2057
|
});
|
|
2018
2058
|
}
|
|
2019
2059
|
export declare class DescribeDiagnosisSettingsResponse extends $tea.Model {
|
|
2020
|
-
headers
|
|
2060
|
+
headers?: {
|
|
2021
2061
|
[key: string]: string;
|
|
2022
2062
|
};
|
|
2023
|
-
statusCode
|
|
2024
|
-
body
|
|
2063
|
+
statusCode?: number;
|
|
2064
|
+
body?: DescribeDiagnosisSettingsResponseBody;
|
|
2025
2065
|
static names(): {
|
|
2026
2066
|
[key: string]: string;
|
|
2027
2067
|
};
|
|
@@ -2046,11 +2086,11 @@ export declare class DescribeDynamicSettingsResponseBody extends $tea.Model {
|
|
|
2046
2086
|
});
|
|
2047
2087
|
}
|
|
2048
2088
|
export declare class DescribeDynamicSettingsResponse extends $tea.Model {
|
|
2049
|
-
headers
|
|
2089
|
+
headers?: {
|
|
2050
2090
|
[key: string]: string;
|
|
2051
2091
|
};
|
|
2052
|
-
statusCode
|
|
2053
|
-
body
|
|
2092
|
+
statusCode?: number;
|
|
2093
|
+
body?: DescribeDynamicSettingsResponseBody;
|
|
2054
2094
|
static names(): {
|
|
2055
2095
|
[key: string]: string;
|
|
2056
2096
|
};
|
|
@@ -2077,11 +2117,11 @@ export declare class DescribeElasticsearchHealthResponseBody extends $tea.Model
|
|
|
2077
2117
|
});
|
|
2078
2118
|
}
|
|
2079
2119
|
export declare class DescribeElasticsearchHealthResponse extends $tea.Model {
|
|
2080
|
-
headers
|
|
2120
|
+
headers?: {
|
|
2081
2121
|
[key: string]: string;
|
|
2082
2122
|
};
|
|
2083
|
-
statusCode
|
|
2084
|
-
body
|
|
2123
|
+
statusCode?: number;
|
|
2124
|
+
body?: DescribeElasticsearchHealthResponseBody;
|
|
2085
2125
|
static names(): {
|
|
2086
2126
|
[key: string]: string;
|
|
2087
2127
|
};
|
|
@@ -2106,11 +2146,11 @@ export declare class DescribeILMPolicyResponseBody extends $tea.Model {
|
|
|
2106
2146
|
});
|
|
2107
2147
|
}
|
|
2108
2148
|
export declare class DescribeILMPolicyResponse extends $tea.Model {
|
|
2109
|
-
headers
|
|
2149
|
+
headers?: {
|
|
2110
2150
|
[key: string]: string;
|
|
2111
2151
|
};
|
|
2112
|
-
statusCode
|
|
2113
|
-
body
|
|
2152
|
+
statusCode?: number;
|
|
2153
|
+
body?: DescribeILMPolicyResponseBody;
|
|
2114
2154
|
static names(): {
|
|
2115
2155
|
[key: string]: string;
|
|
2116
2156
|
};
|
|
@@ -2135,11 +2175,11 @@ export declare class DescribeIndexTemplateResponseBody extends $tea.Model {
|
|
|
2135
2175
|
});
|
|
2136
2176
|
}
|
|
2137
2177
|
export declare class DescribeIndexTemplateResponse extends $tea.Model {
|
|
2138
|
-
headers
|
|
2178
|
+
headers?: {
|
|
2139
2179
|
[key: string]: string;
|
|
2140
2180
|
};
|
|
2141
|
-
statusCode
|
|
2142
|
-
body
|
|
2181
|
+
statusCode?: number;
|
|
2182
|
+
body?: DescribeIndexTemplateResponseBody;
|
|
2143
2183
|
static names(): {
|
|
2144
2184
|
[key: string]: string;
|
|
2145
2185
|
};
|
|
@@ -2164,11 +2204,11 @@ export declare class DescribeInstanceResponseBody extends $tea.Model {
|
|
|
2164
2204
|
});
|
|
2165
2205
|
}
|
|
2166
2206
|
export declare class DescribeInstanceResponse extends $tea.Model {
|
|
2167
|
-
headers
|
|
2207
|
+
headers?: {
|
|
2168
2208
|
[key: string]: string;
|
|
2169
2209
|
};
|
|
2170
|
-
statusCode
|
|
2171
|
-
body
|
|
2210
|
+
statusCode?: number;
|
|
2211
|
+
body?: DescribeInstanceResponseBody;
|
|
2172
2212
|
static names(): {
|
|
2173
2213
|
[key: string]: string;
|
|
2174
2214
|
};
|
|
@@ -2195,11 +2235,11 @@ export declare class DescribeKibanaSettingsResponseBody extends $tea.Model {
|
|
|
2195
2235
|
});
|
|
2196
2236
|
}
|
|
2197
2237
|
export declare class DescribeKibanaSettingsResponse extends $tea.Model {
|
|
2198
|
-
headers
|
|
2238
|
+
headers?: {
|
|
2199
2239
|
[key: string]: string;
|
|
2200
2240
|
};
|
|
2201
|
-
statusCode
|
|
2202
|
-
body
|
|
2241
|
+
statusCode?: number;
|
|
2242
|
+
body?: DescribeKibanaSettingsResponseBody;
|
|
2203
2243
|
static names(): {
|
|
2204
2244
|
[key: string]: string;
|
|
2205
2245
|
};
|
|
@@ -2224,11 +2264,11 @@ export declare class DescribeLogstashResponseBody extends $tea.Model {
|
|
|
2224
2264
|
});
|
|
2225
2265
|
}
|
|
2226
2266
|
export declare class DescribeLogstashResponse extends $tea.Model {
|
|
2227
|
-
headers
|
|
2267
|
+
headers?: {
|
|
2228
2268
|
[key: string]: string;
|
|
2229
2269
|
};
|
|
2230
|
-
statusCode
|
|
2231
|
-
body
|
|
2270
|
+
statusCode?: number;
|
|
2271
|
+
body?: DescribeLogstashResponseBody;
|
|
2232
2272
|
static names(): {
|
|
2233
2273
|
[key: string]: string;
|
|
2234
2274
|
};
|
|
@@ -2253,11 +2293,11 @@ export declare class DescribePipelineResponseBody extends $tea.Model {
|
|
|
2253
2293
|
});
|
|
2254
2294
|
}
|
|
2255
2295
|
export declare class DescribePipelineResponse extends $tea.Model {
|
|
2256
|
-
headers
|
|
2296
|
+
headers?: {
|
|
2257
2297
|
[key: string]: string;
|
|
2258
2298
|
};
|
|
2259
|
-
statusCode
|
|
2260
|
-
body
|
|
2299
|
+
statusCode?: number;
|
|
2300
|
+
body?: DescribePipelineResponseBody;
|
|
2261
2301
|
static names(): {
|
|
2262
2302
|
[key: string]: string;
|
|
2263
2303
|
};
|
|
@@ -2294,11 +2334,11 @@ export declare class DescribePipelineManagementConfigResponseBody extends $tea.M
|
|
|
2294
2334
|
});
|
|
2295
2335
|
}
|
|
2296
2336
|
export declare class DescribePipelineManagementConfigResponse extends $tea.Model {
|
|
2297
|
-
headers
|
|
2337
|
+
headers?: {
|
|
2298
2338
|
[key: string]: string;
|
|
2299
2339
|
};
|
|
2300
|
-
statusCode
|
|
2301
|
-
body
|
|
2340
|
+
statusCode?: number;
|
|
2341
|
+
body?: DescribePipelineManagementConfigResponseBody;
|
|
2302
2342
|
static names(): {
|
|
2303
2343
|
[key: string]: string;
|
|
2304
2344
|
};
|
|
@@ -2323,11 +2363,11 @@ export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
2323
2363
|
});
|
|
2324
2364
|
}
|
|
2325
2365
|
export declare class DescribeRegionsResponse extends $tea.Model {
|
|
2326
|
-
headers
|
|
2366
|
+
headers?: {
|
|
2327
2367
|
[key: string]: string;
|
|
2328
2368
|
};
|
|
2329
|
-
statusCode
|
|
2330
|
-
body
|
|
2369
|
+
statusCode?: number;
|
|
2370
|
+
body?: DescribeRegionsResponseBody;
|
|
2331
2371
|
static names(): {
|
|
2332
2372
|
[key: string]: string;
|
|
2333
2373
|
};
|
|
@@ -2352,11 +2392,11 @@ export declare class DescribeSnapshotSettingResponseBody extends $tea.Model {
|
|
|
2352
2392
|
});
|
|
2353
2393
|
}
|
|
2354
2394
|
export declare class DescribeSnapshotSettingResponse extends $tea.Model {
|
|
2355
|
-
headers
|
|
2395
|
+
headers?: {
|
|
2356
2396
|
[key: string]: string;
|
|
2357
2397
|
};
|
|
2358
|
-
statusCode
|
|
2359
|
-
body
|
|
2398
|
+
statusCode?: number;
|
|
2399
|
+
body?: DescribeSnapshotSettingResponseBody;
|
|
2360
2400
|
static names(): {
|
|
2361
2401
|
[key: string]: string;
|
|
2362
2402
|
};
|
|
@@ -2381,11 +2421,11 @@ export declare class DescribeTemplatesResponseBody extends $tea.Model {
|
|
|
2381
2421
|
});
|
|
2382
2422
|
}
|
|
2383
2423
|
export declare class DescribeTemplatesResponse extends $tea.Model {
|
|
2384
|
-
headers
|
|
2424
|
+
headers?: {
|
|
2385
2425
|
[key: string]: string;
|
|
2386
2426
|
};
|
|
2387
|
-
statusCode
|
|
2388
|
-
body
|
|
2427
|
+
statusCode?: number;
|
|
2428
|
+
body?: DescribeTemplatesResponseBody;
|
|
2389
2429
|
static names(): {
|
|
2390
2430
|
[key: string]: string;
|
|
2391
2431
|
};
|
|
@@ -2410,11 +2450,11 @@ export declare class DescribeXpackMonitorConfigResponseBody extends $tea.Model {
|
|
|
2410
2450
|
});
|
|
2411
2451
|
}
|
|
2412
2452
|
export declare class DescribeXpackMonitorConfigResponse extends $tea.Model {
|
|
2413
|
-
headers
|
|
2453
|
+
headers?: {
|
|
2414
2454
|
[key: string]: string;
|
|
2415
2455
|
};
|
|
2416
|
-
statusCode
|
|
2417
|
-
body
|
|
2456
|
+
statusCode?: number;
|
|
2457
|
+
body?: DescribeXpackMonitorConfigResponseBody;
|
|
2418
2458
|
static names(): {
|
|
2419
2459
|
[key: string]: string;
|
|
2420
2460
|
};
|
|
@@ -2455,11 +2495,11 @@ export declare class DiagnoseInstanceResponseBody extends $tea.Model {
|
|
|
2455
2495
|
});
|
|
2456
2496
|
}
|
|
2457
2497
|
export declare class DiagnoseInstanceResponse extends $tea.Model {
|
|
2458
|
-
headers
|
|
2498
|
+
headers?: {
|
|
2459
2499
|
[key: string]: string;
|
|
2460
2500
|
};
|
|
2461
|
-
statusCode
|
|
2462
|
-
body
|
|
2501
|
+
statusCode?: number;
|
|
2502
|
+
body?: DiagnoseInstanceResponseBody;
|
|
2463
2503
|
static names(): {
|
|
2464
2504
|
[key: string]: string;
|
|
2465
2505
|
};
|
|
@@ -2497,11 +2537,11 @@ export declare class EstimatedLogstashRestartTimeResponseBody extends $tea.Model
|
|
|
2497
2537
|
});
|
|
2498
2538
|
}
|
|
2499
2539
|
export declare class EstimatedLogstashRestartTimeResponse extends $tea.Model {
|
|
2500
|
-
headers
|
|
2540
|
+
headers?: {
|
|
2501
2541
|
[key: string]: string;
|
|
2502
2542
|
};
|
|
2503
|
-
statusCode
|
|
2504
|
-
body
|
|
2543
|
+
statusCode?: number;
|
|
2544
|
+
body?: EstimatedLogstashRestartTimeResponseBody;
|
|
2505
2545
|
static names(): {
|
|
2506
2546
|
[key: string]: string;
|
|
2507
2547
|
};
|
|
@@ -2539,11 +2579,11 @@ export declare class EstimatedRestartTimeResponseBody extends $tea.Model {
|
|
|
2539
2579
|
});
|
|
2540
2580
|
}
|
|
2541
2581
|
export declare class EstimatedRestartTimeResponse extends $tea.Model {
|
|
2542
|
-
headers
|
|
2582
|
+
headers?: {
|
|
2543
2583
|
[key: string]: string;
|
|
2544
2584
|
};
|
|
2545
|
-
statusCode
|
|
2546
|
-
body
|
|
2585
|
+
statusCode?: number;
|
|
2586
|
+
body?: EstimatedRestartTimeResponseBody;
|
|
2547
2587
|
static names(): {
|
|
2548
2588
|
[key: string]: string;
|
|
2549
2589
|
};
|
|
@@ -2580,11 +2620,11 @@ export declare class GetClusterDataInformationResponseBody extends $tea.Model {
|
|
|
2580
2620
|
});
|
|
2581
2621
|
}
|
|
2582
2622
|
export declare class GetClusterDataInformationResponse extends $tea.Model {
|
|
2583
|
-
headers
|
|
2623
|
+
headers?: {
|
|
2584
2624
|
[key: string]: string;
|
|
2585
2625
|
};
|
|
2586
|
-
statusCode
|
|
2587
|
-
body
|
|
2626
|
+
statusCode?: number;
|
|
2627
|
+
body?: GetClusterDataInformationResponseBody;
|
|
2588
2628
|
static names(): {
|
|
2589
2629
|
[key: string]: string;
|
|
2590
2630
|
};
|
|
@@ -2609,11 +2649,11 @@ export declare class GetElastictaskResponseBody extends $tea.Model {
|
|
|
2609
2649
|
});
|
|
2610
2650
|
}
|
|
2611
2651
|
export declare class GetElastictaskResponse extends $tea.Model {
|
|
2612
|
-
headers
|
|
2652
|
+
headers?: {
|
|
2613
2653
|
[key: string]: string;
|
|
2614
2654
|
};
|
|
2615
|
-
statusCode
|
|
2616
|
-
body
|
|
2655
|
+
statusCode?: number;
|
|
2656
|
+
body?: GetElastictaskResponseBody;
|
|
2617
2657
|
static names(): {
|
|
2618
2658
|
[key: string]: string;
|
|
2619
2659
|
};
|
|
@@ -2652,11 +2692,11 @@ export declare class GetEmonGrafanaAlertsResponseBody extends $tea.Model {
|
|
|
2652
2692
|
});
|
|
2653
2693
|
}
|
|
2654
2694
|
export declare class GetEmonGrafanaAlertsResponse extends $tea.Model {
|
|
2655
|
-
headers
|
|
2695
|
+
headers?: {
|
|
2656
2696
|
[key: string]: string;
|
|
2657
2697
|
};
|
|
2658
|
-
statusCode
|
|
2659
|
-
body
|
|
2698
|
+
statusCode?: number;
|
|
2699
|
+
body?: GetEmonGrafanaAlertsResponseBody;
|
|
2660
2700
|
static names(): {
|
|
2661
2701
|
[key: string]: string;
|
|
2662
2702
|
};
|
|
@@ -2695,11 +2735,11 @@ export declare class GetEmonGrafanaDashboardsResponseBody extends $tea.Model {
|
|
|
2695
2735
|
});
|
|
2696
2736
|
}
|
|
2697
2737
|
export declare class GetEmonGrafanaDashboardsResponse extends $tea.Model {
|
|
2698
|
-
headers
|
|
2738
|
+
headers?: {
|
|
2699
2739
|
[key: string]: string;
|
|
2700
2740
|
};
|
|
2701
|
-
statusCode
|
|
2702
|
-
body
|
|
2741
|
+
statusCode?: number;
|
|
2742
|
+
body?: GetEmonGrafanaDashboardsResponseBody;
|
|
2703
2743
|
static names(): {
|
|
2704
2744
|
[key: string]: string;
|
|
2705
2745
|
};
|
|
@@ -2739,11 +2779,11 @@ export declare class GetEmonMonitorDataResponseBody extends $tea.Model {
|
|
|
2739
2779
|
});
|
|
2740
2780
|
}
|
|
2741
2781
|
export declare class GetEmonMonitorDataResponse extends $tea.Model {
|
|
2742
|
-
headers
|
|
2782
|
+
headers?: {
|
|
2743
2783
|
[key: string]: string;
|
|
2744
2784
|
};
|
|
2745
|
-
statusCode
|
|
2746
|
-
body
|
|
2785
|
+
statusCode?: number;
|
|
2786
|
+
body?: GetEmonMonitorDataResponseBody;
|
|
2747
2787
|
static names(): {
|
|
2748
2788
|
[key: string]: string;
|
|
2749
2789
|
};
|
|
@@ -2768,11 +2808,11 @@ export declare class GetOpenStoreUsageResponseBody extends $tea.Model {
|
|
|
2768
2808
|
});
|
|
2769
2809
|
}
|
|
2770
2810
|
export declare class GetOpenStoreUsageResponse extends $tea.Model {
|
|
2771
|
-
headers
|
|
2811
|
+
headers?: {
|
|
2772
2812
|
[key: string]: string;
|
|
2773
2813
|
};
|
|
2774
|
-
statusCode
|
|
2775
|
-
body
|
|
2814
|
+
statusCode?: number;
|
|
2815
|
+
body?: GetOpenStoreUsageResponseBody;
|
|
2776
2816
|
static names(): {
|
|
2777
2817
|
[key: string]: string;
|
|
2778
2818
|
};
|
|
@@ -2809,11 +2849,40 @@ export declare class GetRegionConfigurationResponseBody extends $tea.Model {
|
|
|
2809
2849
|
});
|
|
2810
2850
|
}
|
|
2811
2851
|
export declare class GetRegionConfigurationResponse extends $tea.Model {
|
|
2812
|
-
headers
|
|
2852
|
+
headers?: {
|
|
2853
|
+
[key: string]: string;
|
|
2854
|
+
};
|
|
2855
|
+
statusCode?: number;
|
|
2856
|
+
body?: GetRegionConfigurationResponseBody;
|
|
2857
|
+
static names(): {
|
|
2858
|
+
[key: string]: string;
|
|
2859
|
+
};
|
|
2860
|
+
static types(): {
|
|
2861
|
+
[key: string]: any;
|
|
2862
|
+
};
|
|
2863
|
+
constructor(map?: {
|
|
2864
|
+
[key: string]: any;
|
|
2865
|
+
});
|
|
2866
|
+
}
|
|
2867
|
+
export declare class GetRegionalInstanceConfigResponseBody extends $tea.Model {
|
|
2868
|
+
requestId?: string;
|
|
2869
|
+
result?: GetRegionalInstanceConfigResponseBodyResult;
|
|
2870
|
+
static names(): {
|
|
2871
|
+
[key: string]: string;
|
|
2872
|
+
};
|
|
2873
|
+
static types(): {
|
|
2874
|
+
[key: string]: any;
|
|
2875
|
+
};
|
|
2876
|
+
constructor(map?: {
|
|
2877
|
+
[key: string]: any;
|
|
2878
|
+
});
|
|
2879
|
+
}
|
|
2880
|
+
export declare class GetRegionalInstanceConfigResponse extends $tea.Model {
|
|
2881
|
+
headers?: {
|
|
2813
2882
|
[key: string]: string;
|
|
2814
2883
|
};
|
|
2815
|
-
statusCode
|
|
2816
|
-
body
|
|
2884
|
+
statusCode?: number;
|
|
2885
|
+
body?: GetRegionalInstanceConfigResponseBody;
|
|
2817
2886
|
static names(): {
|
|
2818
2887
|
[key: string]: string;
|
|
2819
2888
|
};
|
|
@@ -2852,11 +2921,11 @@ export declare class GetSuggestShrinkableNodesResponseBody extends $tea.Model {
|
|
|
2852
2921
|
});
|
|
2853
2922
|
}
|
|
2854
2923
|
export declare class GetSuggestShrinkableNodesResponse extends $tea.Model {
|
|
2855
|
-
headers
|
|
2924
|
+
headers?: {
|
|
2856
2925
|
[key: string]: string;
|
|
2857
2926
|
};
|
|
2858
|
-
statusCode
|
|
2859
|
-
body
|
|
2927
|
+
statusCode?: number;
|
|
2928
|
+
body?: GetSuggestShrinkableNodesResponseBody;
|
|
2860
2929
|
static names(): {
|
|
2861
2930
|
[key: string]: string;
|
|
2862
2931
|
};
|
|
@@ -2894,11 +2963,11 @@ export declare class GetTransferableNodesResponseBody extends $tea.Model {
|
|
|
2894
2963
|
});
|
|
2895
2964
|
}
|
|
2896
2965
|
export declare class GetTransferableNodesResponse extends $tea.Model {
|
|
2897
|
-
headers
|
|
2966
|
+
headers?: {
|
|
2898
2967
|
[key: string]: string;
|
|
2899
2968
|
};
|
|
2900
|
-
statusCode
|
|
2901
|
-
body
|
|
2969
|
+
statusCode?: number;
|
|
2970
|
+
body?: GetTransferableNodesResponseBody;
|
|
2902
2971
|
static names(): {
|
|
2903
2972
|
[key: string]: string;
|
|
2904
2973
|
};
|
|
@@ -2936,11 +3005,11 @@ export declare class InitializeOperationRoleResponseBody extends $tea.Model {
|
|
|
2936
3005
|
});
|
|
2937
3006
|
}
|
|
2938
3007
|
export declare class InitializeOperationRoleResponse extends $tea.Model {
|
|
2939
|
-
headers
|
|
3008
|
+
headers?: {
|
|
2940
3009
|
[key: string]: string;
|
|
2941
3010
|
};
|
|
2942
|
-
statusCode
|
|
2943
|
-
body
|
|
3011
|
+
statusCode?: number;
|
|
3012
|
+
body?: InitializeOperationRoleResponseBody;
|
|
2944
3013
|
static names(): {
|
|
2945
3014
|
[key: string]: string;
|
|
2946
3015
|
};
|
|
@@ -2978,11 +3047,11 @@ export declare class InstallAckOperatorResponseBody extends $tea.Model {
|
|
|
2978
3047
|
});
|
|
2979
3048
|
}
|
|
2980
3049
|
export declare class InstallAckOperatorResponse extends $tea.Model {
|
|
2981
|
-
headers
|
|
3050
|
+
headers?: {
|
|
2982
3051
|
[key: string]: string;
|
|
2983
3052
|
};
|
|
2984
|
-
statusCode
|
|
2985
|
-
body
|
|
3053
|
+
statusCode?: number;
|
|
3054
|
+
body?: InstallAckOperatorResponseBody;
|
|
2986
3055
|
static names(): {
|
|
2987
3056
|
[key: string]: string;
|
|
2988
3057
|
};
|
|
@@ -3020,11 +3089,11 @@ export declare class InstallKibanaSystemPluginResponseBody extends $tea.Model {
|
|
|
3020
3089
|
});
|
|
3021
3090
|
}
|
|
3022
3091
|
export declare class InstallKibanaSystemPluginResponse extends $tea.Model {
|
|
3023
|
-
headers
|
|
3092
|
+
headers?: {
|
|
3024
3093
|
[key: string]: string;
|
|
3025
3094
|
};
|
|
3026
|
-
statusCode
|
|
3027
|
-
body
|
|
3095
|
+
statusCode?: number;
|
|
3096
|
+
body?: InstallKibanaSystemPluginResponseBody;
|
|
3028
3097
|
static names(): {
|
|
3029
3098
|
[key: string]: string;
|
|
3030
3099
|
};
|
|
@@ -3062,11 +3131,11 @@ export declare class InstallLogstashSystemPluginResponseBody extends $tea.Model
|
|
|
3062
3131
|
});
|
|
3063
3132
|
}
|
|
3064
3133
|
export declare class InstallLogstashSystemPluginResponse extends $tea.Model {
|
|
3065
|
-
headers
|
|
3134
|
+
headers?: {
|
|
3066
3135
|
[key: string]: string;
|
|
3067
3136
|
};
|
|
3068
|
-
statusCode
|
|
3069
|
-
body
|
|
3137
|
+
statusCode?: number;
|
|
3138
|
+
body?: InstallLogstashSystemPluginResponseBody;
|
|
3070
3139
|
static names(): {
|
|
3071
3140
|
[key: string]: string;
|
|
3072
3141
|
};
|
|
@@ -3104,11 +3173,11 @@ export declare class InstallSystemPluginResponseBody extends $tea.Model {
|
|
|
3104
3173
|
});
|
|
3105
3174
|
}
|
|
3106
3175
|
export declare class InstallSystemPluginResponse extends $tea.Model {
|
|
3107
|
-
headers
|
|
3176
|
+
headers?: {
|
|
3108
3177
|
[key: string]: string;
|
|
3109
3178
|
};
|
|
3110
|
-
statusCode
|
|
3111
|
-
body
|
|
3179
|
+
statusCode?: number;
|
|
3180
|
+
body?: InstallSystemPluginResponseBody;
|
|
3112
3181
|
static names(): {
|
|
3113
3182
|
[key: string]: string;
|
|
3114
3183
|
};
|
|
@@ -3145,11 +3214,11 @@ export declare class InstallUserPluginsResponseBody extends $tea.Model {
|
|
|
3145
3214
|
});
|
|
3146
3215
|
}
|
|
3147
3216
|
export declare class InstallUserPluginsResponse extends $tea.Model {
|
|
3148
|
-
headers
|
|
3217
|
+
headers?: {
|
|
3149
3218
|
[key: string]: string;
|
|
3150
3219
|
};
|
|
3151
|
-
statusCode
|
|
3152
|
-
body
|
|
3220
|
+
statusCode?: number;
|
|
3221
|
+
body?: InstallUserPluginsResponseBody;
|
|
3153
3222
|
static names(): {
|
|
3154
3223
|
[key: string]: string;
|
|
3155
3224
|
};
|
|
@@ -3188,11 +3257,11 @@ export declare class InterruptElasticsearchTaskResponseBody extends $tea.Model {
|
|
|
3188
3257
|
});
|
|
3189
3258
|
}
|
|
3190
3259
|
export declare class InterruptElasticsearchTaskResponse extends $tea.Model {
|
|
3191
|
-
headers
|
|
3260
|
+
headers?: {
|
|
3192
3261
|
[key: string]: string;
|
|
3193
3262
|
};
|
|
3194
|
-
statusCode
|
|
3195
|
-
body
|
|
3263
|
+
statusCode?: number;
|
|
3264
|
+
body?: InterruptElasticsearchTaskResponseBody;
|
|
3196
3265
|
static names(): {
|
|
3197
3266
|
[key: string]: string;
|
|
3198
3267
|
};
|
|
@@ -3231,11 +3300,11 @@ export declare class InterruptLogstashTaskResponseBody extends $tea.Model {
|
|
|
3231
3300
|
});
|
|
3232
3301
|
}
|
|
3233
3302
|
export declare class InterruptLogstashTaskResponse extends $tea.Model {
|
|
3234
|
-
headers
|
|
3303
|
+
headers?: {
|
|
3235
3304
|
[key: string]: string;
|
|
3236
3305
|
};
|
|
3237
|
-
statusCode
|
|
3238
|
-
body
|
|
3306
|
+
statusCode?: number;
|
|
3307
|
+
body?: InterruptLogstashTaskResponseBody;
|
|
3239
3308
|
static names(): {
|
|
3240
3309
|
[key: string]: string;
|
|
3241
3310
|
};
|
|
@@ -3274,11 +3343,11 @@ export declare class ListAckClustersResponseBody extends $tea.Model {
|
|
|
3274
3343
|
});
|
|
3275
3344
|
}
|
|
3276
3345
|
export declare class ListAckClustersResponse extends $tea.Model {
|
|
3277
|
-
headers
|
|
3346
|
+
headers?: {
|
|
3278
3347
|
[key: string]: string;
|
|
3279
3348
|
};
|
|
3280
|
-
statusCode
|
|
3281
|
-
body
|
|
3349
|
+
statusCode?: number;
|
|
3350
|
+
body?: ListAckClustersResponseBody;
|
|
3282
3351
|
static names(): {
|
|
3283
3352
|
[key: string]: string;
|
|
3284
3353
|
};
|
|
@@ -3316,11 +3385,11 @@ export declare class ListAckNamespacesResponseBody extends $tea.Model {
|
|
|
3316
3385
|
});
|
|
3317
3386
|
}
|
|
3318
3387
|
export declare class ListAckNamespacesResponse extends $tea.Model {
|
|
3319
|
-
headers
|
|
3388
|
+
headers?: {
|
|
3320
3389
|
[key: string]: string;
|
|
3321
3390
|
};
|
|
3322
|
-
statusCode
|
|
3323
|
-
body
|
|
3391
|
+
statusCode?: number;
|
|
3392
|
+
body?: ListAckNamespacesResponseBody;
|
|
3324
3393
|
static names(): {
|
|
3325
3394
|
[key: string]: string;
|
|
3326
3395
|
};
|
|
@@ -3364,11 +3433,11 @@ export declare class ListActionRecordsResponseBody extends $tea.Model {
|
|
|
3364
3433
|
});
|
|
3365
3434
|
}
|
|
3366
3435
|
export declare class ListActionRecordsResponse extends $tea.Model {
|
|
3367
|
-
headers
|
|
3436
|
+
headers?: {
|
|
3368
3437
|
[key: string]: string;
|
|
3369
3438
|
};
|
|
3370
|
-
statusCode
|
|
3371
|
-
body
|
|
3439
|
+
statusCode?: number;
|
|
3440
|
+
body?: ListActionRecordsResponseBody;
|
|
3372
3441
|
static names(): {
|
|
3373
3442
|
[key: string]: string;
|
|
3374
3443
|
};
|
|
@@ -3405,11 +3474,11 @@ export declare class ListAllNodeResponseBody extends $tea.Model {
|
|
|
3405
3474
|
});
|
|
3406
3475
|
}
|
|
3407
3476
|
export declare class ListAllNodeResponse extends $tea.Model {
|
|
3408
|
-
headers
|
|
3477
|
+
headers?: {
|
|
3409
3478
|
[key: string]: string;
|
|
3410
3479
|
};
|
|
3411
|
-
statusCode
|
|
3412
|
-
body
|
|
3480
|
+
statusCode?: number;
|
|
3481
|
+
body?: ListAllNodeResponseBody;
|
|
3413
3482
|
static names(): {
|
|
3414
3483
|
[key: string]: string;
|
|
3415
3484
|
};
|
|
@@ -3446,11 +3515,11 @@ export declare class ListAlternativeSnapshotReposResponseBody extends $tea.Model
|
|
|
3446
3515
|
});
|
|
3447
3516
|
}
|
|
3448
3517
|
export declare class ListAlternativeSnapshotReposResponse extends $tea.Model {
|
|
3449
|
-
headers
|
|
3518
|
+
headers?: {
|
|
3450
3519
|
[key: string]: string;
|
|
3451
3520
|
};
|
|
3452
|
-
statusCode
|
|
3453
|
-
body
|
|
3521
|
+
statusCode?: number;
|
|
3522
|
+
body?: ListAlternativeSnapshotReposResponseBody;
|
|
3454
3523
|
static names(): {
|
|
3455
3524
|
[key: string]: string;
|
|
3456
3525
|
};
|
|
@@ -3492,11 +3561,11 @@ export declare class ListApmResponseBody extends $tea.Model {
|
|
|
3492
3561
|
});
|
|
3493
3562
|
}
|
|
3494
3563
|
export declare class ListApmResponse extends $tea.Model {
|
|
3495
|
-
headers
|
|
3564
|
+
headers?: {
|
|
3496
3565
|
[key: string]: string;
|
|
3497
3566
|
};
|
|
3498
|
-
statusCode
|
|
3499
|
-
body
|
|
3567
|
+
statusCode?: number;
|
|
3568
|
+
body?: ListApmResponseBody;
|
|
3500
3569
|
static names(): {
|
|
3501
3570
|
[key: string]: string;
|
|
3502
3571
|
};
|
|
@@ -3521,11 +3590,11 @@ export declare class ListAvailableEsInstanceIdsResponseBody extends $tea.Model {
|
|
|
3521
3590
|
});
|
|
3522
3591
|
}
|
|
3523
3592
|
export declare class ListAvailableEsInstanceIdsResponse extends $tea.Model {
|
|
3524
|
-
headers
|
|
3593
|
+
headers?: {
|
|
3525
3594
|
[key: string]: string;
|
|
3526
3595
|
};
|
|
3527
|
-
statusCode
|
|
3528
|
-
body
|
|
3596
|
+
statusCode?: number;
|
|
3597
|
+
body?: ListAvailableEsInstanceIdsResponseBody;
|
|
3529
3598
|
static names(): {
|
|
3530
3599
|
[key: string]: string;
|
|
3531
3600
|
};
|
|
@@ -3568,11 +3637,11 @@ export declare class ListCollectorsResponseBody extends $tea.Model {
|
|
|
3568
3637
|
});
|
|
3569
3638
|
}
|
|
3570
3639
|
export declare class ListCollectorsResponse extends $tea.Model {
|
|
3571
|
-
headers
|
|
3640
|
+
headers?: {
|
|
3572
3641
|
[key: string]: string;
|
|
3573
3642
|
};
|
|
3574
|
-
statusCode
|
|
3575
|
-
body
|
|
3643
|
+
statusCode?: number;
|
|
3644
|
+
body?: ListCollectorsResponseBody;
|
|
3576
3645
|
static names(): {
|
|
3577
3646
|
[key: string]: string;
|
|
3578
3647
|
};
|
|
@@ -3612,11 +3681,11 @@ export declare class ListComponentIndicesResponseBody extends $tea.Model {
|
|
|
3612
3681
|
});
|
|
3613
3682
|
}
|
|
3614
3683
|
export declare class ListComponentIndicesResponse extends $tea.Model {
|
|
3615
|
-
headers
|
|
3684
|
+
headers?: {
|
|
3616
3685
|
[key: string]: string;
|
|
3617
3686
|
};
|
|
3618
|
-
statusCode
|
|
3619
|
-
body
|
|
3687
|
+
statusCode?: number;
|
|
3688
|
+
body?: ListComponentIndicesResponseBody;
|
|
3620
3689
|
static names(): {
|
|
3621
3690
|
[key: string]: string;
|
|
3622
3691
|
};
|
|
@@ -3641,11 +3710,11 @@ export declare class ListConnectedClustersResponseBody extends $tea.Model {
|
|
|
3641
3710
|
});
|
|
3642
3711
|
}
|
|
3643
3712
|
export declare class ListConnectedClustersResponse extends $tea.Model {
|
|
3644
|
-
headers
|
|
3713
|
+
headers?: {
|
|
3645
3714
|
[key: string]: string;
|
|
3646
3715
|
};
|
|
3647
|
-
statusCode
|
|
3648
|
-
body
|
|
3716
|
+
statusCode?: number;
|
|
3717
|
+
body?: ListConnectedClustersResponseBody;
|
|
3649
3718
|
static names(): {
|
|
3650
3719
|
[key: string]: string;
|
|
3651
3720
|
};
|
|
@@ -3684,11 +3753,11 @@ export declare class ListDataStreamsResponseBody extends $tea.Model {
|
|
|
3684
3753
|
});
|
|
3685
3754
|
}
|
|
3686
3755
|
export declare class ListDataStreamsResponse extends $tea.Model {
|
|
3687
|
-
headers
|
|
3756
|
+
headers?: {
|
|
3688
3757
|
[key: string]: string;
|
|
3689
3758
|
};
|
|
3690
|
-
statusCode
|
|
3691
|
-
body
|
|
3759
|
+
statusCode?: number;
|
|
3760
|
+
body?: ListDataStreamsResponseBody;
|
|
3692
3761
|
static names(): {
|
|
3693
3762
|
[key: string]: string;
|
|
3694
3763
|
};
|
|
@@ -3713,11 +3782,11 @@ export declare class ListDataTasksResponseBody extends $tea.Model {
|
|
|
3713
3782
|
});
|
|
3714
3783
|
}
|
|
3715
3784
|
export declare class ListDataTasksResponse extends $tea.Model {
|
|
3716
|
-
headers
|
|
3785
|
+
headers?: {
|
|
3717
3786
|
[key: string]: string;
|
|
3718
3787
|
};
|
|
3719
|
-
statusCode
|
|
3720
|
-
body
|
|
3788
|
+
statusCode?: number;
|
|
3789
|
+
body?: ListDataTasksResponseBody;
|
|
3721
3790
|
static names(): {
|
|
3722
3791
|
[key: string]: string;
|
|
3723
3792
|
};
|
|
@@ -3756,11 +3825,11 @@ export declare class ListDefaultCollectorConfigurationsResponseBody extends $tea
|
|
|
3756
3825
|
});
|
|
3757
3826
|
}
|
|
3758
3827
|
export declare class ListDefaultCollectorConfigurationsResponse extends $tea.Model {
|
|
3759
|
-
headers
|
|
3828
|
+
headers?: {
|
|
3760
3829
|
[key: string]: string;
|
|
3761
3830
|
};
|
|
3762
|
-
statusCode
|
|
3763
|
-
body
|
|
3831
|
+
statusCode?: number;
|
|
3832
|
+
body?: ListDefaultCollectorConfigurationsResponseBody;
|
|
3764
3833
|
static names(): {
|
|
3765
3834
|
[key: string]: string;
|
|
3766
3835
|
};
|
|
@@ -3800,11 +3869,11 @@ export declare class ListDeprecatedTemplatesResponseBody extends $tea.Model {
|
|
|
3800
3869
|
});
|
|
3801
3870
|
}
|
|
3802
3871
|
export declare class ListDeprecatedTemplatesResponse extends $tea.Model {
|
|
3803
|
-
headers
|
|
3872
|
+
headers?: {
|
|
3804
3873
|
[key: string]: string;
|
|
3805
3874
|
};
|
|
3806
|
-
statusCode
|
|
3807
|
-
body
|
|
3875
|
+
statusCode?: number;
|
|
3876
|
+
body?: ListDeprecatedTemplatesResponseBody;
|
|
3808
3877
|
static names(): {
|
|
3809
3878
|
[key: string]: string;
|
|
3810
3879
|
};
|
|
@@ -3841,11 +3910,11 @@ export declare class ListDiagnoseIndicesResponseBody extends $tea.Model {
|
|
|
3841
3910
|
});
|
|
3842
3911
|
}
|
|
3843
3912
|
export declare class ListDiagnoseIndicesResponse extends $tea.Model {
|
|
3844
|
-
headers
|
|
3913
|
+
headers?: {
|
|
3845
3914
|
[key: string]: string;
|
|
3846
3915
|
};
|
|
3847
|
-
statusCode
|
|
3848
|
-
body
|
|
3916
|
+
statusCode?: number;
|
|
3917
|
+
body?: ListDiagnoseIndicesResponseBody;
|
|
3849
3918
|
static names(): {
|
|
3850
3919
|
[key: string]: string;
|
|
3851
3920
|
};
|
|
@@ -3889,11 +3958,11 @@ export declare class ListDiagnoseReportResponseBody extends $tea.Model {
|
|
|
3889
3958
|
});
|
|
3890
3959
|
}
|
|
3891
3960
|
export declare class ListDiagnoseReportResponse extends $tea.Model {
|
|
3892
|
-
headers
|
|
3961
|
+
headers?: {
|
|
3893
3962
|
[key: string]: string;
|
|
3894
3963
|
};
|
|
3895
|
-
statusCode
|
|
3896
|
-
body
|
|
3964
|
+
statusCode?: number;
|
|
3965
|
+
body?: ListDiagnoseReportResponseBody;
|
|
3897
3966
|
static names(): {
|
|
3898
3967
|
[key: string]: string;
|
|
3899
3968
|
};
|
|
@@ -3936,11 +4005,11 @@ export declare class ListDiagnoseReportIdsResponseBody extends $tea.Model {
|
|
|
3936
4005
|
});
|
|
3937
4006
|
}
|
|
3938
4007
|
export declare class ListDiagnoseReportIdsResponse extends $tea.Model {
|
|
3939
|
-
headers
|
|
4008
|
+
headers?: {
|
|
3940
4009
|
[key: string]: string;
|
|
3941
4010
|
};
|
|
3942
|
-
statusCode
|
|
3943
|
-
body
|
|
4011
|
+
statusCode?: number;
|
|
4012
|
+
body?: ListDiagnoseReportIdsResponseBody;
|
|
3944
4013
|
static names(): {
|
|
3945
4014
|
[key: string]: string;
|
|
3946
4015
|
};
|
|
@@ -3977,11 +4046,11 @@ export declare class ListDiagnosisItemsResponseBody extends $tea.Model {
|
|
|
3977
4046
|
});
|
|
3978
4047
|
}
|
|
3979
4048
|
export declare class ListDiagnosisItemsResponse extends $tea.Model {
|
|
3980
|
-
headers
|
|
4049
|
+
headers?: {
|
|
3981
4050
|
[key: string]: string;
|
|
3982
4051
|
};
|
|
3983
|
-
statusCode
|
|
3984
|
-
body
|
|
4052
|
+
statusCode?: number;
|
|
4053
|
+
body?: ListDiagnosisItemsResponseBody;
|
|
3985
4054
|
static names(): {
|
|
3986
4055
|
[key: string]: string;
|
|
3987
4056
|
};
|
|
@@ -4020,11 +4089,11 @@ export declare class ListDictInformationResponseBody extends $tea.Model {
|
|
|
4020
4089
|
});
|
|
4021
4090
|
}
|
|
4022
4091
|
export declare class ListDictInformationResponse extends $tea.Model {
|
|
4023
|
-
headers
|
|
4092
|
+
headers?: {
|
|
4024
4093
|
[key: string]: string;
|
|
4025
4094
|
};
|
|
4026
|
-
statusCode
|
|
4027
|
-
body
|
|
4095
|
+
statusCode?: number;
|
|
4096
|
+
body?: ListDictInformationResponseBody;
|
|
4028
4097
|
static names(): {
|
|
4029
4098
|
[key: string]: string;
|
|
4030
4099
|
};
|
|
@@ -4063,11 +4132,11 @@ export declare class ListDictsResponseBody extends $tea.Model {
|
|
|
4063
4132
|
});
|
|
4064
4133
|
}
|
|
4065
4134
|
export declare class ListDictsResponse extends $tea.Model {
|
|
4066
|
-
headers
|
|
4135
|
+
headers?: {
|
|
4067
4136
|
[key: string]: string;
|
|
4068
4137
|
};
|
|
4069
|
-
statusCode
|
|
4070
|
-
body
|
|
4138
|
+
statusCode?: number;
|
|
4139
|
+
body?: ListDictsResponseBody;
|
|
4071
4140
|
static names(): {
|
|
4072
4141
|
[key: string]: string;
|
|
4073
4142
|
};
|
|
@@ -4110,11 +4179,11 @@ export declare class ListEcsInstancesResponseBody extends $tea.Model {
|
|
|
4110
4179
|
});
|
|
4111
4180
|
}
|
|
4112
4181
|
export declare class ListEcsInstancesResponse extends $tea.Model {
|
|
4113
|
-
headers
|
|
4182
|
+
headers?: {
|
|
4114
4183
|
[key: string]: string;
|
|
4115
4184
|
};
|
|
4116
|
-
statusCode
|
|
4117
|
-
body
|
|
4185
|
+
statusCode?: number;
|
|
4186
|
+
body?: ListEcsInstancesResponseBody;
|
|
4118
4187
|
static names(): {
|
|
4119
4188
|
[key: string]: string;
|
|
4120
4189
|
};
|
|
@@ -4139,11 +4208,11 @@ export declare class ListExtendfilesResponseBody extends $tea.Model {
|
|
|
4139
4208
|
});
|
|
4140
4209
|
}
|
|
4141
4210
|
export declare class ListExtendfilesResponse extends $tea.Model {
|
|
4142
|
-
headers
|
|
4211
|
+
headers?: {
|
|
4143
4212
|
[key: string]: string;
|
|
4144
4213
|
};
|
|
4145
|
-
statusCode
|
|
4146
|
-
body
|
|
4214
|
+
statusCode?: number;
|
|
4215
|
+
body?: ListExtendfilesResponseBody;
|
|
4147
4216
|
static names(): {
|
|
4148
4217
|
[key: string]: string;
|
|
4149
4218
|
};
|
|
@@ -4180,11 +4249,11 @@ export declare class ListILMPoliciesResponseBody extends $tea.Model {
|
|
|
4180
4249
|
});
|
|
4181
4250
|
}
|
|
4182
4251
|
export declare class ListILMPoliciesResponse extends $tea.Model {
|
|
4183
|
-
headers
|
|
4252
|
+
headers?: {
|
|
4184
4253
|
[key: string]: string;
|
|
4185
4254
|
};
|
|
4186
|
-
statusCode
|
|
4187
|
-
body
|
|
4255
|
+
statusCode?: number;
|
|
4256
|
+
body?: ListILMPoliciesResponseBody;
|
|
4188
4257
|
static names(): {
|
|
4189
4258
|
[key: string]: string;
|
|
4190
4259
|
};
|
|
@@ -4223,11 +4292,11 @@ export declare class ListIndexTemplatesResponseBody extends $tea.Model {
|
|
|
4223
4292
|
});
|
|
4224
4293
|
}
|
|
4225
4294
|
export declare class ListIndexTemplatesResponse extends $tea.Model {
|
|
4226
|
-
headers
|
|
4295
|
+
headers?: {
|
|
4227
4296
|
[key: string]: string;
|
|
4228
4297
|
};
|
|
4229
|
-
statusCode
|
|
4230
|
-
body
|
|
4298
|
+
statusCode?: number;
|
|
4299
|
+
body?: ListIndexTemplatesResponseBody;
|
|
4231
4300
|
static names(): {
|
|
4232
4301
|
[key: string]: string;
|
|
4233
4302
|
};
|
|
@@ -4275,11 +4344,11 @@ export declare class ListInstanceResponseBody extends $tea.Model {
|
|
|
4275
4344
|
});
|
|
4276
4345
|
}
|
|
4277
4346
|
export declare class ListInstanceResponse extends $tea.Model {
|
|
4278
|
-
headers
|
|
4347
|
+
headers?: {
|
|
4279
4348
|
[key: string]: string;
|
|
4280
4349
|
};
|
|
4281
|
-
statusCode
|
|
4282
|
-
body
|
|
4350
|
+
statusCode?: number;
|
|
4351
|
+
body?: ListInstanceResponseBody;
|
|
4283
4352
|
static names(): {
|
|
4284
4353
|
[key: string]: string;
|
|
4285
4354
|
};
|
|
@@ -4355,11 +4424,11 @@ export declare class ListInstanceHistoryEventsResponseBody extends $tea.Model {
|
|
|
4355
4424
|
});
|
|
4356
4425
|
}
|
|
4357
4426
|
export declare class ListInstanceHistoryEventsResponse extends $tea.Model {
|
|
4358
|
-
headers
|
|
4427
|
+
headers?: {
|
|
4359
4428
|
[key: string]: string;
|
|
4360
4429
|
};
|
|
4361
|
-
statusCode
|
|
4362
|
-
body
|
|
4430
|
+
statusCode?: number;
|
|
4431
|
+
body?: ListInstanceHistoryEventsResponseBody;
|
|
4363
4432
|
static names(): {
|
|
4364
4433
|
[key: string]: string;
|
|
4365
4434
|
};
|
|
@@ -4402,11 +4471,11 @@ export declare class ListInstanceIndicesResponseBody extends $tea.Model {
|
|
|
4402
4471
|
});
|
|
4403
4472
|
}
|
|
4404
4473
|
export declare class ListInstanceIndicesResponse extends $tea.Model {
|
|
4405
|
-
headers
|
|
4474
|
+
headers?: {
|
|
4406
4475
|
[key: string]: string;
|
|
4407
4476
|
};
|
|
4408
|
-
statusCode
|
|
4409
|
-
body
|
|
4477
|
+
statusCode?: number;
|
|
4478
|
+
body?: ListInstanceIndicesResponseBody;
|
|
4410
4479
|
static names(): {
|
|
4411
4480
|
[key: string]: string;
|
|
4412
4481
|
};
|
|
@@ -4445,11 +4514,11 @@ export declare class ListKibanaPluginsResponseBody extends $tea.Model {
|
|
|
4445
4514
|
});
|
|
4446
4515
|
}
|
|
4447
4516
|
export declare class ListKibanaPluginsResponse extends $tea.Model {
|
|
4448
|
-
headers
|
|
4517
|
+
headers?: {
|
|
4449
4518
|
[key: string]: string;
|
|
4450
4519
|
};
|
|
4451
|
-
statusCode
|
|
4452
|
-
body
|
|
4520
|
+
statusCode?: number;
|
|
4521
|
+
body?: ListKibanaPluginsResponseBody;
|
|
4453
4522
|
static names(): {
|
|
4454
4523
|
[key: string]: string;
|
|
4455
4524
|
};
|
|
@@ -4493,11 +4562,11 @@ export declare class ListLogstashResponseBody extends $tea.Model {
|
|
|
4493
4562
|
});
|
|
4494
4563
|
}
|
|
4495
4564
|
export declare class ListLogstashResponse extends $tea.Model {
|
|
4496
|
-
headers
|
|
4565
|
+
headers?: {
|
|
4497
4566
|
[key: string]: string;
|
|
4498
4567
|
};
|
|
4499
|
-
statusCode
|
|
4500
|
-
body
|
|
4568
|
+
statusCode?: number;
|
|
4569
|
+
body?: ListLogstashResponseBody;
|
|
4501
4570
|
static names(): {
|
|
4502
4571
|
[key: string]: string;
|
|
4503
4572
|
};
|
|
@@ -4539,11 +4608,11 @@ export declare class ListLogstashLogResponseBody extends $tea.Model {
|
|
|
4539
4608
|
});
|
|
4540
4609
|
}
|
|
4541
4610
|
export declare class ListLogstashLogResponse extends $tea.Model {
|
|
4542
|
-
headers
|
|
4611
|
+
headers?: {
|
|
4543
4612
|
[key: string]: string;
|
|
4544
4613
|
};
|
|
4545
|
-
statusCode
|
|
4546
|
-
body
|
|
4614
|
+
statusCode?: number;
|
|
4615
|
+
body?: ListLogstashLogResponseBody;
|
|
4547
4616
|
static names(): {
|
|
4548
4617
|
[key: string]: string;
|
|
4549
4618
|
};
|
|
@@ -4583,11 +4652,11 @@ export declare class ListLogstashPluginsResponseBody extends $tea.Model {
|
|
|
4583
4652
|
});
|
|
4584
4653
|
}
|
|
4585
4654
|
export declare class ListLogstashPluginsResponse extends $tea.Model {
|
|
4586
|
-
headers
|
|
4655
|
+
headers?: {
|
|
4587
4656
|
[key: string]: string;
|
|
4588
4657
|
};
|
|
4589
|
-
statusCode
|
|
4590
|
-
body
|
|
4658
|
+
statusCode?: number;
|
|
4659
|
+
body?: ListLogstashPluginsResponseBody;
|
|
4591
4660
|
static names(): {
|
|
4592
4661
|
[key: string]: string;
|
|
4593
4662
|
};
|
|
@@ -4629,11 +4698,11 @@ export declare class ListNodesResponseBody extends $tea.Model {
|
|
|
4629
4698
|
});
|
|
4630
4699
|
}
|
|
4631
4700
|
export declare class ListNodesResponse extends $tea.Model {
|
|
4632
|
-
headers
|
|
4701
|
+
headers?: {
|
|
4633
4702
|
[key: string]: string;
|
|
4634
4703
|
};
|
|
4635
|
-
statusCode
|
|
4636
|
-
body
|
|
4704
|
+
statusCode?: number;
|
|
4705
|
+
body?: ListNodesResponseBody;
|
|
4637
4706
|
static names(): {
|
|
4638
4707
|
[key: string]: string;
|
|
4639
4708
|
};
|
|
@@ -4673,11 +4742,11 @@ export declare class ListPipelineResponseBody extends $tea.Model {
|
|
|
4673
4742
|
});
|
|
4674
4743
|
}
|
|
4675
4744
|
export declare class ListPipelineResponse extends $tea.Model {
|
|
4676
|
-
headers
|
|
4745
|
+
headers?: {
|
|
4677
4746
|
[key: string]: string;
|
|
4678
4747
|
};
|
|
4679
|
-
statusCode
|
|
4680
|
-
body
|
|
4748
|
+
statusCode?: number;
|
|
4749
|
+
body?: ListPipelineResponseBody;
|
|
4681
4750
|
static names(): {
|
|
4682
4751
|
[key: string]: string;
|
|
4683
4752
|
};
|
|
@@ -4714,11 +4783,11 @@ export declare class ListPipelineIdsResponseBody extends $tea.Model {
|
|
|
4714
4783
|
});
|
|
4715
4784
|
}
|
|
4716
4785
|
export declare class ListPipelineIdsResponse extends $tea.Model {
|
|
4717
|
-
headers
|
|
4786
|
+
headers?: {
|
|
4718
4787
|
[key: string]: string;
|
|
4719
4788
|
};
|
|
4720
|
-
statusCode
|
|
4721
|
-
body
|
|
4789
|
+
statusCode?: number;
|
|
4790
|
+
body?: ListPipelineIdsResponseBody;
|
|
4722
4791
|
static names(): {
|
|
4723
4792
|
[key: string]: string;
|
|
4724
4793
|
};
|
|
@@ -4759,11 +4828,11 @@ export declare class ListPluginsResponseBody extends $tea.Model {
|
|
|
4759
4828
|
});
|
|
4760
4829
|
}
|
|
4761
4830
|
export declare class ListPluginsResponse extends $tea.Model {
|
|
4762
|
-
headers
|
|
4831
|
+
headers?: {
|
|
4763
4832
|
[key: string]: string;
|
|
4764
4833
|
};
|
|
4765
|
-
statusCode
|
|
4766
|
-
body
|
|
4834
|
+
statusCode?: number;
|
|
4835
|
+
body?: ListPluginsResponseBody;
|
|
4767
4836
|
static names(): {
|
|
4768
4837
|
[key: string]: string;
|
|
4769
4838
|
};
|
|
@@ -4806,11 +4875,11 @@ export declare class ListSearchLogResponseBody extends $tea.Model {
|
|
|
4806
4875
|
});
|
|
4807
4876
|
}
|
|
4808
4877
|
export declare class ListSearchLogResponse extends $tea.Model {
|
|
4809
|
-
headers
|
|
4878
|
+
headers?: {
|
|
4810
4879
|
[key: string]: string;
|
|
4811
4880
|
};
|
|
4812
|
-
statusCode
|
|
4813
|
-
body
|
|
4881
|
+
statusCode?: number;
|
|
4882
|
+
body?: ListSearchLogResponseBody;
|
|
4814
4883
|
static names(): {
|
|
4815
4884
|
[key: string]: string;
|
|
4816
4885
|
};
|
|
@@ -4847,11 +4916,11 @@ export declare class ListShardRecoveriesResponseBody extends $tea.Model {
|
|
|
4847
4916
|
});
|
|
4848
4917
|
}
|
|
4849
4918
|
export declare class ListShardRecoveriesResponse extends $tea.Model {
|
|
4850
|
-
headers
|
|
4919
|
+
headers?: {
|
|
4851
4920
|
[key: string]: string;
|
|
4852
4921
|
};
|
|
4853
|
-
statusCode
|
|
4854
|
-
body
|
|
4922
|
+
statusCode?: number;
|
|
4923
|
+
body?: ListShardRecoveriesResponseBody;
|
|
4855
4924
|
static names(): {
|
|
4856
4925
|
[key: string]: string;
|
|
4857
4926
|
};
|
|
@@ -4876,11 +4945,11 @@ export declare class ListSnapshotReposByInstanceIdResponseBody extends $tea.Mode
|
|
|
4876
4945
|
});
|
|
4877
4946
|
}
|
|
4878
4947
|
export declare class ListSnapshotReposByInstanceIdResponse extends $tea.Model {
|
|
4879
|
-
headers
|
|
4948
|
+
headers?: {
|
|
4880
4949
|
[key: string]: string;
|
|
4881
4950
|
};
|
|
4882
|
-
statusCode
|
|
4883
|
-
body
|
|
4951
|
+
statusCode?: number;
|
|
4952
|
+
body?: ListSnapshotReposByInstanceIdResponseBody;
|
|
4884
4953
|
static names(): {
|
|
4885
4954
|
[key: string]: string;
|
|
4886
4955
|
};
|
|
@@ -4924,11 +4993,11 @@ export declare class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
4924
4993
|
});
|
|
4925
4994
|
}
|
|
4926
4995
|
export declare class ListTagResourcesResponse extends $tea.Model {
|
|
4927
|
-
headers
|
|
4996
|
+
headers?: {
|
|
4928
4997
|
[key: string]: string;
|
|
4929
4998
|
};
|
|
4930
|
-
statusCode
|
|
4931
|
-
body
|
|
4999
|
+
statusCode?: number;
|
|
5000
|
+
body?: ListTagResourcesResponseBody;
|
|
4932
5001
|
static names(): {
|
|
4933
5002
|
[key: string]: string;
|
|
4934
5003
|
};
|
|
@@ -4966,11 +5035,11 @@ export declare class ListTagsResponseBody extends $tea.Model {
|
|
|
4966
5035
|
});
|
|
4967
5036
|
}
|
|
4968
5037
|
export declare class ListTagsResponse extends $tea.Model {
|
|
4969
|
-
headers
|
|
5038
|
+
headers?: {
|
|
4970
5039
|
[key: string]: string;
|
|
4971
5040
|
};
|
|
4972
|
-
statusCode
|
|
4973
|
-
body
|
|
5041
|
+
statusCode?: number;
|
|
5042
|
+
body?: ListTagsResponseBody;
|
|
4974
5043
|
static names(): {
|
|
4975
5044
|
[key: string]: string;
|
|
4976
5045
|
};
|
|
@@ -5008,11 +5077,11 @@ export declare class ListVpcEndpointsResponseBody extends $tea.Model {
|
|
|
5008
5077
|
});
|
|
5009
5078
|
}
|
|
5010
5079
|
export declare class ListVpcEndpointsResponse extends $tea.Model {
|
|
5011
|
-
headers
|
|
5080
|
+
headers?: {
|
|
5012
5081
|
[key: string]: string;
|
|
5013
5082
|
};
|
|
5014
|
-
statusCode
|
|
5015
|
-
body
|
|
5083
|
+
statusCode?: number;
|
|
5084
|
+
body?: ListVpcEndpointsResponseBody;
|
|
5016
5085
|
static names(): {
|
|
5017
5086
|
[key: string]: string;
|
|
5018
5087
|
};
|
|
@@ -5050,11 +5119,11 @@ export declare class MigrateToOtherZoneResponseBody extends $tea.Model {
|
|
|
5050
5119
|
});
|
|
5051
5120
|
}
|
|
5052
5121
|
export declare class MigrateToOtherZoneResponse extends $tea.Model {
|
|
5053
|
-
headers
|
|
5122
|
+
headers?: {
|
|
5054
5123
|
[key: string]: string;
|
|
5055
5124
|
};
|
|
5056
|
-
statusCode
|
|
5057
|
-
body
|
|
5125
|
+
statusCode?: number;
|
|
5126
|
+
body?: MigrateToOtherZoneResponseBody;
|
|
5058
5127
|
static names(): {
|
|
5059
5128
|
[key: string]: string;
|
|
5060
5129
|
};
|
|
@@ -5092,11 +5161,11 @@ export declare class ModifyDeployMachineResponseBody extends $tea.Model {
|
|
|
5092
5161
|
});
|
|
5093
5162
|
}
|
|
5094
5163
|
export declare class ModifyDeployMachineResponse extends $tea.Model {
|
|
5095
|
-
headers
|
|
5164
|
+
headers?: {
|
|
5096
5165
|
[key: string]: string;
|
|
5097
5166
|
};
|
|
5098
|
-
statusCode
|
|
5099
|
-
body
|
|
5167
|
+
statusCode?: number;
|
|
5168
|
+
body?: ModifyDeployMachineResponseBody;
|
|
5100
5169
|
static names(): {
|
|
5101
5170
|
[key: string]: string;
|
|
5102
5171
|
};
|
|
@@ -5133,11 +5202,11 @@ export declare class ModifyElastictaskResponseBody extends $tea.Model {
|
|
|
5133
5202
|
});
|
|
5134
5203
|
}
|
|
5135
5204
|
export declare class ModifyElastictaskResponse extends $tea.Model {
|
|
5136
|
-
headers
|
|
5205
|
+
headers?: {
|
|
5137
5206
|
[key: string]: string;
|
|
5138
5207
|
};
|
|
5139
|
-
statusCode
|
|
5140
|
-
body
|
|
5208
|
+
statusCode?: number;
|
|
5209
|
+
body?: ModifyElastictaskResponseBody;
|
|
5141
5210
|
static names(): {
|
|
5142
5211
|
[key: string]: string;
|
|
5143
5212
|
};
|
|
@@ -5175,11 +5244,11 @@ export declare class ModifyInstanceMaintainTimeResponseBody extends $tea.Model {
|
|
|
5175
5244
|
});
|
|
5176
5245
|
}
|
|
5177
5246
|
export declare class ModifyInstanceMaintainTimeResponse extends $tea.Model {
|
|
5178
|
-
headers
|
|
5247
|
+
headers?: {
|
|
5179
5248
|
[key: string]: string;
|
|
5180
5249
|
};
|
|
5181
|
-
statusCode
|
|
5182
|
-
body
|
|
5250
|
+
statusCode?: number;
|
|
5251
|
+
body?: ModifyInstanceMaintainTimeResponseBody;
|
|
5183
5252
|
static names(): {
|
|
5184
5253
|
[key: string]: string;
|
|
5185
5254
|
};
|
|
@@ -5221,11 +5290,11 @@ export declare class ModifyWhiteIpsResponseBody extends $tea.Model {
|
|
|
5221
5290
|
});
|
|
5222
5291
|
}
|
|
5223
5292
|
export declare class ModifyWhiteIpsResponse extends $tea.Model {
|
|
5224
|
-
headers
|
|
5293
|
+
headers?: {
|
|
5225
5294
|
[key: string]: string;
|
|
5226
5295
|
};
|
|
5227
|
-
statusCode
|
|
5228
|
-
body
|
|
5296
|
+
statusCode?: number;
|
|
5297
|
+
body?: ModifyWhiteIpsResponseBody;
|
|
5229
5298
|
static names(): {
|
|
5230
5299
|
[key: string]: string;
|
|
5231
5300
|
};
|
|
@@ -5263,11 +5332,11 @@ export declare class MoveResourceGroupResponseBody extends $tea.Model {
|
|
|
5263
5332
|
});
|
|
5264
5333
|
}
|
|
5265
5334
|
export declare class MoveResourceGroupResponse extends $tea.Model {
|
|
5266
|
-
headers
|
|
5335
|
+
headers?: {
|
|
5267
5336
|
[key: string]: string;
|
|
5268
5337
|
};
|
|
5269
|
-
statusCode
|
|
5270
|
-
body
|
|
5338
|
+
statusCode?: number;
|
|
5339
|
+
body?: MoveResourceGroupResponseBody;
|
|
5271
5340
|
static names(): {
|
|
5272
5341
|
[key: string]: string;
|
|
5273
5342
|
};
|
|
@@ -5305,11 +5374,11 @@ export declare class OpenDiagnosisResponseBody extends $tea.Model {
|
|
|
5305
5374
|
});
|
|
5306
5375
|
}
|
|
5307
5376
|
export declare class OpenDiagnosisResponse extends $tea.Model {
|
|
5308
|
-
headers
|
|
5377
|
+
headers?: {
|
|
5309
5378
|
[key: string]: string;
|
|
5310
5379
|
};
|
|
5311
|
-
statusCode
|
|
5312
|
-
body
|
|
5380
|
+
statusCode?: number;
|
|
5381
|
+
body?: OpenDiagnosisResponseBody;
|
|
5313
5382
|
static names(): {
|
|
5314
5383
|
[key: string]: string;
|
|
5315
5384
|
};
|
|
@@ -5346,11 +5415,11 @@ export declare class OpenHttpsResponseBody extends $tea.Model {
|
|
|
5346
5415
|
});
|
|
5347
5416
|
}
|
|
5348
5417
|
export declare class OpenHttpsResponse extends $tea.Model {
|
|
5349
|
-
headers
|
|
5418
|
+
headers?: {
|
|
5350
5419
|
[key: string]: string;
|
|
5351
5420
|
};
|
|
5352
|
-
statusCode
|
|
5353
|
-
body
|
|
5421
|
+
statusCode?: number;
|
|
5422
|
+
body?: OpenHttpsResponseBody;
|
|
5354
5423
|
static names(): {
|
|
5355
5424
|
[key: string]: string;
|
|
5356
5425
|
};
|
|
@@ -5389,11 +5458,11 @@ export declare class PostEmonTryAlarmRuleResponseBody extends $tea.Model {
|
|
|
5389
5458
|
});
|
|
5390
5459
|
}
|
|
5391
5460
|
export declare class PostEmonTryAlarmRuleResponse extends $tea.Model {
|
|
5392
|
-
headers
|
|
5461
|
+
headers?: {
|
|
5393
5462
|
[key: string]: string;
|
|
5394
5463
|
};
|
|
5395
|
-
statusCode
|
|
5396
|
-
body
|
|
5464
|
+
statusCode?: number;
|
|
5465
|
+
body?: PostEmonTryAlarmRuleResponseBody;
|
|
5397
5466
|
static names(): {
|
|
5398
5467
|
[key: string]: string;
|
|
5399
5468
|
};
|
|
@@ -5430,11 +5499,11 @@ export declare class RecommendTemplatesResponseBody extends $tea.Model {
|
|
|
5430
5499
|
});
|
|
5431
5500
|
}
|
|
5432
5501
|
export declare class RecommendTemplatesResponse extends $tea.Model {
|
|
5433
|
-
headers
|
|
5502
|
+
headers?: {
|
|
5434
5503
|
[key: string]: string;
|
|
5435
5504
|
};
|
|
5436
|
-
statusCode
|
|
5437
|
-
body
|
|
5505
|
+
statusCode?: number;
|
|
5506
|
+
body?: RecommendTemplatesResponseBody;
|
|
5438
5507
|
static names(): {
|
|
5439
5508
|
[key: string]: string;
|
|
5440
5509
|
};
|
|
@@ -5472,11 +5541,11 @@ export declare class ReinstallCollectorResponseBody extends $tea.Model {
|
|
|
5472
5541
|
});
|
|
5473
5542
|
}
|
|
5474
5543
|
export declare class ReinstallCollectorResponse extends $tea.Model {
|
|
5475
|
-
headers
|
|
5544
|
+
headers?: {
|
|
5476
5545
|
[key: string]: string;
|
|
5477
5546
|
};
|
|
5478
|
-
statusCode
|
|
5479
|
-
body
|
|
5547
|
+
statusCode?: number;
|
|
5548
|
+
body?: ReinstallCollectorResponseBody;
|
|
5480
5549
|
static names(): {
|
|
5481
5550
|
[key: string]: string;
|
|
5482
5551
|
};
|
|
@@ -5501,11 +5570,11 @@ export declare class RemoveApmResponseBody extends $tea.Model {
|
|
|
5501
5570
|
});
|
|
5502
5571
|
}
|
|
5503
5572
|
export declare class RemoveApmResponse extends $tea.Model {
|
|
5504
|
-
headers
|
|
5573
|
+
headers?: {
|
|
5505
5574
|
[key: string]: string;
|
|
5506
5575
|
};
|
|
5507
|
-
statusCode
|
|
5508
|
-
body
|
|
5576
|
+
statusCode?: number;
|
|
5577
|
+
body?: RemoveApmResponseBody;
|
|
5509
5578
|
static names(): {
|
|
5510
5579
|
[key: string]: string;
|
|
5511
5580
|
};
|
|
@@ -5543,11 +5612,11 @@ export declare class RenewInstanceResponseBody extends $tea.Model {
|
|
|
5543
5612
|
});
|
|
5544
5613
|
}
|
|
5545
5614
|
export declare class RenewInstanceResponse extends $tea.Model {
|
|
5546
|
-
headers
|
|
5615
|
+
headers?: {
|
|
5547
5616
|
[key: string]: string;
|
|
5548
5617
|
};
|
|
5549
|
-
statusCode
|
|
5550
|
-
body
|
|
5618
|
+
statusCode?: number;
|
|
5619
|
+
body?: RenewInstanceResponseBody;
|
|
5551
5620
|
static names(): {
|
|
5552
5621
|
[key: string]: string;
|
|
5553
5622
|
};
|
|
@@ -5585,11 +5654,11 @@ export declare class RenewLogstashResponseBody extends $tea.Model {
|
|
|
5585
5654
|
});
|
|
5586
5655
|
}
|
|
5587
5656
|
export declare class RenewLogstashResponse extends $tea.Model {
|
|
5588
|
-
headers
|
|
5657
|
+
headers?: {
|
|
5589
5658
|
[key: string]: string;
|
|
5590
5659
|
};
|
|
5591
|
-
statusCode
|
|
5592
|
-
body
|
|
5660
|
+
statusCode?: number;
|
|
5661
|
+
body?: RenewLogstashResponseBody;
|
|
5593
5662
|
static names(): {
|
|
5594
5663
|
[key: string]: string;
|
|
5595
5664
|
};
|
|
@@ -5626,11 +5695,11 @@ export declare class RestartCollectorResponseBody extends $tea.Model {
|
|
|
5626
5695
|
});
|
|
5627
5696
|
}
|
|
5628
5697
|
export declare class RestartCollectorResponse extends $tea.Model {
|
|
5629
|
-
headers
|
|
5698
|
+
headers?: {
|
|
5630
5699
|
[key: string]: string;
|
|
5631
5700
|
};
|
|
5632
|
-
statusCode
|
|
5633
|
-
body
|
|
5701
|
+
statusCode?: number;
|
|
5702
|
+
body?: RestartCollectorResponseBody;
|
|
5634
5703
|
static names(): {
|
|
5635
5704
|
[key: string]: string;
|
|
5636
5705
|
};
|
|
@@ -5669,11 +5738,11 @@ export declare class RestartInstanceResponseBody extends $tea.Model {
|
|
|
5669
5738
|
});
|
|
5670
5739
|
}
|
|
5671
5740
|
export declare class RestartInstanceResponse extends $tea.Model {
|
|
5672
|
-
headers
|
|
5741
|
+
headers?: {
|
|
5673
5742
|
[key: string]: string;
|
|
5674
5743
|
};
|
|
5675
|
-
statusCode
|
|
5676
|
-
body
|
|
5744
|
+
statusCode?: number;
|
|
5745
|
+
body?: RestartInstanceResponseBody;
|
|
5677
5746
|
static names(): {
|
|
5678
5747
|
[key: string]: string;
|
|
5679
5748
|
};
|
|
@@ -5716,11 +5785,11 @@ export declare class RestartLogstashResponseBody extends $tea.Model {
|
|
|
5716
5785
|
});
|
|
5717
5786
|
}
|
|
5718
5787
|
export declare class RestartLogstashResponse extends $tea.Model {
|
|
5719
|
-
headers
|
|
5788
|
+
headers?: {
|
|
5720
5789
|
[key: string]: string;
|
|
5721
5790
|
};
|
|
5722
|
-
statusCode
|
|
5723
|
-
body
|
|
5791
|
+
statusCode?: number;
|
|
5792
|
+
body?: RestartLogstashResponseBody;
|
|
5724
5793
|
static names(): {
|
|
5725
5794
|
[key: string]: string;
|
|
5726
5795
|
};
|
|
@@ -5757,11 +5826,11 @@ export declare class ResumeElasticsearchTaskResponseBody extends $tea.Model {
|
|
|
5757
5826
|
});
|
|
5758
5827
|
}
|
|
5759
5828
|
export declare class ResumeElasticsearchTaskResponse extends $tea.Model {
|
|
5760
|
-
headers
|
|
5829
|
+
headers?: {
|
|
5761
5830
|
[key: string]: string;
|
|
5762
5831
|
};
|
|
5763
|
-
statusCode
|
|
5764
|
-
body
|
|
5832
|
+
statusCode?: number;
|
|
5833
|
+
body?: ResumeElasticsearchTaskResponseBody;
|
|
5765
5834
|
static names(): {
|
|
5766
5835
|
[key: string]: string;
|
|
5767
5836
|
};
|
|
@@ -5800,11 +5869,11 @@ export declare class ResumeLogstashTaskResponseBody extends $tea.Model {
|
|
|
5800
5869
|
});
|
|
5801
5870
|
}
|
|
5802
5871
|
export declare class ResumeLogstashTaskResponse extends $tea.Model {
|
|
5803
|
-
headers
|
|
5872
|
+
headers?: {
|
|
5804
5873
|
[key: string]: string;
|
|
5805
5874
|
};
|
|
5806
|
-
statusCode
|
|
5807
|
-
body
|
|
5875
|
+
statusCode?: number;
|
|
5876
|
+
body?: ResumeLogstashTaskResponseBody;
|
|
5808
5877
|
static names(): {
|
|
5809
5878
|
[key: string]: string;
|
|
5810
5879
|
};
|
|
@@ -5841,11 +5910,11 @@ export declare class RolloverDataStreamResponseBody extends $tea.Model {
|
|
|
5841
5910
|
});
|
|
5842
5911
|
}
|
|
5843
5912
|
export declare class RolloverDataStreamResponse extends $tea.Model {
|
|
5844
|
-
headers
|
|
5913
|
+
headers?: {
|
|
5845
5914
|
[key: string]: string;
|
|
5846
5915
|
};
|
|
5847
|
-
statusCode
|
|
5848
|
-
body
|
|
5916
|
+
statusCode?: number;
|
|
5917
|
+
body?: RolloverDataStreamResponseBody;
|
|
5849
5918
|
static names(): {
|
|
5850
5919
|
[key: string]: string;
|
|
5851
5920
|
};
|
|
@@ -5883,11 +5952,11 @@ export declare class RunPipelinesResponseBody extends $tea.Model {
|
|
|
5883
5952
|
});
|
|
5884
5953
|
}
|
|
5885
5954
|
export declare class RunPipelinesResponse extends $tea.Model {
|
|
5886
|
-
headers
|
|
5955
|
+
headers?: {
|
|
5887
5956
|
[key: string]: string;
|
|
5888
5957
|
};
|
|
5889
|
-
statusCode
|
|
5890
|
-
body
|
|
5958
|
+
statusCode?: number;
|
|
5959
|
+
body?: RunPipelinesResponseBody;
|
|
5891
5960
|
static names(): {
|
|
5892
5961
|
[key: string]: string;
|
|
5893
5962
|
};
|
|
@@ -5928,11 +5997,11 @@ export declare class ShrinkNodeResponseBody extends $tea.Model {
|
|
|
5928
5997
|
});
|
|
5929
5998
|
}
|
|
5930
5999
|
export declare class ShrinkNodeResponse extends $tea.Model {
|
|
5931
|
-
headers
|
|
6000
|
+
headers?: {
|
|
5932
6001
|
[key: string]: string;
|
|
5933
6002
|
};
|
|
5934
|
-
statusCode
|
|
5935
|
-
body
|
|
6003
|
+
statusCode?: number;
|
|
6004
|
+
body?: ShrinkNodeResponseBody;
|
|
5936
6005
|
static names(): {
|
|
5937
6006
|
[key: string]: string;
|
|
5938
6007
|
};
|
|
@@ -5957,11 +6026,11 @@ export declare class StartApmResponseBody extends $tea.Model {
|
|
|
5957
6026
|
});
|
|
5958
6027
|
}
|
|
5959
6028
|
export declare class StartApmResponse extends $tea.Model {
|
|
5960
|
-
headers
|
|
6029
|
+
headers?: {
|
|
5961
6030
|
[key: string]: string;
|
|
5962
6031
|
};
|
|
5963
|
-
statusCode
|
|
5964
|
-
body
|
|
6032
|
+
statusCode?: number;
|
|
6033
|
+
body?: StartApmResponseBody;
|
|
5965
6034
|
static names(): {
|
|
5966
6035
|
[key: string]: string;
|
|
5967
6036
|
};
|
|
@@ -5998,11 +6067,11 @@ export declare class StartCollectorResponseBody extends $tea.Model {
|
|
|
5998
6067
|
});
|
|
5999
6068
|
}
|
|
6000
6069
|
export declare class StartCollectorResponse extends $tea.Model {
|
|
6001
|
-
headers
|
|
6070
|
+
headers?: {
|
|
6002
6071
|
[key: string]: string;
|
|
6003
6072
|
};
|
|
6004
|
-
statusCode
|
|
6005
|
-
body
|
|
6073
|
+
statusCode?: number;
|
|
6074
|
+
body?: StartCollectorResponseBody;
|
|
6006
6075
|
static names(): {
|
|
6007
6076
|
[key: string]: string;
|
|
6008
6077
|
};
|
|
@@ -6027,11 +6096,11 @@ export declare class StopApmResponseBody extends $tea.Model {
|
|
|
6027
6096
|
});
|
|
6028
6097
|
}
|
|
6029
6098
|
export declare class StopApmResponse extends $tea.Model {
|
|
6030
|
-
headers
|
|
6099
|
+
headers?: {
|
|
6031
6100
|
[key: string]: string;
|
|
6032
6101
|
};
|
|
6033
|
-
statusCode
|
|
6034
|
-
body
|
|
6102
|
+
statusCode?: number;
|
|
6103
|
+
body?: StopApmResponseBody;
|
|
6035
6104
|
static names(): {
|
|
6036
6105
|
[key: string]: string;
|
|
6037
6106
|
};
|
|
@@ -6068,11 +6137,11 @@ export declare class StopCollectorResponseBody extends $tea.Model {
|
|
|
6068
6137
|
});
|
|
6069
6138
|
}
|
|
6070
6139
|
export declare class StopCollectorResponse extends $tea.Model {
|
|
6071
|
-
headers
|
|
6140
|
+
headers?: {
|
|
6072
6141
|
[key: string]: string;
|
|
6073
6142
|
};
|
|
6074
|
-
statusCode
|
|
6075
|
-
body
|
|
6143
|
+
statusCode?: number;
|
|
6144
|
+
body?: StopCollectorResponseBody;
|
|
6076
6145
|
static names(): {
|
|
6077
6146
|
[key: string]: string;
|
|
6078
6147
|
};
|
|
@@ -6110,11 +6179,11 @@ export declare class StopPipelinesResponseBody extends $tea.Model {
|
|
|
6110
6179
|
});
|
|
6111
6180
|
}
|
|
6112
6181
|
export declare class StopPipelinesResponse extends $tea.Model {
|
|
6113
|
-
headers
|
|
6182
|
+
headers?: {
|
|
6114
6183
|
[key: string]: string;
|
|
6115
6184
|
};
|
|
6116
|
-
statusCode
|
|
6117
|
-
body
|
|
6185
|
+
statusCode?: number;
|
|
6186
|
+
body?: StopPipelinesResponseBody;
|
|
6118
6187
|
static names(): {
|
|
6119
6188
|
[key: string]: string;
|
|
6120
6189
|
};
|
|
@@ -6153,11 +6222,11 @@ export declare class TagResourcesResponseBody extends $tea.Model {
|
|
|
6153
6222
|
});
|
|
6154
6223
|
}
|
|
6155
6224
|
export declare class TagResourcesResponse extends $tea.Model {
|
|
6156
|
-
headers
|
|
6225
|
+
headers?: {
|
|
6157
6226
|
[key: string]: string;
|
|
6158
6227
|
};
|
|
6159
|
-
statusCode
|
|
6160
|
-
body
|
|
6228
|
+
statusCode?: number;
|
|
6229
|
+
body?: TagResourcesResponseBody;
|
|
6161
6230
|
static names(): {
|
|
6162
6231
|
[key: string]: string;
|
|
6163
6232
|
};
|
|
@@ -6196,11 +6265,11 @@ export declare class TransferNodeResponseBody extends $tea.Model {
|
|
|
6196
6265
|
});
|
|
6197
6266
|
}
|
|
6198
6267
|
export declare class TransferNodeResponse extends $tea.Model {
|
|
6199
|
-
headers
|
|
6268
|
+
headers?: {
|
|
6200
6269
|
[key: string]: string;
|
|
6201
6270
|
};
|
|
6202
|
-
statusCode
|
|
6203
|
-
body
|
|
6271
|
+
statusCode?: number;
|
|
6272
|
+
body?: TransferNodeResponseBody;
|
|
6204
6273
|
static names(): {
|
|
6205
6274
|
[key: string]: string;
|
|
6206
6275
|
};
|
|
@@ -6240,11 +6309,11 @@ export declare class TriggerNetworkResponseBody extends $tea.Model {
|
|
|
6240
6309
|
});
|
|
6241
6310
|
}
|
|
6242
6311
|
export declare class TriggerNetworkResponse extends $tea.Model {
|
|
6243
|
-
headers
|
|
6312
|
+
headers?: {
|
|
6244
6313
|
[key: string]: string;
|
|
6245
6314
|
};
|
|
6246
|
-
statusCode
|
|
6247
|
-
body
|
|
6315
|
+
statusCode?: number;
|
|
6316
|
+
body?: TriggerNetworkResponseBody;
|
|
6248
6317
|
static names(): {
|
|
6249
6318
|
[key: string]: string;
|
|
6250
6319
|
};
|
|
@@ -6282,11 +6351,11 @@ export declare class UninstallKibanaPluginResponseBody extends $tea.Model {
|
|
|
6282
6351
|
});
|
|
6283
6352
|
}
|
|
6284
6353
|
export declare class UninstallKibanaPluginResponse extends $tea.Model {
|
|
6285
|
-
headers
|
|
6354
|
+
headers?: {
|
|
6286
6355
|
[key: string]: string;
|
|
6287
6356
|
};
|
|
6288
|
-
statusCode
|
|
6289
|
-
body
|
|
6357
|
+
statusCode?: number;
|
|
6358
|
+
body?: UninstallKibanaPluginResponseBody;
|
|
6290
6359
|
static names(): {
|
|
6291
6360
|
[key: string]: string;
|
|
6292
6361
|
};
|
|
@@ -6327,11 +6396,11 @@ export declare class UninstallLogstashPluginResponseBody extends $tea.Model {
|
|
|
6327
6396
|
});
|
|
6328
6397
|
}
|
|
6329
6398
|
export declare class UninstallLogstashPluginResponse extends $tea.Model {
|
|
6330
|
-
headers
|
|
6399
|
+
headers?: {
|
|
6331
6400
|
[key: string]: string;
|
|
6332
6401
|
};
|
|
6333
|
-
statusCode
|
|
6334
|
-
body
|
|
6402
|
+
statusCode?: number;
|
|
6403
|
+
body?: UninstallLogstashPluginResponseBody;
|
|
6335
6404
|
static names(): {
|
|
6336
6405
|
[key: string]: string;
|
|
6337
6406
|
};
|
|
@@ -6345,6 +6414,7 @@ export declare class UninstallLogstashPluginResponse extends $tea.Model {
|
|
|
6345
6414
|
export declare class UninstallPluginRequest extends $tea.Model {
|
|
6346
6415
|
body?: string;
|
|
6347
6416
|
clientToken?: string;
|
|
6417
|
+
force?: boolean;
|
|
6348
6418
|
static names(): {
|
|
6349
6419
|
[key: string]: string;
|
|
6350
6420
|
};
|
|
@@ -6369,11 +6439,11 @@ export declare class UninstallPluginResponseBody extends $tea.Model {
|
|
|
6369
6439
|
});
|
|
6370
6440
|
}
|
|
6371
6441
|
export declare class UninstallPluginResponse extends $tea.Model {
|
|
6372
|
-
headers
|
|
6442
|
+
headers?: {
|
|
6373
6443
|
[key: string]: string;
|
|
6374
6444
|
};
|
|
6375
|
-
statusCode
|
|
6376
|
-
body
|
|
6445
|
+
statusCode?: number;
|
|
6446
|
+
body?: UninstallPluginResponseBody;
|
|
6377
6447
|
static names(): {
|
|
6378
6448
|
[key: string]: string;
|
|
6379
6449
|
};
|
|
@@ -6414,11 +6484,11 @@ export declare class UntagResourcesResponseBody extends $tea.Model {
|
|
|
6414
6484
|
});
|
|
6415
6485
|
}
|
|
6416
6486
|
export declare class UntagResourcesResponse extends $tea.Model {
|
|
6417
|
-
headers
|
|
6487
|
+
headers?: {
|
|
6418
6488
|
[key: string]: string;
|
|
6419
6489
|
};
|
|
6420
|
-
statusCode
|
|
6421
|
-
body
|
|
6490
|
+
statusCode?: number;
|
|
6491
|
+
body?: UntagResourcesResponseBody;
|
|
6422
6492
|
static names(): {
|
|
6423
6493
|
[key: string]: string;
|
|
6424
6494
|
};
|
|
@@ -6456,11 +6526,11 @@ export declare class UpdateAdminPasswordResponseBody extends $tea.Model {
|
|
|
6456
6526
|
});
|
|
6457
6527
|
}
|
|
6458
6528
|
export declare class UpdateAdminPasswordResponse extends $tea.Model {
|
|
6459
|
-
headers
|
|
6529
|
+
headers?: {
|
|
6460
6530
|
[key: string]: string;
|
|
6461
6531
|
};
|
|
6462
|
-
statusCode
|
|
6463
|
-
body
|
|
6532
|
+
statusCode?: number;
|
|
6533
|
+
body?: UpdateAdminPasswordResponseBody;
|
|
6464
6534
|
static names(): {
|
|
6465
6535
|
[key: string]: string;
|
|
6466
6536
|
};
|
|
@@ -6498,11 +6568,11 @@ export declare class UpdateAdvancedSettingResponseBody extends $tea.Model {
|
|
|
6498
6568
|
});
|
|
6499
6569
|
}
|
|
6500
6570
|
export declare class UpdateAdvancedSettingResponse extends $tea.Model {
|
|
6501
|
-
headers
|
|
6571
|
+
headers?: {
|
|
6502
6572
|
[key: string]: string;
|
|
6503
6573
|
};
|
|
6504
|
-
statusCode
|
|
6505
|
-
body
|
|
6574
|
+
statusCode?: number;
|
|
6575
|
+
body?: UpdateAdvancedSettingResponseBody;
|
|
6506
6576
|
static names(): {
|
|
6507
6577
|
[key: string]: string;
|
|
6508
6578
|
};
|
|
@@ -6540,11 +6610,11 @@ export declare class UpdateAliwsDictResponseBody extends $tea.Model {
|
|
|
6540
6610
|
});
|
|
6541
6611
|
}
|
|
6542
6612
|
export declare class UpdateAliwsDictResponse extends $tea.Model {
|
|
6543
|
-
headers
|
|
6613
|
+
headers?: {
|
|
6544
6614
|
[key: string]: string;
|
|
6545
6615
|
};
|
|
6546
|
-
statusCode
|
|
6547
|
-
body
|
|
6616
|
+
statusCode?: number;
|
|
6617
|
+
body?: UpdateAliwsDictResponseBody;
|
|
6548
6618
|
static names(): {
|
|
6549
6619
|
[key: string]: string;
|
|
6550
6620
|
};
|
|
@@ -6585,11 +6655,11 @@ export declare class UpdateApmResponseBody extends $tea.Model {
|
|
|
6585
6655
|
});
|
|
6586
6656
|
}
|
|
6587
6657
|
export declare class UpdateApmResponse extends $tea.Model {
|
|
6588
|
-
headers
|
|
6658
|
+
headers?: {
|
|
6589
6659
|
[key: string]: string;
|
|
6590
6660
|
};
|
|
6591
|
-
statusCode
|
|
6592
|
-
body
|
|
6661
|
+
statusCode?: number;
|
|
6662
|
+
body?: UpdateApmResponseBody;
|
|
6593
6663
|
static names(): {
|
|
6594
6664
|
[key: string]: string;
|
|
6595
6665
|
};
|
|
@@ -6626,11 +6696,11 @@ export declare class UpdateBlackIpsResponseBody extends $tea.Model {
|
|
|
6626
6696
|
});
|
|
6627
6697
|
}
|
|
6628
6698
|
export declare class UpdateBlackIpsResponse extends $tea.Model {
|
|
6629
|
-
headers
|
|
6699
|
+
headers?: {
|
|
6630
6700
|
[key: string]: string;
|
|
6631
6701
|
};
|
|
6632
|
-
statusCode
|
|
6633
|
-
body
|
|
6702
|
+
statusCode?: number;
|
|
6703
|
+
body?: UpdateBlackIpsResponseBody;
|
|
6634
6704
|
static names(): {
|
|
6635
6705
|
[key: string]: string;
|
|
6636
6706
|
};
|
|
@@ -6668,11 +6738,11 @@ export declare class UpdateCollectorResponseBody extends $tea.Model {
|
|
|
6668
6738
|
});
|
|
6669
6739
|
}
|
|
6670
6740
|
export declare class UpdateCollectorResponse extends $tea.Model {
|
|
6671
|
-
headers
|
|
6741
|
+
headers?: {
|
|
6672
6742
|
[key: string]: string;
|
|
6673
6743
|
};
|
|
6674
|
-
statusCode
|
|
6675
|
-
body
|
|
6744
|
+
statusCode?: number;
|
|
6745
|
+
body?: UpdateCollectorResponseBody;
|
|
6676
6746
|
static names(): {
|
|
6677
6747
|
[key: string]: string;
|
|
6678
6748
|
};
|
|
@@ -6710,11 +6780,11 @@ export declare class UpdateCollectorNameResponseBody extends $tea.Model {
|
|
|
6710
6780
|
});
|
|
6711
6781
|
}
|
|
6712
6782
|
export declare class UpdateCollectorNameResponse extends $tea.Model {
|
|
6713
|
-
headers
|
|
6783
|
+
headers?: {
|
|
6714
6784
|
[key: string]: string;
|
|
6715
6785
|
};
|
|
6716
|
-
statusCode
|
|
6717
|
-
body
|
|
6786
|
+
statusCode?: number;
|
|
6787
|
+
body?: UpdateCollectorNameResponseBody;
|
|
6718
6788
|
static names(): {
|
|
6719
6789
|
[key: string]: string;
|
|
6720
6790
|
};
|
|
@@ -6753,11 +6823,11 @@ export declare class UpdateComponentIndexResponseBody extends $tea.Model {
|
|
|
6753
6823
|
});
|
|
6754
6824
|
}
|
|
6755
6825
|
export declare class UpdateComponentIndexResponse extends $tea.Model {
|
|
6756
|
-
headers
|
|
6826
|
+
headers?: {
|
|
6757
6827
|
[key: string]: string;
|
|
6758
6828
|
};
|
|
6759
|
-
statusCode
|
|
6760
|
-
body
|
|
6829
|
+
statusCode?: number;
|
|
6830
|
+
body?: UpdateComponentIndexResponseBody;
|
|
6761
6831
|
static names(): {
|
|
6762
6832
|
[key: string]: string;
|
|
6763
6833
|
};
|
|
@@ -6795,11 +6865,11 @@ export declare class UpdateDescriptionResponseBody extends $tea.Model {
|
|
|
6795
6865
|
});
|
|
6796
6866
|
}
|
|
6797
6867
|
export declare class UpdateDescriptionResponse extends $tea.Model {
|
|
6798
|
-
headers
|
|
6868
|
+
headers?: {
|
|
6799
6869
|
[key: string]: string;
|
|
6800
6870
|
};
|
|
6801
|
-
statusCode
|
|
6802
|
-
body
|
|
6871
|
+
statusCode?: number;
|
|
6872
|
+
body?: UpdateDescriptionResponseBody;
|
|
6803
6873
|
static names(): {
|
|
6804
6874
|
[key: string]: string;
|
|
6805
6875
|
};
|
|
@@ -6838,11 +6908,11 @@ export declare class UpdateDiagnosisSettingsResponseBody extends $tea.Model {
|
|
|
6838
6908
|
});
|
|
6839
6909
|
}
|
|
6840
6910
|
export declare class UpdateDiagnosisSettingsResponse extends $tea.Model {
|
|
6841
|
-
headers
|
|
6911
|
+
headers?: {
|
|
6842
6912
|
[key: string]: string;
|
|
6843
6913
|
};
|
|
6844
|
-
statusCode
|
|
6845
|
-
body
|
|
6914
|
+
statusCode?: number;
|
|
6915
|
+
body?: UpdateDiagnosisSettingsResponseBody;
|
|
6846
6916
|
static names(): {
|
|
6847
6917
|
[key: string]: string;
|
|
6848
6918
|
};
|
|
@@ -6880,11 +6950,11 @@ export declare class UpdateDictResponseBody extends $tea.Model {
|
|
|
6880
6950
|
});
|
|
6881
6951
|
}
|
|
6882
6952
|
export declare class UpdateDictResponse extends $tea.Model {
|
|
6883
|
-
headers
|
|
6953
|
+
headers?: {
|
|
6884
6954
|
[key: string]: string;
|
|
6885
6955
|
};
|
|
6886
|
-
statusCode
|
|
6887
|
-
body
|
|
6956
|
+
statusCode?: number;
|
|
6957
|
+
body?: UpdateDictResponseBody;
|
|
6888
6958
|
static names(): {
|
|
6889
6959
|
[key: string]: string;
|
|
6890
6960
|
};
|
|
@@ -6924,11 +6994,11 @@ export declare class UpdateDynamicSettingsResponseBody extends $tea.Model {
|
|
|
6924
6994
|
});
|
|
6925
6995
|
}
|
|
6926
6996
|
export declare class UpdateDynamicSettingsResponse extends $tea.Model {
|
|
6927
|
-
headers
|
|
6997
|
+
headers?: {
|
|
6928
6998
|
[key: string]: string;
|
|
6929
6999
|
};
|
|
6930
|
-
statusCode
|
|
6931
|
-
body
|
|
7000
|
+
statusCode?: number;
|
|
7001
|
+
body?: UpdateDynamicSettingsResponseBody;
|
|
6932
7002
|
static names(): {
|
|
6933
7003
|
[key: string]: string;
|
|
6934
7004
|
};
|
|
@@ -6966,11 +7036,11 @@ export declare class UpdateExtendConfigResponseBody extends $tea.Model {
|
|
|
6966
7036
|
});
|
|
6967
7037
|
}
|
|
6968
7038
|
export declare class UpdateExtendConfigResponse extends $tea.Model {
|
|
6969
|
-
headers
|
|
7039
|
+
headers?: {
|
|
6970
7040
|
[key: string]: string;
|
|
6971
7041
|
};
|
|
6972
|
-
statusCode
|
|
6973
|
-
body
|
|
7042
|
+
statusCode?: number;
|
|
7043
|
+
body?: UpdateExtendConfigResponseBody;
|
|
6974
7044
|
static names(): {
|
|
6975
7045
|
[key: string]: string;
|
|
6976
7046
|
};
|
|
@@ -7008,11 +7078,11 @@ export declare class UpdateExtendfilesResponseBody extends $tea.Model {
|
|
|
7008
7078
|
});
|
|
7009
7079
|
}
|
|
7010
7080
|
export declare class UpdateExtendfilesResponse extends $tea.Model {
|
|
7011
|
-
headers
|
|
7081
|
+
headers?: {
|
|
7012
7082
|
[key: string]: string;
|
|
7013
7083
|
};
|
|
7014
|
-
statusCode
|
|
7015
|
-
body
|
|
7084
|
+
statusCode?: number;
|
|
7085
|
+
body?: UpdateExtendfilesResponseBody;
|
|
7016
7086
|
static names(): {
|
|
7017
7087
|
[key: string]: string;
|
|
7018
7088
|
};
|
|
@@ -7050,11 +7120,11 @@ export declare class UpdateHotIkDictsResponseBody extends $tea.Model {
|
|
|
7050
7120
|
});
|
|
7051
7121
|
}
|
|
7052
7122
|
export declare class UpdateHotIkDictsResponse extends $tea.Model {
|
|
7053
|
-
headers
|
|
7123
|
+
headers?: {
|
|
7054
7124
|
[key: string]: string;
|
|
7055
7125
|
};
|
|
7056
|
-
statusCode
|
|
7057
|
-
body
|
|
7126
|
+
statusCode?: number;
|
|
7127
|
+
body?: UpdateHotIkDictsResponseBody;
|
|
7058
7128
|
static names(): {
|
|
7059
7129
|
[key: string]: string;
|
|
7060
7130
|
};
|
|
@@ -7092,11 +7162,11 @@ export declare class UpdateILMPolicyResponseBody extends $tea.Model {
|
|
|
7092
7162
|
});
|
|
7093
7163
|
}
|
|
7094
7164
|
export declare class UpdateILMPolicyResponse extends $tea.Model {
|
|
7095
|
-
headers
|
|
7165
|
+
headers?: {
|
|
7096
7166
|
[key: string]: string;
|
|
7097
7167
|
};
|
|
7098
|
-
statusCode
|
|
7099
|
-
body
|
|
7168
|
+
statusCode?: number;
|
|
7169
|
+
body?: UpdateILMPolicyResponseBody;
|
|
7100
7170
|
static names(): {
|
|
7101
7171
|
[key: string]: string;
|
|
7102
7172
|
};
|
|
@@ -7134,11 +7204,11 @@ export declare class UpdateIndexTemplateResponseBody extends $tea.Model {
|
|
|
7134
7204
|
});
|
|
7135
7205
|
}
|
|
7136
7206
|
export declare class UpdateIndexTemplateResponse extends $tea.Model {
|
|
7137
|
-
headers
|
|
7207
|
+
headers?: {
|
|
7138
7208
|
[key: string]: string;
|
|
7139
7209
|
};
|
|
7140
|
-
statusCode
|
|
7141
|
-
body
|
|
7210
|
+
statusCode?: number;
|
|
7211
|
+
body?: UpdateIndexTemplateResponseBody;
|
|
7142
7212
|
static names(): {
|
|
7143
7213
|
[key: string]: string;
|
|
7144
7214
|
};
|
|
@@ -7187,11 +7257,11 @@ export declare class UpdateInstanceResponseBody extends $tea.Model {
|
|
|
7187
7257
|
});
|
|
7188
7258
|
}
|
|
7189
7259
|
export declare class UpdateInstanceResponse extends $tea.Model {
|
|
7190
|
-
headers
|
|
7260
|
+
headers?: {
|
|
7191
7261
|
[key: string]: string;
|
|
7192
7262
|
};
|
|
7193
|
-
statusCode
|
|
7194
|
-
body
|
|
7263
|
+
statusCode?: number;
|
|
7264
|
+
body?: UpdateInstanceResponseBody;
|
|
7195
7265
|
static names(): {
|
|
7196
7266
|
[key: string]: string;
|
|
7197
7267
|
};
|
|
@@ -7229,11 +7299,11 @@ export declare class UpdateInstanceChargeTypeResponseBody extends $tea.Model {
|
|
|
7229
7299
|
});
|
|
7230
7300
|
}
|
|
7231
7301
|
export declare class UpdateInstanceChargeTypeResponse extends $tea.Model {
|
|
7232
|
-
headers
|
|
7302
|
+
headers?: {
|
|
7233
7303
|
[key: string]: string;
|
|
7234
7304
|
};
|
|
7235
|
-
statusCode
|
|
7236
|
-
body
|
|
7305
|
+
statusCode?: number;
|
|
7306
|
+
body?: UpdateInstanceChargeTypeResponseBody;
|
|
7237
7307
|
static names(): {
|
|
7238
7308
|
[key: string]: string;
|
|
7239
7309
|
};
|
|
@@ -7270,11 +7340,11 @@ export declare class UpdateInstanceSettingsResponseBody extends $tea.Model {
|
|
|
7270
7340
|
});
|
|
7271
7341
|
}
|
|
7272
7342
|
export declare class UpdateInstanceSettingsResponse extends $tea.Model {
|
|
7273
|
-
headers
|
|
7343
|
+
headers?: {
|
|
7274
7344
|
[key: string]: string;
|
|
7275
7345
|
};
|
|
7276
|
-
statusCode
|
|
7277
|
-
body
|
|
7346
|
+
statusCode?: number;
|
|
7347
|
+
body?: UpdateInstanceSettingsResponseBody;
|
|
7278
7348
|
static names(): {
|
|
7279
7349
|
[key: string]: string;
|
|
7280
7350
|
};
|
|
@@ -7312,11 +7382,11 @@ export declare class UpdateKibanaSettingsResponseBody extends $tea.Model {
|
|
|
7312
7382
|
});
|
|
7313
7383
|
}
|
|
7314
7384
|
export declare class UpdateKibanaSettingsResponse extends $tea.Model {
|
|
7315
|
-
headers
|
|
7385
|
+
headers?: {
|
|
7316
7386
|
[key: string]: string;
|
|
7317
7387
|
};
|
|
7318
|
-
statusCode
|
|
7319
|
-
body
|
|
7388
|
+
statusCode?: number;
|
|
7389
|
+
body?: UpdateKibanaSettingsResponseBody;
|
|
7320
7390
|
static names(): {
|
|
7321
7391
|
[key: string]: string;
|
|
7322
7392
|
};
|
|
@@ -7356,11 +7426,11 @@ export declare class UpdateKibanaWhiteIpsResponseBody extends $tea.Model {
|
|
|
7356
7426
|
});
|
|
7357
7427
|
}
|
|
7358
7428
|
export declare class UpdateKibanaWhiteIpsResponse extends $tea.Model {
|
|
7359
|
-
headers
|
|
7429
|
+
headers?: {
|
|
7360
7430
|
[key: string]: string;
|
|
7361
7431
|
};
|
|
7362
|
-
statusCode
|
|
7363
|
-
body
|
|
7432
|
+
statusCode?: number;
|
|
7433
|
+
body?: UpdateKibanaWhiteIpsResponseBody;
|
|
7364
7434
|
static names(): {
|
|
7365
7435
|
[key: string]: string;
|
|
7366
7436
|
};
|
|
@@ -7399,11 +7469,11 @@ export declare class UpdateLogstashResponseBody extends $tea.Model {
|
|
|
7399
7469
|
});
|
|
7400
7470
|
}
|
|
7401
7471
|
export declare class UpdateLogstashResponse extends $tea.Model {
|
|
7402
|
-
headers
|
|
7472
|
+
headers?: {
|
|
7403
7473
|
[key: string]: string;
|
|
7404
7474
|
};
|
|
7405
|
-
statusCode
|
|
7406
|
-
body
|
|
7475
|
+
statusCode?: number;
|
|
7476
|
+
body?: UpdateLogstashResponseBody;
|
|
7407
7477
|
static names(): {
|
|
7408
7478
|
[key: string]: string;
|
|
7409
7479
|
};
|
|
@@ -7441,11 +7511,11 @@ export declare class UpdateLogstashChargeTypeResponseBody extends $tea.Model {
|
|
|
7441
7511
|
});
|
|
7442
7512
|
}
|
|
7443
7513
|
export declare class UpdateLogstashChargeTypeResponse extends $tea.Model {
|
|
7444
|
-
headers
|
|
7514
|
+
headers?: {
|
|
7445
7515
|
[key: string]: string;
|
|
7446
7516
|
};
|
|
7447
|
-
statusCode
|
|
7448
|
-
body
|
|
7517
|
+
statusCode?: number;
|
|
7518
|
+
body?: UpdateLogstashChargeTypeResponseBody;
|
|
7449
7519
|
static names(): {
|
|
7450
7520
|
[key: string]: string;
|
|
7451
7521
|
};
|
|
@@ -7483,11 +7553,11 @@ export declare class UpdateLogstashDescriptionResponseBody extends $tea.Model {
|
|
|
7483
7553
|
});
|
|
7484
7554
|
}
|
|
7485
7555
|
export declare class UpdateLogstashDescriptionResponse extends $tea.Model {
|
|
7486
|
-
headers
|
|
7556
|
+
headers?: {
|
|
7487
7557
|
[key: string]: string;
|
|
7488
7558
|
};
|
|
7489
|
-
statusCode
|
|
7490
|
-
body
|
|
7559
|
+
statusCode?: number;
|
|
7560
|
+
body?: UpdateLogstashDescriptionResponseBody;
|
|
7491
7561
|
static names(): {
|
|
7492
7562
|
[key: string]: string;
|
|
7493
7563
|
};
|
|
@@ -7524,11 +7594,11 @@ export declare class UpdateLogstashSettingsResponseBody extends $tea.Model {
|
|
|
7524
7594
|
});
|
|
7525
7595
|
}
|
|
7526
7596
|
export declare class UpdateLogstashSettingsResponse extends $tea.Model {
|
|
7527
|
-
headers
|
|
7597
|
+
headers?: {
|
|
7528
7598
|
[key: string]: string;
|
|
7529
7599
|
};
|
|
7530
|
-
statusCode
|
|
7531
|
-
body
|
|
7600
|
+
statusCode?: number;
|
|
7601
|
+
body?: UpdateLogstashSettingsResponseBody;
|
|
7532
7602
|
static names(): {
|
|
7533
7603
|
[key: string]: string;
|
|
7534
7604
|
};
|
|
@@ -7570,11 +7640,11 @@ export declare class UpdatePipelineManagementConfigResponseBody extends $tea.Mod
|
|
|
7570
7640
|
});
|
|
7571
7641
|
}
|
|
7572
7642
|
export declare class UpdatePipelineManagementConfigResponse extends $tea.Model {
|
|
7573
|
-
headers
|
|
7643
|
+
headers?: {
|
|
7574
7644
|
[key: string]: string;
|
|
7575
7645
|
};
|
|
7576
|
-
statusCode
|
|
7577
|
-
body
|
|
7646
|
+
statusCode?: number;
|
|
7647
|
+
body?: UpdatePipelineManagementConfigResponseBody;
|
|
7578
7648
|
static names(): {
|
|
7579
7649
|
[key: string]: string;
|
|
7580
7650
|
};
|
|
@@ -7613,11 +7683,11 @@ export declare class UpdatePipelinesResponseBody extends $tea.Model {
|
|
|
7613
7683
|
});
|
|
7614
7684
|
}
|
|
7615
7685
|
export declare class UpdatePipelinesResponse extends $tea.Model {
|
|
7616
|
-
headers
|
|
7686
|
+
headers?: {
|
|
7617
7687
|
[key: string]: string;
|
|
7618
7688
|
};
|
|
7619
|
-
statusCode
|
|
7620
|
-
body
|
|
7689
|
+
statusCode?: number;
|
|
7690
|
+
body?: UpdatePipelinesResponseBody;
|
|
7621
7691
|
static names(): {
|
|
7622
7692
|
[key: string]: string;
|
|
7623
7693
|
};
|
|
@@ -7656,11 +7726,11 @@ export declare class UpdatePrivateNetworkWhiteIpsResponseBody extends $tea.Model
|
|
|
7656
7726
|
});
|
|
7657
7727
|
}
|
|
7658
7728
|
export declare class UpdatePrivateNetworkWhiteIpsResponse extends $tea.Model {
|
|
7659
|
-
headers
|
|
7729
|
+
headers?: {
|
|
7660
7730
|
[key: string]: string;
|
|
7661
7731
|
};
|
|
7662
|
-
statusCode
|
|
7663
|
-
body
|
|
7732
|
+
statusCode?: number;
|
|
7733
|
+
body?: UpdatePrivateNetworkWhiteIpsResponseBody;
|
|
7664
7734
|
static names(): {
|
|
7665
7735
|
[key: string]: string;
|
|
7666
7736
|
};
|
|
@@ -7698,11 +7768,11 @@ export declare class UpdatePublicNetworkResponseBody extends $tea.Model {
|
|
|
7698
7768
|
});
|
|
7699
7769
|
}
|
|
7700
7770
|
export declare class UpdatePublicNetworkResponse extends $tea.Model {
|
|
7701
|
-
headers
|
|
7771
|
+
headers?: {
|
|
7702
7772
|
[key: string]: string;
|
|
7703
7773
|
};
|
|
7704
|
-
statusCode
|
|
7705
|
-
body
|
|
7774
|
+
statusCode?: number;
|
|
7775
|
+
body?: UpdatePublicNetworkResponseBody;
|
|
7706
7776
|
static names(): {
|
|
7707
7777
|
[key: string]: string;
|
|
7708
7778
|
};
|
|
@@ -7741,11 +7811,11 @@ export declare class UpdatePublicWhiteIpsResponseBody extends $tea.Model {
|
|
|
7741
7811
|
});
|
|
7742
7812
|
}
|
|
7743
7813
|
export declare class UpdatePublicWhiteIpsResponse extends $tea.Model {
|
|
7744
|
-
headers
|
|
7814
|
+
headers?: {
|
|
7745
7815
|
[key: string]: string;
|
|
7746
7816
|
};
|
|
7747
|
-
statusCode
|
|
7748
|
-
body
|
|
7817
|
+
statusCode?: number;
|
|
7818
|
+
body?: UpdatePublicWhiteIpsResponseBody;
|
|
7749
7819
|
static names(): {
|
|
7750
7820
|
[key: string]: string;
|
|
7751
7821
|
};
|
|
@@ -7783,11 +7853,11 @@ export declare class UpdateReadWritePolicyResponseBody extends $tea.Model {
|
|
|
7783
7853
|
});
|
|
7784
7854
|
}
|
|
7785
7855
|
export declare class UpdateReadWritePolicyResponse extends $tea.Model {
|
|
7786
|
-
headers
|
|
7856
|
+
headers?: {
|
|
7787
7857
|
[key: string]: string;
|
|
7788
7858
|
};
|
|
7789
|
-
statusCode
|
|
7790
|
-
body
|
|
7859
|
+
statusCode?: number;
|
|
7860
|
+
body?: UpdateReadWritePolicyResponseBody;
|
|
7791
7861
|
static names(): {
|
|
7792
7862
|
[key: string]: string;
|
|
7793
7863
|
};
|
|
@@ -7824,11 +7894,11 @@ export declare class UpdateSnapshotSettingResponseBody extends $tea.Model {
|
|
|
7824
7894
|
});
|
|
7825
7895
|
}
|
|
7826
7896
|
export declare class UpdateSnapshotSettingResponse extends $tea.Model {
|
|
7827
|
-
headers
|
|
7897
|
+
headers?: {
|
|
7828
7898
|
[key: string]: string;
|
|
7829
7899
|
};
|
|
7830
|
-
statusCode
|
|
7831
|
-
body
|
|
7900
|
+
statusCode?: number;
|
|
7901
|
+
body?: UpdateSnapshotSettingResponseBody;
|
|
7832
7902
|
static names(): {
|
|
7833
7903
|
[key: string]: string;
|
|
7834
7904
|
};
|
|
@@ -7866,11 +7936,11 @@ export declare class UpdateSynonymsDictsResponseBody extends $tea.Model {
|
|
|
7866
7936
|
});
|
|
7867
7937
|
}
|
|
7868
7938
|
export declare class UpdateSynonymsDictsResponse extends $tea.Model {
|
|
7869
|
-
headers
|
|
7939
|
+
headers?: {
|
|
7870
7940
|
[key: string]: string;
|
|
7871
7941
|
};
|
|
7872
|
-
statusCode
|
|
7873
|
-
body
|
|
7942
|
+
statusCode?: number;
|
|
7943
|
+
body?: UpdateSynonymsDictsResponseBody;
|
|
7874
7944
|
static names(): {
|
|
7875
7945
|
[key: string]: string;
|
|
7876
7946
|
};
|
|
@@ -7908,11 +7978,11 @@ export declare class UpdateTemplateResponseBody extends $tea.Model {
|
|
|
7908
7978
|
});
|
|
7909
7979
|
}
|
|
7910
7980
|
export declare class UpdateTemplateResponse extends $tea.Model {
|
|
7911
|
-
headers
|
|
7981
|
+
headers?: {
|
|
7912
7982
|
[key: string]: string;
|
|
7913
7983
|
};
|
|
7914
|
-
statusCode
|
|
7915
|
-
body
|
|
7984
|
+
statusCode?: number;
|
|
7985
|
+
body?: UpdateTemplateResponseBody;
|
|
7916
7986
|
static names(): {
|
|
7917
7987
|
[key: string]: string;
|
|
7918
7988
|
};
|
|
@@ -7952,11 +8022,11 @@ export declare class UpdateWhiteIpsResponseBody extends $tea.Model {
|
|
|
7952
8022
|
});
|
|
7953
8023
|
}
|
|
7954
8024
|
export declare class UpdateWhiteIpsResponse extends $tea.Model {
|
|
7955
|
-
headers
|
|
8025
|
+
headers?: {
|
|
7956
8026
|
[key: string]: string;
|
|
7957
8027
|
};
|
|
7958
|
-
statusCode
|
|
7959
|
-
body
|
|
8028
|
+
statusCode?: number;
|
|
8029
|
+
body?: UpdateWhiteIpsResponseBody;
|
|
7960
8030
|
static names(): {
|
|
7961
8031
|
[key: string]: string;
|
|
7962
8032
|
};
|
|
@@ -7997,11 +8067,11 @@ export declare class UpdateXpackMonitorConfigResponseBody extends $tea.Model {
|
|
|
7997
8067
|
});
|
|
7998
8068
|
}
|
|
7999
8069
|
export declare class UpdateXpackMonitorConfigResponse extends $tea.Model {
|
|
8000
|
-
headers
|
|
8070
|
+
headers?: {
|
|
8001
8071
|
[key: string]: string;
|
|
8002
8072
|
};
|
|
8003
|
-
statusCode
|
|
8004
|
-
body
|
|
8073
|
+
statusCode?: number;
|
|
8074
|
+
body?: UpdateXpackMonitorConfigResponseBody;
|
|
8005
8075
|
static names(): {
|
|
8006
8076
|
[key: string]: string;
|
|
8007
8077
|
};
|
|
@@ -8041,11 +8111,11 @@ export declare class UpgradeEngineVersionResponseBody extends $tea.Model {
|
|
|
8041
8111
|
});
|
|
8042
8112
|
}
|
|
8043
8113
|
export declare class UpgradeEngineVersionResponse extends $tea.Model {
|
|
8044
|
-
headers
|
|
8114
|
+
headers?: {
|
|
8045
8115
|
[key: string]: string;
|
|
8046
8116
|
};
|
|
8047
|
-
statusCode
|
|
8048
|
-
body
|
|
8117
|
+
statusCode?: number;
|
|
8118
|
+
body?: UpgradeEngineVersionResponseBody;
|
|
8049
8119
|
static names(): {
|
|
8050
8120
|
[key: string]: string;
|
|
8051
8121
|
};
|
|
@@ -8083,11 +8153,11 @@ export declare class ValidateConnectionResponseBody extends $tea.Model {
|
|
|
8083
8153
|
});
|
|
8084
8154
|
}
|
|
8085
8155
|
export declare class ValidateConnectionResponse extends $tea.Model {
|
|
8086
|
-
headers
|
|
8156
|
+
headers?: {
|
|
8087
8157
|
[key: string]: string;
|
|
8088
8158
|
};
|
|
8089
|
-
statusCode
|
|
8090
|
-
body
|
|
8159
|
+
statusCode?: number;
|
|
8160
|
+
body?: ValidateConnectionResponseBody;
|
|
8091
8161
|
static names(): {
|
|
8092
8162
|
[key: string]: string;
|
|
8093
8163
|
};
|
|
@@ -8127,11 +8197,11 @@ export declare class ValidateShrinkNodesResponseBody extends $tea.Model {
|
|
|
8127
8197
|
});
|
|
8128
8198
|
}
|
|
8129
8199
|
export declare class ValidateShrinkNodesResponse extends $tea.Model {
|
|
8130
|
-
headers
|
|
8200
|
+
headers?: {
|
|
8131
8201
|
[key: string]: string;
|
|
8132
8202
|
};
|
|
8133
|
-
statusCode
|
|
8134
|
-
body
|
|
8203
|
+
statusCode?: number;
|
|
8204
|
+
body?: ValidateShrinkNodesResponseBody;
|
|
8135
8205
|
static names(): {
|
|
8136
8206
|
[key: string]: string;
|
|
8137
8207
|
};
|
|
@@ -8169,11 +8239,11 @@ export declare class ValidateSlrPermissionResponseBody extends $tea.Model {
|
|
|
8169
8239
|
});
|
|
8170
8240
|
}
|
|
8171
8241
|
export declare class ValidateSlrPermissionResponse extends $tea.Model {
|
|
8172
|
-
headers
|
|
8242
|
+
headers?: {
|
|
8173
8243
|
[key: string]: string;
|
|
8174
8244
|
};
|
|
8175
|
-
statusCode
|
|
8176
|
-
body
|
|
8245
|
+
statusCode?: number;
|
|
8246
|
+
body?: ValidateSlrPermissionResponseBody;
|
|
8177
8247
|
static names(): {
|
|
8178
8248
|
[key: string]: string;
|
|
8179
8249
|
};
|
|
@@ -8211,11 +8281,11 @@ export declare class ValidateTransferableNodesResponseBody extends $tea.Model {
|
|
|
8211
8281
|
});
|
|
8212
8282
|
}
|
|
8213
8283
|
export declare class ValidateTransferableNodesResponse extends $tea.Model {
|
|
8214
|
-
headers
|
|
8284
|
+
headers?: {
|
|
8215
8285
|
[key: string]: string;
|
|
8216
8286
|
};
|
|
8217
|
-
statusCode
|
|
8218
|
-
body
|
|
8287
|
+
statusCode?: number;
|
|
8288
|
+
body?: ValidateTransferableNodesResponseBody;
|
|
8219
8289
|
static names(): {
|
|
8220
8290
|
[key: string]: string;
|
|
8221
8291
|
};
|
|
@@ -8241,6 +8311,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
8241
8311
|
paymentInfo?: PaymentInfo;
|
|
8242
8312
|
paymentType?: string;
|
|
8243
8313
|
resourceGroupId?: string;
|
|
8314
|
+
tags?: CreateInstanceRequestTags[];
|
|
8244
8315
|
warmNodeConfiguration?: WarmNodeConfiguration;
|
|
8245
8316
|
zoneCount?: number;
|
|
8246
8317
|
clientToken?: string;
|
|
@@ -8255,10 +8326,10 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
8255
8326
|
});
|
|
8256
8327
|
}
|
|
8257
8328
|
export declare class CreateInstanceResponse extends $tea.Model {
|
|
8258
|
-
headers
|
|
8329
|
+
headers?: {
|
|
8259
8330
|
[key: string]: string;
|
|
8260
8331
|
};
|
|
8261
|
-
statusCode
|
|
8332
|
+
statusCode?: number;
|
|
8262
8333
|
static names(): {
|
|
8263
8334
|
[key: string]: string;
|
|
8264
8335
|
};
|
|
@@ -8363,12 +8434,9 @@ export declare class LogstashZoneInfos extends $tea.Model {
|
|
|
8363
8434
|
[key: string]: any;
|
|
8364
8435
|
});
|
|
8365
8436
|
}
|
|
8366
|
-
export declare class
|
|
8367
|
-
|
|
8368
|
-
size?: number;
|
|
8369
|
-
totalCount?: number;
|
|
8437
|
+
export declare class MigrationJobSourceCluster extends $tea.Model {
|
|
8438
|
+
instanceId?: string;
|
|
8370
8439
|
type?: string;
|
|
8371
|
-
unit?: string;
|
|
8372
8440
|
static names(): {
|
|
8373
8441
|
[key: string]: string;
|
|
8374
8442
|
};
|
|
@@ -8379,12 +8447,54 @@ export declare class CapacityPlanRequestDataInfo extends $tea.Model {
|
|
|
8379
8447
|
[key: string]: any;
|
|
8380
8448
|
});
|
|
8381
8449
|
}
|
|
8382
|
-
export declare class
|
|
8383
|
-
averageQps?: number;
|
|
8450
|
+
export declare class MigrationJobStatusResult extends $tea.Model {
|
|
8384
8451
|
code?: string;
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8452
|
+
success?: boolean;
|
|
8453
|
+
static names(): {
|
|
8454
|
+
[key: string]: string;
|
|
8455
|
+
};
|
|
8456
|
+
static types(): {
|
|
8457
|
+
[key: string]: any;
|
|
8458
|
+
};
|
|
8459
|
+
constructor(map?: {
|
|
8460
|
+
[key: string]: any;
|
|
8461
|
+
});
|
|
8462
|
+
}
|
|
8463
|
+
export declare class MigrationJobTargetCluster extends $tea.Model {
|
|
8464
|
+
instanceId?: string;
|
|
8465
|
+
type?: string;
|
|
8466
|
+
static names(): {
|
|
8467
|
+
[key: string]: string;
|
|
8468
|
+
};
|
|
8469
|
+
static types(): {
|
|
8470
|
+
[key: string]: any;
|
|
8471
|
+
};
|
|
8472
|
+
constructor(map?: {
|
|
8473
|
+
[key: string]: any;
|
|
8474
|
+
});
|
|
8475
|
+
}
|
|
8476
|
+
export declare class CapacityPlanRequestDataInfo extends $tea.Model {
|
|
8477
|
+
code?: string;
|
|
8478
|
+
size?: number;
|
|
8479
|
+
totalCount?: number;
|
|
8480
|
+
type?: string;
|
|
8481
|
+
unit?: string;
|
|
8482
|
+
static names(): {
|
|
8483
|
+
[key: string]: string;
|
|
8484
|
+
};
|
|
8485
|
+
static types(): {
|
|
8486
|
+
[key: string]: any;
|
|
8487
|
+
};
|
|
8488
|
+
constructor(map?: {
|
|
8489
|
+
[key: string]: any;
|
|
8490
|
+
});
|
|
8491
|
+
}
|
|
8492
|
+
export declare class CapacityPlanRequestMetric extends $tea.Model {
|
|
8493
|
+
averageQps?: number;
|
|
8494
|
+
code?: string;
|
|
8495
|
+
concurrent?: number;
|
|
8496
|
+
peakQps?: number;
|
|
8497
|
+
responseTime?: number;
|
|
8388
8498
|
throughput?: number;
|
|
8389
8499
|
type?: string;
|
|
8390
8500
|
static names(): {
|
|
@@ -9940,6 +10050,133 @@ export declare class GetRegionConfigurationResponseBodyResult extends $tea.Model
|
|
|
9940
10050
|
[key: string]: any;
|
|
9941
10051
|
});
|
|
9942
10052
|
}
|
|
10053
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultClientNodeAmountRange extends $tea.Model {
|
|
10054
|
+
maxAmount?: number;
|
|
10055
|
+
minAmount?: number;
|
|
10056
|
+
static names(): {
|
|
10057
|
+
[key: string]: string;
|
|
10058
|
+
};
|
|
10059
|
+
static types(): {
|
|
10060
|
+
[key: string]: any;
|
|
10061
|
+
};
|
|
10062
|
+
constructor(map?: {
|
|
10063
|
+
[key: string]: any;
|
|
10064
|
+
});
|
|
10065
|
+
}
|
|
10066
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultClientNodeDiskList extends $tea.Model {
|
|
10067
|
+
diskType?: string;
|
|
10068
|
+
maxSize?: number;
|
|
10069
|
+
minSize?: number;
|
|
10070
|
+
scaleLimit?: number;
|
|
10071
|
+
static names(): {
|
|
10072
|
+
[key: string]: string;
|
|
10073
|
+
};
|
|
10074
|
+
static types(): {
|
|
10075
|
+
[key: string]: any;
|
|
10076
|
+
};
|
|
10077
|
+
constructor(map?: {
|
|
10078
|
+
[key: string]: any;
|
|
10079
|
+
});
|
|
10080
|
+
}
|
|
10081
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultDataNodeAmountRange extends $tea.Model {
|
|
10082
|
+
maxAmount?: number;
|
|
10083
|
+
minAmount?: number;
|
|
10084
|
+
static names(): {
|
|
10085
|
+
[key: string]: string;
|
|
10086
|
+
};
|
|
10087
|
+
static types(): {
|
|
10088
|
+
[key: string]: any;
|
|
10089
|
+
};
|
|
10090
|
+
constructor(map?: {
|
|
10091
|
+
[key: string]: any;
|
|
10092
|
+
});
|
|
10093
|
+
}
|
|
10094
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultDataNodeDiskListSubClassificationConfines extends $tea.Model {
|
|
10095
|
+
maxSize?: number;
|
|
10096
|
+
minSize?: number;
|
|
10097
|
+
performanceLevel?: string;
|
|
10098
|
+
static names(): {
|
|
10099
|
+
[key: string]: string;
|
|
10100
|
+
};
|
|
10101
|
+
static types(): {
|
|
10102
|
+
[key: string]: any;
|
|
10103
|
+
};
|
|
10104
|
+
constructor(map?: {
|
|
10105
|
+
[key: string]: any;
|
|
10106
|
+
});
|
|
10107
|
+
}
|
|
10108
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultDataNodeDiskList extends $tea.Model {
|
|
10109
|
+
diskType?: string;
|
|
10110
|
+
maxSize?: number;
|
|
10111
|
+
minSize?: number;
|
|
10112
|
+
scaleLimit?: number;
|
|
10113
|
+
subClassificationConfines?: GetRegionalInstanceConfigResponseBodyResultDataNodeDiskListSubClassificationConfines[];
|
|
10114
|
+
valueLimitSet?: number[];
|
|
10115
|
+
static names(): {
|
|
10116
|
+
[key: string]: string;
|
|
10117
|
+
};
|
|
10118
|
+
static types(): {
|
|
10119
|
+
[key: string]: any;
|
|
10120
|
+
};
|
|
10121
|
+
constructor(map?: {
|
|
10122
|
+
[key: string]: any;
|
|
10123
|
+
});
|
|
10124
|
+
}
|
|
10125
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultMasterDiskListSubClassificationConfines extends $tea.Model {
|
|
10126
|
+
maxSize?: number;
|
|
10127
|
+
minSize?: number;
|
|
10128
|
+
performanceLevel?: string;
|
|
10129
|
+
static names(): {
|
|
10130
|
+
[key: string]: string;
|
|
10131
|
+
};
|
|
10132
|
+
static types(): {
|
|
10133
|
+
[key: string]: any;
|
|
10134
|
+
};
|
|
10135
|
+
constructor(map?: {
|
|
10136
|
+
[key: string]: any;
|
|
10137
|
+
});
|
|
10138
|
+
}
|
|
10139
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultMasterDiskList extends $tea.Model {
|
|
10140
|
+
diskType?: string;
|
|
10141
|
+
maxSize?: number;
|
|
10142
|
+
minSize?: number;
|
|
10143
|
+
scaleLimit?: number;
|
|
10144
|
+
subClassificationConfines?: GetRegionalInstanceConfigResponseBodyResultMasterDiskListSubClassificationConfines[];
|
|
10145
|
+
static names(): {
|
|
10146
|
+
[key: string]: string;
|
|
10147
|
+
};
|
|
10148
|
+
static types(): {
|
|
10149
|
+
[key: string]: any;
|
|
10150
|
+
};
|
|
10151
|
+
constructor(map?: {
|
|
10152
|
+
[key: string]: any;
|
|
10153
|
+
});
|
|
10154
|
+
}
|
|
10155
|
+
export declare class GetRegionalInstanceConfigResponseBodyResult extends $tea.Model {
|
|
10156
|
+
clientNodeAmountRange?: GetRegionalInstanceConfigResponseBodyResultClientNodeAmountRange;
|
|
10157
|
+
clientNodeDiskList?: GetRegionalInstanceConfigResponseBodyResultClientNodeDiskList[];
|
|
10158
|
+
clientSpecs?: string[];
|
|
10159
|
+
dataNodeAmountRange?: GetRegionalInstanceConfigResponseBodyResultDataNodeAmountRange;
|
|
10160
|
+
dataNodeDiskList?: GetRegionalInstanceConfigResponseBodyResultDataNodeDiskList[];
|
|
10161
|
+
dataNodeSpecs?: string[];
|
|
10162
|
+
kibanaSpecs?: string[];
|
|
10163
|
+
masterAmountRange?: string[];
|
|
10164
|
+
masterDiskList?: GetRegionalInstanceConfigResponseBodyResultMasterDiskList[];
|
|
10165
|
+
masterSpecs?: string[];
|
|
10166
|
+
specInfoMap?: {
|
|
10167
|
+
[key: string]: ResultSpecInfoMapValue;
|
|
10168
|
+
};
|
|
10169
|
+
versions?: string[];
|
|
10170
|
+
static names(): {
|
|
10171
|
+
[key: string]: string;
|
|
10172
|
+
};
|
|
10173
|
+
static types(): {
|
|
10174
|
+
[key: string]: any;
|
|
10175
|
+
};
|
|
10176
|
+
constructor(map?: {
|
|
10177
|
+
[key: string]: any;
|
|
10178
|
+
});
|
|
10179
|
+
}
|
|
9943
10180
|
export declare class GetSuggestShrinkableNodesResponseBodyResult extends $tea.Model {
|
|
9944
10181
|
host?: string;
|
|
9945
10182
|
port?: number;
|
|
@@ -12436,6 +12673,19 @@ export declare class ValidateTransferableNodesRequestBody extends $tea.Model {
|
|
|
12436
12673
|
[key: string]: any;
|
|
12437
12674
|
});
|
|
12438
12675
|
}
|
|
12676
|
+
export declare class CreateInstanceRequestTags extends $tea.Model {
|
|
12677
|
+
tagKey?: string;
|
|
12678
|
+
tagValue?: string;
|
|
12679
|
+
static names(): {
|
|
12680
|
+
[key: string]: string;
|
|
12681
|
+
};
|
|
12682
|
+
static types(): {
|
|
12683
|
+
[key: string]: any;
|
|
12684
|
+
};
|
|
12685
|
+
constructor(map?: {
|
|
12686
|
+
[key: string]: any;
|
|
12687
|
+
});
|
|
12688
|
+
}
|
|
12439
12689
|
export default class Client extends OpenApi {
|
|
12440
12690
|
constructor(config: $OpenApi.Config);
|
|
12441
12691
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
@@ -12494,6 +12744,7 @@ export default class Client extends OpenApi {
|
|
|
12494
12744
|
}, runtime: $Util.RuntimeOptions): Promise<CreateDataStreamResponse>;
|
|
12495
12745
|
createDataStream(InstanceId: string, request: CreateDataStreamRequest): Promise<CreateDataStreamResponse>;
|
|
12496
12746
|
/**
|
|
12747
|
+
* @deprecated
|
|
12497
12748
|
* Before you call this operation, note that:
|
|
12498
12749
|
* * Currently, the one-click index migration feature only supports the China (Beijing) region.
|
|
12499
12750
|
* * The source and destination Elasticsearch clusters must meet the following requirements: a user-created or Alibaba Cloud Elasticsearch Elasticsearch cluster with a source of version 6.7.0 and a Alibaba Cloud Elasticsearch Elasticsearch cluster with a destination of version 6.3.2 or 6.7.0.
|
|
@@ -12507,6 +12758,7 @@ export default class Client extends OpenApi {
|
|
|
12507
12758
|
[key: string]: string;
|
|
12508
12759
|
}, runtime: $Util.RuntimeOptions): Promise<CreateDataTasksResponse>;
|
|
12509
12760
|
/**
|
|
12761
|
+
* @deprecated
|
|
12510
12762
|
* Before you call this operation, note that:
|
|
12511
12763
|
* * Currently, the one-click index migration feature only supports the China (Beijing) region.
|
|
12512
12764
|
* * The source and destination Elasticsearch clusters must meet the following requirements: a user-created or Alibaba Cloud Elasticsearch Elasticsearch cluster with a source of version 6.7.0 and a Alibaba Cloud Elasticsearch Elasticsearch cluster with a destination of version 6.3.2 or 6.7.0.
|
|
@@ -12523,27 +12775,9 @@ export default class Client extends OpenApi {
|
|
|
12523
12775
|
[key: string]: string;
|
|
12524
12776
|
}, runtime: $Util.RuntimeOptions): Promise<CreateIndexTemplateResponse>;
|
|
12525
12777
|
createIndexTemplate(InstanceId: string, request: CreateIndexTemplateRequest): Promise<CreateIndexTemplateResponse>;
|
|
12526
|
-
/**
|
|
12527
|
-
* Before you call the API operation, note that:
|
|
12528
|
-
* * Before you call this operation, make sure that you have fully understood the payment method and price of Logstash.
|
|
12529
|
-
* * Before you create an instance, you must complete real-name verification.
|
|
12530
|
-
*
|
|
12531
|
-
* @param request CreateLogstashRequest
|
|
12532
|
-
* @param headers map
|
|
12533
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12534
|
-
* @return CreateLogstashResponse
|
|
12535
|
-
*/
|
|
12536
12778
|
createLogstashWithOptions(request: CreateLogstashRequest, headers: {
|
|
12537
12779
|
[key: string]: string;
|
|
12538
12780
|
}, runtime: $Util.RuntimeOptions): Promise<CreateLogstashResponse>;
|
|
12539
|
-
/**
|
|
12540
|
-
* Before you call the API operation, note that:
|
|
12541
|
-
* * Before you call this operation, make sure that you have fully understood the payment method and price of Logstash.
|
|
12542
|
-
* * Before you create an instance, you must complete real-name verification.
|
|
12543
|
-
*
|
|
12544
|
-
* @param request CreateLogstashRequest
|
|
12545
|
-
* @return CreateLogstashResponse
|
|
12546
|
-
*/
|
|
12547
12781
|
createLogstash(request: CreateLogstashRequest): Promise<CreateLogstashResponse>;
|
|
12548
12782
|
createPipelinesWithOptions(InstanceId: string, request: CreatePipelinesRequest, headers: {
|
|
12549
12783
|
[key: string]: string;
|
|
@@ -12554,7 +12788,7 @@ export default class Client extends OpenApi {
|
|
|
12554
12788
|
}, runtime: $Util.RuntimeOptions): Promise<CreateSnapshotResponse>;
|
|
12555
12789
|
createSnapshot(InstanceId: string, request: CreateSnapshotRequest): Promise<CreateSnapshotResponse>;
|
|
12556
12790
|
/**
|
|
12557
|
-
*
|
|
12791
|
+
* 5FFD9ED4-C2EC-4E89-B22B-1ACB6FE1D\\*\\*\\*
|
|
12558
12792
|
*
|
|
12559
12793
|
* @param request CreateVpcEndpointRequest
|
|
12560
12794
|
* @param headers map
|
|
@@ -12565,7 +12799,7 @@ export default class Client extends OpenApi {
|
|
|
12565
12799
|
[key: string]: string;
|
|
12566
12800
|
}, runtime: $Util.RuntimeOptions): Promise<CreateVpcEndpointResponse>;
|
|
12567
12801
|
/**
|
|
12568
|
-
*
|
|
12802
|
+
* 5FFD9ED4-C2EC-4E89-B22B-1ACB6FE1D\\*\\*\\*
|
|
12569
12803
|
*
|
|
12570
12804
|
* @param request CreateVpcEndpointRequest
|
|
12571
12805
|
* @return CreateVpcEndpointResponse
|
|
@@ -12612,8 +12846,7 @@ export default class Client extends OpenApi {
|
|
|
12612
12846
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
|
|
12613
12847
|
deleteInstance(InstanceId: string, request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
|
|
12614
12848
|
/**
|
|
12615
|
-
* Before you call
|
|
12616
|
-
* After an instance is released, the physical resources used by the instance are recycled. All related data is lost and cannot be recovered. The Cloud disks attached to the instance nodes are also released. The corresponding snapshots are deleted.
|
|
12849
|
+
* Before you call this operation, take note of the following information: After the cluster is released, the physical resources used by the cluster are reclaimed. The data stored in the cluster is deleted and cannot be recovered. The disks attached to the nodes in the cluster and the snapshots created for the cluster are released.
|
|
12617
12850
|
*
|
|
12618
12851
|
* @param request DeleteLogstashRequest
|
|
12619
12852
|
* @param headers map
|
|
@@ -12624,8 +12857,7 @@ export default class Client extends OpenApi {
|
|
|
12624
12857
|
[key: string]: string;
|
|
12625
12858
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteLogstashResponse>;
|
|
12626
12859
|
/**
|
|
12627
|
-
* Before you call
|
|
12628
|
-
* After an instance is released, the physical resources used by the instance are recycled. All related data is lost and cannot be recovered. The Cloud disks attached to the instance nodes are also released. The corresponding snapshots are deleted.
|
|
12860
|
+
* Before you call this operation, take note of the following information: After the cluster is released, the physical resources used by the cluster are reclaimed. The data stored in the cluster is deleted and cannot be recovered. The disks attached to the nodes in the cluster and the snapshots created for the cluster are released.
|
|
12629
12861
|
*
|
|
12630
12862
|
* @param request DeleteLogstashRequest
|
|
12631
12863
|
* @return DeleteLogstashResponse
|
|
@@ -12644,7 +12876,7 @@ export default class Client extends OpenApi {
|
|
|
12644
12876
|
}, runtime: $Util.RuntimeOptions): Promise<DeleteVpcEndpointResponse>;
|
|
12645
12877
|
deleteVpcEndpoint(InstanceId: string, EndpointId: string, request: DeleteVpcEndpointRequest): Promise<DeleteVpcEndpointResponse>;
|
|
12646
12878
|
/**
|
|
12647
|
-
* >
|
|
12879
|
+
* > Before you install a shipper on an ACK cluster, you can call this operation to query the installation status of ES-operator for the ACK cluster.
|
|
12648
12880
|
*
|
|
12649
12881
|
* @param headers map
|
|
12650
12882
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12654,7 +12886,7 @@ export default class Client extends OpenApi {
|
|
|
12654
12886
|
[key: string]: string;
|
|
12655
12887
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeAckOperatorResponse>;
|
|
12656
12888
|
/**
|
|
12657
|
-
* >
|
|
12889
|
+
* > Before you install a shipper on an ACK cluster, you can call this operation to query the installation status of ES-operator for the ACK cluster.
|
|
12658
12890
|
*
|
|
12659
12891
|
* @return DescribeAckOperatorResponse
|
|
12660
12892
|
*/
|
|
@@ -12692,10 +12924,10 @@ export default class Client extends OpenApi {
|
|
|
12692
12924
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeDynamicSettingsResponse>;
|
|
12693
12925
|
describeDynamicSettings(InstanceId: string): Promise<DescribeDynamicSettingsResponse>;
|
|
12694
12926
|
/**
|
|
12695
|
-
*
|
|
12696
|
-
* * GREEN:
|
|
12697
|
-
* * YELLOW:
|
|
12698
|
-
* * RED:
|
|
12927
|
+
* An Elasticsearch cluster can be in a health state indicated by one of the following colors:
|
|
12928
|
+
* * GREEN: Primary shards and replica shards for the primary shards are normally allocated.
|
|
12929
|
+
* * YELLOW: Primary shards are normally allocated, but replica shards for the primary shards are not normally allocated.
|
|
12930
|
+
* * RED: Primary shards are not normally allocated.
|
|
12699
12931
|
*
|
|
12700
12932
|
* @param headers map
|
|
12701
12933
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12705,10 +12937,10 @@ export default class Client extends OpenApi {
|
|
|
12705
12937
|
[key: string]: string;
|
|
12706
12938
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeElasticsearchHealthResponse>;
|
|
12707
12939
|
/**
|
|
12708
|
-
*
|
|
12709
|
-
* * GREEN:
|
|
12710
|
-
* * YELLOW:
|
|
12711
|
-
* * RED:
|
|
12940
|
+
* An Elasticsearch cluster can be in a health state indicated by one of the following colors:
|
|
12941
|
+
* * GREEN: Primary shards and replica shards for the primary shards are normally allocated.
|
|
12942
|
+
* * YELLOW: Primary shards are normally allocated, but replica shards for the primary shards are not normally allocated.
|
|
12943
|
+
* * RED: Primary shards are not normally allocated.
|
|
12712
12944
|
*
|
|
12713
12945
|
* @return DescribeElasticsearchHealthResponse
|
|
12714
12946
|
*/
|
|
@@ -12797,6 +13029,10 @@ export default class Client extends OpenApi {
|
|
|
12797
13029
|
[key: string]: string;
|
|
12798
13030
|
}, runtime: $Util.RuntimeOptions): Promise<GetRegionConfigurationResponse>;
|
|
12799
13031
|
getRegionConfiguration(request: GetRegionConfigurationRequest): Promise<GetRegionConfigurationResponse>;
|
|
13032
|
+
getRegionalInstanceConfigWithOptions(headers: {
|
|
13033
|
+
[key: string]: string;
|
|
13034
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetRegionalInstanceConfigResponse>;
|
|
13035
|
+
getRegionalInstanceConfig(): Promise<GetRegionalInstanceConfigResponse>;
|
|
12800
13036
|
getSuggestShrinkableNodesWithOptions(InstanceId: string, request: GetSuggestShrinkableNodesRequest, headers: {
|
|
12801
13037
|
[key: string]: string;
|
|
12802
13038
|
}, runtime: $Util.RuntimeOptions): Promise<GetSuggestShrinkableNodesResponse>;
|
|
@@ -12806,7 +13042,7 @@ export default class Client extends OpenApi {
|
|
|
12806
13042
|
}, runtime: $Util.RuntimeOptions): Promise<GetTransferableNodesResponse>;
|
|
12807
13043
|
getTransferableNodes(InstanceId: string, request: GetTransferableNodesRequest): Promise<GetTransferableNodesResponse>;
|
|
12808
13044
|
/**
|
|
12809
|
-
* >
|
|
13045
|
+
* > Before you perform auto scaling for a cluster at the China site (aliyun.com) or you use shippers to collect logs, you must create a service-linked role.
|
|
12810
13046
|
*
|
|
12811
13047
|
* @param request InitializeOperationRoleRequest
|
|
12812
13048
|
* @param headers map
|
|
@@ -12817,14 +13053,14 @@ export default class Client extends OpenApi {
|
|
|
12817
13053
|
[key: string]: string;
|
|
12818
13054
|
}, runtime: $Util.RuntimeOptions): Promise<InitializeOperationRoleResponse>;
|
|
12819
13055
|
/**
|
|
12820
|
-
* >
|
|
13056
|
+
* > Before you perform auto scaling for a cluster at the China site (aliyun.com) or you use shippers to collect logs, you must create a service-linked role.
|
|
12821
13057
|
*
|
|
12822
13058
|
* @param request InitializeOperationRoleRequest
|
|
12823
13059
|
* @return InitializeOperationRoleResponse
|
|
12824
13060
|
*/
|
|
12825
13061
|
initializeOperationRole(request: InitializeOperationRoleRequest): Promise<InitializeOperationRoleResponse>;
|
|
12826
13062
|
/**
|
|
12827
|
-
* >
|
|
13063
|
+
* > Before you install a shipper for an ACK cluster, you must call this operation to install ES-operator for the cluster.
|
|
12828
13064
|
*
|
|
12829
13065
|
* @param request InstallAckOperatorRequest
|
|
12830
13066
|
* @param headers map
|
|
@@ -12835,7 +13071,7 @@ export default class Client extends OpenApi {
|
|
|
12835
13071
|
[key: string]: string;
|
|
12836
13072
|
}, runtime: $Util.RuntimeOptions): Promise<InstallAckOperatorResponse>;
|
|
12837
13073
|
/**
|
|
12838
|
-
* >
|
|
13074
|
+
* > Before you install a shipper for an ACK cluster, you must call this operation to install ES-operator for the cluster.
|
|
12839
13075
|
*
|
|
12840
13076
|
* @param request InstallAckOperatorRequest
|
|
12841
13077
|
* @return InstallAckOperatorResponse
|
|
@@ -12846,8 +13082,7 @@ export default class Client extends OpenApi {
|
|
|
12846
13082
|
}, runtime: $Util.RuntimeOptions): Promise<InstallKibanaSystemPluginResponse>;
|
|
12847
13083
|
installKibanaSystemPlugin(InstanceId: string, request: InstallKibanaSystemPluginRequest): Promise<InstallKibanaSystemPluginResponse>;
|
|
12848
13084
|
/**
|
|
12849
|
-
*
|
|
12850
|
-
* The plug-ins to be installed must be included in the [System Default Plug-ins](~~139626~~) list of Alibaba Cloud Logstash. External open-source plug-ins are not supported.
|
|
13085
|
+
* ls-cn-oew1qbgl\\*\\*\\*\\*
|
|
12851
13086
|
*
|
|
12852
13087
|
* @param request InstallLogstashSystemPluginRequest
|
|
12853
13088
|
* @param headers map
|
|
@@ -12858,8 +13093,7 @@ export default class Client extends OpenApi {
|
|
|
12858
13093
|
[key: string]: string;
|
|
12859
13094
|
}, runtime: $Util.RuntimeOptions): Promise<InstallLogstashSystemPluginResponse>;
|
|
12860
13095
|
/**
|
|
12861
|
-
*
|
|
12862
|
-
* The plug-ins to be installed must be included in the [System Default Plug-ins](~~139626~~) list of Alibaba Cloud Logstash. External open-source plug-ins are not supported.
|
|
13096
|
+
* ls-cn-oew1qbgl\\*\\*\\*\\*
|
|
12863
13097
|
*
|
|
12864
13098
|
* @param request InstallLogstashSystemPluginRequest
|
|
12865
13099
|
* @return InstallLogstashSystemPluginResponse
|
|
@@ -12886,7 +13120,7 @@ export default class Client extends OpenApi {
|
|
|
12886
13120
|
}, runtime: $Util.RuntimeOptions): Promise<ListAckClustersResponse>;
|
|
12887
13121
|
listAckClusters(request: ListAckClustersRequest): Promise<ListAckClustersResponse>;
|
|
12888
13122
|
/**
|
|
12889
|
-
* >
|
|
13123
|
+
* > When you install a shipper on an ACK cluster, you must specify a namespace. You can call this operation to query all namespaces in the ACK cluster, and select a namespace based on your business requirements.
|
|
12890
13124
|
*
|
|
12891
13125
|
* @param request ListAckNamespacesRequest
|
|
12892
13126
|
* @param headers map
|
|
@@ -12897,7 +13131,7 @@ export default class Client extends OpenApi {
|
|
|
12897
13131
|
[key: string]: string;
|
|
12898
13132
|
}, runtime: $Util.RuntimeOptions): Promise<ListAckNamespacesResponse>;
|
|
12899
13133
|
/**
|
|
12900
|
-
* >
|
|
13134
|
+
* > When you install a shipper on an ACK cluster, you must specify a namespace. You can call this operation to query all namespaces in the ACK cluster, and select a namespace based on your business requirements.
|
|
12901
13135
|
*
|
|
12902
13136
|
* @param request ListAckNamespacesRequest
|
|
12903
13137
|
* @return ListAckNamespacesResponse
|
|
@@ -13041,23 +13275,9 @@ export default class Client extends OpenApi {
|
|
|
13041
13275
|
[key: string]: string;
|
|
13042
13276
|
}, runtime: $Util.RuntimeOptions): Promise<ListPipelineResponse>;
|
|
13043
13277
|
listPipeline(InstanceId: string, request: ListPipelineRequest): Promise<ListPipelineResponse>;
|
|
13044
|
-
/**
|
|
13045
|
-
* > Pipeline management is divided into configuration file management and Kibana pipeline management. Kibana pipeline management is not open in some regional consoles.
|
|
13046
|
-
*
|
|
13047
|
-
* @param request ListPipelineIdsRequest
|
|
13048
|
-
* @param headers map
|
|
13049
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13050
|
-
* @return ListPipelineIdsResponse
|
|
13051
|
-
*/
|
|
13052
13278
|
listPipelineIdsWithOptions(InstanceId: string, request: ListPipelineIdsRequest, headers: {
|
|
13053
13279
|
[key: string]: string;
|
|
13054
13280
|
}, runtime: $Util.RuntimeOptions): Promise<ListPipelineIdsResponse>;
|
|
13055
|
-
/**
|
|
13056
|
-
* > Pipeline management is divided into configuration file management and Kibana pipeline management. Kibana pipeline management is not open in some regional consoles.
|
|
13057
|
-
*
|
|
13058
|
-
* @param request ListPipelineIdsRequest
|
|
13059
|
-
* @return ListPipelineIdsResponse
|
|
13060
|
-
*/
|
|
13061
13281
|
listPipelineIds(InstanceId: string, request: ListPipelineIdsRequest): Promise<ListPipelineIdsResponse>;
|
|
13062
13282
|
listPluginsWithOptions(InstanceId: string, request: ListPluginsRequest, headers: {
|
|
13063
13283
|
[key: string]: string;
|
|
@@ -13068,7 +13288,7 @@ export default class Client extends OpenApi {
|
|
|
13068
13288
|
}, runtime: $Util.RuntimeOptions): Promise<ListSearchLogResponse>;
|
|
13069
13289
|
listSearchLog(InstanceId: string, request: ListSearchLogRequest): Promise<ListSearchLogResponse>;
|
|
13070
13290
|
/**
|
|
13071
|
-
* >
|
|
13291
|
+
* > The restoration of a shard is a process of synchronizing data from a primary shard to a replica shard. After the restoration is complete, the replica shard is available for data searches.
|
|
13072
13292
|
*
|
|
13073
13293
|
* @param request ListShardRecoveriesRequest
|
|
13074
13294
|
* @param headers map
|
|
@@ -13079,7 +13299,7 @@ export default class Client extends OpenApi {
|
|
|
13079
13299
|
[key: string]: string;
|
|
13080
13300
|
}, runtime: $Util.RuntimeOptions): Promise<ListShardRecoveriesResponse>;
|
|
13081
13301
|
/**
|
|
13082
|
-
* >
|
|
13302
|
+
* > The restoration of a shard is a process of synchronizing data from a primary shard to a replica shard. After the restoration is complete, the replica shard is available for data searches.
|
|
13083
13303
|
*
|
|
13084
13304
|
* @param request ListShardRecoveriesRequest
|
|
13085
13305
|
* @return ListShardRecoveriesResponse
|
|
@@ -13136,10 +13356,7 @@ export default class Client extends OpenApi {
|
|
|
13136
13356
|
}, runtime: $Util.RuntimeOptions): Promise<ModifyElastictaskResponse>;
|
|
13137
13357
|
modifyElastictask(InstanceId: string, request: ModifyElastictaskRequest): Promise<ModifyElastictaskResponse>;
|
|
13138
13358
|
/**
|
|
13139
|
-
*
|
|
13140
|
-
* * Before maintenance is performed, the system sends SMS messages and emails to the contacts listed in your Alibaba Cloud account.
|
|
13141
|
-
* * On the day of instance maintenance, to ensure the stability of the entire maintenance process, the instance enters the Active state before it can be maintenance window. In this case, you can still access the cluster and perform query operations such as performance monitoring. However, you cannot perform modification operations such as restart and configuration upgrades for the cluster.
|
|
13142
|
-
* * The instance connection may be disconnected within the available maintenance window. Make sure that the application has a reconnection mechanism.
|
|
13359
|
+
* es-cn-n6w1o1x0w001c\\*\\*\\*\\*
|
|
13143
13360
|
*
|
|
13144
13361
|
* @param request ModifyInstanceMaintainTimeRequest
|
|
13145
13362
|
* @param headers map
|
|
@@ -13150,21 +13367,14 @@ export default class Client extends OpenApi {
|
|
|
13150
13367
|
[key: string]: string;
|
|
13151
13368
|
}, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceMaintainTimeResponse>;
|
|
13152
13369
|
/**
|
|
13153
|
-
*
|
|
13154
|
-
* * Before maintenance is performed, the system sends SMS messages and emails to the contacts listed in your Alibaba Cloud account.
|
|
13155
|
-
* * On the day of instance maintenance, to ensure the stability of the entire maintenance process, the instance enters the Active state before it can be maintenance window. In this case, you can still access the cluster and perform query operations such as performance monitoring. However, you cannot perform modification operations such as restart and configuration upgrades for the cluster.
|
|
13156
|
-
* * The instance connection may be disconnected within the available maintenance window. Make sure that the application has a reconnection mechanism.
|
|
13370
|
+
* es-cn-n6w1o1x0w001c\\*\\*\\*\\*
|
|
13157
13371
|
*
|
|
13158
13372
|
* @param request ModifyInstanceMaintainTimeRequest
|
|
13159
13373
|
* @return ModifyInstanceMaintainTimeResponse
|
|
13160
13374
|
*/
|
|
13161
13375
|
modifyInstanceMaintainTime(InstanceId: string, request: ModifyInstanceMaintainTimeRequest): Promise<ModifyInstanceMaintainTimeResponse>;
|
|
13162
13376
|
/**
|
|
13163
|
-
*
|
|
13164
|
-
* * You can update the whitelist in two ways: IP address whitelist list and IP address whitelist group. The two methods cannot be used at the same time. In addition to InstanceId and clientToken, the two methods support different parameters, as follows:
|
|
13165
|
-
* * IP address whitelist: whiteIpList, nodeType, and networkType
|
|
13166
|
-
* * IP address whitelist groups: modifyMode and whiteIpGroup
|
|
13167
|
-
* * Public network access whitelists do not support configuring private IP addresses. Private network access whitelists do not support configuring public IP addresses.
|
|
13377
|
+
* The ID of the cluster.
|
|
13168
13378
|
*
|
|
13169
13379
|
* @param request ModifyWhiteIpsRequest
|
|
13170
13380
|
* @param headers map
|
|
@@ -13175,11 +13385,7 @@ export default class Client extends OpenApi {
|
|
|
13175
13385
|
[key: string]: string;
|
|
13176
13386
|
}, runtime: $Util.RuntimeOptions): Promise<ModifyWhiteIpsResponse>;
|
|
13177
13387
|
/**
|
|
13178
|
-
*
|
|
13179
|
-
* * You can update the whitelist in two ways: IP address whitelist list and IP address whitelist group. The two methods cannot be used at the same time. In addition to InstanceId and clientToken, the two methods support different parameters, as follows:
|
|
13180
|
-
* * IP address whitelist: whiteIpList, nodeType, and networkType
|
|
13181
|
-
* * IP address whitelist groups: modifyMode and whiteIpGroup
|
|
13182
|
-
* * Public network access whitelists do not support configuring private IP addresses. Private network access whitelists do not support configuring public IP addresses.
|
|
13388
|
+
* The ID of the cluster.
|
|
13183
13389
|
*
|
|
13184
13390
|
* @param request ModifyWhiteIpsRequest
|
|
13185
13391
|
* @return ModifyWhiteIpsResponse
|
|
@@ -13277,25 +13483,9 @@ export default class Client extends OpenApi {
|
|
|
13277
13483
|
[key: string]: string;
|
|
13278
13484
|
}, runtime: $Util.RuntimeOptions): Promise<RunPipelinesResponse>;
|
|
13279
13485
|
runPipelines(InstanceId: string, request: RunPipelinesRequest): Promise<RunPipelinesResponse>;
|
|
13280
|
-
/**
|
|
13281
|
-
* When you call this operation, take note of the following items:
|
|
13282
|
-
* Before you remove data nodes, you must migrate the data stored on them to other nodes.
|
|
13283
|
-
*
|
|
13284
|
-
* @param request ShrinkNodeRequest
|
|
13285
|
-
* @param headers map
|
|
13286
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13287
|
-
* @return ShrinkNodeResponse
|
|
13288
|
-
*/
|
|
13289
13486
|
shrinkNodeWithOptions(InstanceId: string, request: ShrinkNodeRequest, headers: {
|
|
13290
13487
|
[key: string]: string;
|
|
13291
13488
|
}, runtime: $Util.RuntimeOptions): Promise<ShrinkNodeResponse>;
|
|
13292
|
-
/**
|
|
13293
|
-
* When you call this operation, take note of the following items:
|
|
13294
|
-
* Before you remove data nodes, you must migrate the data stored on them to other nodes.
|
|
13295
|
-
*
|
|
13296
|
-
* @param request ShrinkNodeRequest
|
|
13297
|
-
* @return ShrinkNodeResponse
|
|
13298
|
-
*/
|
|
13299
13489
|
shrinkNode(InstanceId: string, request: ShrinkNodeRequest): Promise<ShrinkNodeResponse>;
|
|
13300
13490
|
startApmWithOptions(instanceId: string, headers: {
|
|
13301
13491
|
[key: string]: string;
|
|
@@ -13366,8 +13556,7 @@ export default class Client extends OpenApi {
|
|
|
13366
13556
|
*/
|
|
13367
13557
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
13368
13558
|
/**
|
|
13369
|
-
*
|
|
13370
|
-
* If the instance is in the Activating, Invalid, or Inactive state, the information cannot be updated.
|
|
13559
|
+
* 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
|
|
13371
13560
|
*
|
|
13372
13561
|
* @param request UpdateAdminPasswordRequest
|
|
13373
13562
|
* @param headers map
|
|
@@ -13378,8 +13567,7 @@ export default class Client extends OpenApi {
|
|
|
13378
13567
|
[key: string]: string;
|
|
13379
13568
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateAdminPasswordResponse>;
|
|
13380
13569
|
/**
|
|
13381
|
-
*
|
|
13382
|
-
* If the instance is in the Activating, Invalid, or Inactive state, the information cannot be updated.
|
|
13570
|
+
* 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
|
|
13383
13571
|
*
|
|
13384
13572
|
* @param request UpdateAdminPasswordRequest
|
|
13385
13573
|
* @return UpdateAdminPasswordResponse
|
|
@@ -13390,10 +13578,10 @@ export default class Client extends OpenApi {
|
|
|
13390
13578
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateAdvancedSettingResponse>;
|
|
13391
13579
|
updateAdvancedSetting(InstanceId: string, request: UpdateAdvancedSettingRequest): Promise<UpdateAdvancedSettingResponse>;
|
|
13392
13580
|
/**
|
|
13393
|
-
*
|
|
13394
|
-
* *
|
|
13395
|
-
* * If the dictionary file is
|
|
13396
|
-
* * If
|
|
13581
|
+
* Before you call this operation, take note of the following items:
|
|
13582
|
+
* * Elasticsearch V5.X clusters do not support the analysis-aliws plug-in.
|
|
13583
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13584
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13397
13585
|
*
|
|
13398
13586
|
* @param request UpdateAliwsDictRequest
|
|
13399
13587
|
* @param headers map
|
|
@@ -13404,10 +13592,10 @@ export default class Client extends OpenApi {
|
|
|
13404
13592
|
[key: string]: string;
|
|
13405
13593
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateAliwsDictResponse>;
|
|
13406
13594
|
/**
|
|
13407
|
-
*
|
|
13408
|
-
* *
|
|
13409
|
-
* * If the dictionary file is
|
|
13410
|
-
* * If
|
|
13595
|
+
* Before you call this operation, take note of the following items:
|
|
13596
|
+
* * Elasticsearch V5.X clusters do not support the analysis-aliws plug-in.
|
|
13597
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13598
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13411
13599
|
*
|
|
13412
13600
|
* @param request UpdateAliwsDictRequest
|
|
13413
13601
|
* @return UpdateAliwsDictResponse
|
|
@@ -13455,9 +13643,27 @@ export default class Client extends OpenApi {
|
|
|
13455
13643
|
[key: string]: string;
|
|
13456
13644
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateDiagnosisSettingsResponse>;
|
|
13457
13645
|
updateDiagnosisSettings(InstanceId: string, request: UpdateDiagnosisSettingsRequest): Promise<UpdateDiagnosisSettingsResponse>;
|
|
13646
|
+
/**
|
|
13647
|
+
* Before you call this operation, take note of the following items:
|
|
13648
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13649
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13650
|
+
*
|
|
13651
|
+
* @param request UpdateDictRequest
|
|
13652
|
+
* @param headers map
|
|
13653
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13654
|
+
* @return UpdateDictResponse
|
|
13655
|
+
*/
|
|
13458
13656
|
updateDictWithOptions(InstanceId: string, request: UpdateDictRequest, headers: {
|
|
13459
13657
|
[key: string]: string;
|
|
13460
13658
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateDictResponse>;
|
|
13659
|
+
/**
|
|
13660
|
+
* Before you call this operation, take note of the following items:
|
|
13661
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13662
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13663
|
+
*
|
|
13664
|
+
* @param request UpdateDictRequest
|
|
13665
|
+
* @return UpdateDictResponse
|
|
13666
|
+
*/
|
|
13461
13667
|
updateDict(InstanceId: string, request: UpdateDictRequest): Promise<UpdateDictResponse>;
|
|
13462
13668
|
updateDynamicSettingsWithOptions(InstanceId: string, request: UpdateDynamicSettingsRequest, headers: {
|
|
13463
13669
|
[key: string]: string;
|
|
@@ -13468,8 +13674,7 @@ export default class Client extends OpenApi {
|
|
|
13468
13674
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateExtendConfigResponse>;
|
|
13469
13675
|
updateExtendConfig(InstanceId: string, request: UpdateExtendConfigRequest): Promise<UpdateExtendConfigResponse>;
|
|
13470
13676
|
/**
|
|
13471
|
-
*
|
|
13472
|
-
* Currently, this operation only allows you to delete Logstash extension files that have been uploaded in the console. If you want to add or modify an identifier, perform the operations in the console.
|
|
13677
|
+
* When you call this operation, take note of the following items: You can call this operation only to delete the driver files that are uploaded to a Logstash cluster in the Alibaba Cloud Management Console. You can add or modify driver files only in the Alibaba Cloud Management Console.
|
|
13473
13678
|
*
|
|
13474
13679
|
* @param request UpdateExtendfilesRequest
|
|
13475
13680
|
* @param headers map
|
|
@@ -13480,17 +13685,16 @@ export default class Client extends OpenApi {
|
|
|
13480
13685
|
[key: string]: string;
|
|
13481
13686
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateExtendfilesResponse>;
|
|
13482
13687
|
/**
|
|
13483
|
-
*
|
|
13484
|
-
* Currently, this operation only allows you to delete Logstash extension files that have been uploaded in the console. If you want to add or modify an identifier, perform the operations in the console.
|
|
13688
|
+
* When you call this operation, take note of the following items: You can call this operation only to delete the driver files that are uploaded to a Logstash cluster in the Alibaba Cloud Management Console. You can add or modify driver files only in the Alibaba Cloud Management Console.
|
|
13485
13689
|
*
|
|
13486
13690
|
* @param request UpdateExtendfilesRequest
|
|
13487
13691
|
* @return UpdateExtendfilesResponse
|
|
13488
13692
|
*/
|
|
13489
13693
|
updateExtendfiles(InstanceId: string, request: UpdateExtendfilesRequest): Promise<UpdateExtendfilesResponse>;
|
|
13490
13694
|
/**
|
|
13491
|
-
*
|
|
13492
|
-
* * If the dictionary file is
|
|
13493
|
-
* * If
|
|
13695
|
+
* Before you call this operation, take note of the following items:
|
|
13696
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13697
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13494
13698
|
*
|
|
13495
13699
|
* @param request UpdateHotIkDictsRequest
|
|
13496
13700
|
* @param headers map
|
|
@@ -13501,9 +13705,9 @@ export default class Client extends OpenApi {
|
|
|
13501
13705
|
[key: string]: string;
|
|
13502
13706
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateHotIkDictsResponse>;
|
|
13503
13707
|
/**
|
|
13504
|
-
*
|
|
13505
|
-
* * If the dictionary file is
|
|
13506
|
-
* * If
|
|
13708
|
+
* Before you call this operation, take note of the following items:
|
|
13709
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13710
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13507
13711
|
*
|
|
13508
13712
|
* @param request UpdateHotIkDictsRequest
|
|
13509
13713
|
* @return UpdateHotIkDictsResponse
|
|
@@ -13518,14 +13722,7 @@ export default class Client extends OpenApi {
|
|
|
13518
13722
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateIndexTemplateResponse>;
|
|
13519
13723
|
updateIndexTemplate(InstanceId: string, IndexTemplate: string, request: UpdateIndexTemplateRequest): Promise<UpdateIndexTemplateResponse>;
|
|
13520
13724
|
/**
|
|
13521
|
-
*
|
|
13522
|
-
* * If the instance is in the Activating, Invalid, or Inactive state, you cannot change the configurations.
|
|
13523
|
-
* * If the indexes of your cluster do not have replica shards, the load of the cluster is excessively high, and large amounts of data are written to or queried in your cluster, access to the cluster may time out during a cluster configuration upgrade or downgrade. We recommend that you configure an access retry mechanism for your client before you upgrade the configuration of your cluster. This reduces the impact on your business.
|
|
13524
|
-
* * You can change the configurations of only one type of node at a time (data node, dedicated master node, cold data node, coordinator node, Kibana node, and elastic node).
|
|
13525
|
-
* * Due to the health and stability of your cluster, Alibaba Cloud Elasticsearch does not support the purchase of 1-core 2 GB instances, 2-core 2 GB instances for dedicated master nodes, and 7.4 instances since May 2021. If you have confirmed that the purchased specifications are no longer available for sale, you must perform the following operations:
|
|
13526
|
-
* * For the 1-core 2 GB and 2-core 2 GB specifications, we recommend that you upgrade to the stable sales specifications that are available on the buy page in advance. For more information about the sales specifications available on the buy page, see [Purchase page parameters](~~163243~~).
|
|
13527
|
-
* * If your cluster is of V7.4, purchase a V7.10 cluster and migrate data from the original cluster to the V7.10 cluster.
|
|
13528
|
-
* For more information, see [Upgrade a cluster](~~96650~~) and [Downgrade a cluster](~~198887~~).
|
|
13725
|
+
* es-cn-n6w1ptcb30009\\*\\*\\*\\*
|
|
13529
13726
|
*
|
|
13530
13727
|
* @param request UpdateInstanceRequest
|
|
13531
13728
|
* @param headers map
|
|
@@ -13536,14 +13733,7 @@ export default class Client extends OpenApi {
|
|
|
13536
13733
|
[key: string]: string;
|
|
13537
13734
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceResponse>;
|
|
13538
13735
|
/**
|
|
13539
|
-
*
|
|
13540
|
-
* * If the instance is in the Activating, Invalid, or Inactive state, you cannot change the configurations.
|
|
13541
|
-
* * If the indexes of your cluster do not have replica shards, the load of the cluster is excessively high, and large amounts of data are written to or queried in your cluster, access to the cluster may time out during a cluster configuration upgrade or downgrade. We recommend that you configure an access retry mechanism for your client before you upgrade the configuration of your cluster. This reduces the impact on your business.
|
|
13542
|
-
* * You can change the configurations of only one type of node at a time (data node, dedicated master node, cold data node, coordinator node, Kibana node, and elastic node).
|
|
13543
|
-
* * Due to the health and stability of your cluster, Alibaba Cloud Elasticsearch does not support the purchase of 1-core 2 GB instances, 2-core 2 GB instances for dedicated master nodes, and 7.4 instances since May 2021. If you have confirmed that the purchased specifications are no longer available for sale, you must perform the following operations:
|
|
13544
|
-
* * For the 1-core 2 GB and 2-core 2 GB specifications, we recommend that you upgrade to the stable sales specifications that are available on the buy page in advance. For more information about the sales specifications available on the buy page, see [Purchase page parameters](~~163243~~).
|
|
13545
|
-
* * If your cluster is of V7.4, purchase a V7.10 cluster and migrate data from the original cluster to the V7.10 cluster.
|
|
13546
|
-
* For more information, see [Upgrade a cluster](~~96650~~) and [Downgrade a cluster](~~198887~~).
|
|
13736
|
+
* es-cn-n6w1ptcb30009\\*\\*\\*\\*
|
|
13547
13737
|
*
|
|
13548
13738
|
* @param request UpdateInstanceRequest
|
|
13549
13739
|
* @return UpdateInstanceResponse
|
|
@@ -13577,37 +13767,57 @@ export default class Client extends OpenApi {
|
|
|
13577
13767
|
[key: string]: string;
|
|
13578
13768
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateKibanaSettingsResponse>;
|
|
13579
13769
|
updateKibanaSettings(InstanceId: string, request: UpdateKibanaSettingsRequest): Promise<UpdateKibanaSettingsResponse>;
|
|
13580
|
-
updateKibanaWhiteIpsWithOptions(InstanceId: string, request: UpdateKibanaWhiteIpsRequest, headers: {
|
|
13581
|
-
[key: string]: string;
|
|
13582
|
-
}, runtime: $Util.RuntimeOptions): Promise<UpdateKibanaWhiteIpsResponse>;
|
|
13583
|
-
updateKibanaWhiteIps(InstanceId: string, request: UpdateKibanaWhiteIpsRequest): Promise<UpdateKibanaWhiteIpsResponse>;
|
|
13584
13770
|
/**
|
|
13585
|
-
*
|
|
13586
|
-
*
|
|
13771
|
+
* * Before you call this operation, you must make sure that the cluster is not in the activating, invalid, or inactive state.
|
|
13772
|
+
* * You can update an IP address whitelist by using the following parameters:
|
|
13773
|
+
* * kibanaIPWhitelist
|
|
13774
|
+
* * modifyMode and whiteIpGroup
|
|
13775
|
+
* * You cannot specify private IP addresses for public IP address whitelists and cannot specify public IP addresses for private IP address whitelists.
|
|
13587
13776
|
*
|
|
13588
|
-
* @param request
|
|
13777
|
+
* @param request UpdateKibanaWhiteIpsRequest
|
|
13589
13778
|
* @param headers map
|
|
13590
13779
|
* @param runtime runtime options for this request RuntimeOptions
|
|
13591
|
-
* @return
|
|
13780
|
+
* @return UpdateKibanaWhiteIpsResponse
|
|
13592
13781
|
*/
|
|
13593
|
-
|
|
13782
|
+
updateKibanaWhiteIpsWithOptions(InstanceId: string, request: UpdateKibanaWhiteIpsRequest, headers: {
|
|
13594
13783
|
[key: string]: string;
|
|
13595
|
-
}, runtime: $Util.RuntimeOptions): Promise<
|
|
13784
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateKibanaWhiteIpsResponse>;
|
|
13596
13785
|
/**
|
|
13597
|
-
*
|
|
13598
|
-
*
|
|
13786
|
+
* * Before you call this operation, you must make sure that the cluster is not in the activating, invalid, or inactive state.
|
|
13787
|
+
* * You can update an IP address whitelist by using the following parameters:
|
|
13788
|
+
* * kibanaIPWhitelist
|
|
13789
|
+
* * modifyMode and whiteIpGroup
|
|
13790
|
+
* * You cannot specify private IP addresses for public IP address whitelists and cannot specify public IP addresses for private IP address whitelists.
|
|
13599
13791
|
*
|
|
13600
|
-
* @param request
|
|
13601
|
-
* @return
|
|
13792
|
+
* @param request UpdateKibanaWhiteIpsRequest
|
|
13793
|
+
* @return UpdateKibanaWhiteIpsResponse
|
|
13602
13794
|
*/
|
|
13795
|
+
updateKibanaWhiteIps(InstanceId: string, request: UpdateKibanaWhiteIpsRequest): Promise<UpdateKibanaWhiteIpsResponse>;
|
|
13796
|
+
updateLogstashWithOptions(InstanceId: string, request: UpdateLogstashRequest, headers: {
|
|
13797
|
+
[key: string]: string;
|
|
13798
|
+
}, runtime: $Util.RuntimeOptions): Promise<UpdateLogstashResponse>;
|
|
13603
13799
|
updateLogstash(InstanceId: string, request: UpdateLogstashRequest): Promise<UpdateLogstashResponse>;
|
|
13604
13800
|
updateLogstashChargeTypeWithOptions(InstanceId: string, request: UpdateLogstashChargeTypeRequest, headers: {
|
|
13605
13801
|
[key: string]: string;
|
|
13606
13802
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateLogstashChargeTypeResponse>;
|
|
13607
13803
|
updateLogstashChargeType(InstanceId: string, request: UpdateLogstashChargeTypeRequest): Promise<UpdateLogstashChargeTypeResponse>;
|
|
13804
|
+
/**
|
|
13805
|
+
* When you call this operation, take note of the following items: You cannot change the name of a cluster that is in the activating, invalid, or inactive state.
|
|
13806
|
+
*
|
|
13807
|
+
* @param request UpdateLogstashDescriptionRequest
|
|
13808
|
+
* @param headers map
|
|
13809
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13810
|
+
* @return UpdateLogstashDescriptionResponse
|
|
13811
|
+
*/
|
|
13608
13812
|
updateLogstashDescriptionWithOptions(InstanceId: string, request: UpdateLogstashDescriptionRequest, headers: {
|
|
13609
13813
|
[key: string]: string;
|
|
13610
13814
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateLogstashDescriptionResponse>;
|
|
13815
|
+
/**
|
|
13816
|
+
* When you call this operation, take note of the following items: You cannot change the name of a cluster that is in the activating, invalid, or inactive state.
|
|
13817
|
+
*
|
|
13818
|
+
* @param request UpdateLogstashDescriptionRequest
|
|
13819
|
+
* @return UpdateLogstashDescriptionResponse
|
|
13820
|
+
*/
|
|
13611
13821
|
updateLogstashDescription(InstanceId: string, request: UpdateLogstashDescriptionRequest): Promise<UpdateLogstashDescriptionResponse>;
|
|
13612
13822
|
/**
|
|
13613
13823
|
* When you call this operation, take note of the following items:
|
|
@@ -13637,17 +13847,61 @@ export default class Client extends OpenApi {
|
|
|
13637
13847
|
[key: string]: string;
|
|
13638
13848
|
}, runtime: $Util.RuntimeOptions): Promise<UpdatePipelinesResponse>;
|
|
13639
13849
|
updatePipelines(InstanceId: string, request: UpdatePipelinesRequest): Promise<UpdatePipelinesResponse>;
|
|
13850
|
+
/**
|
|
13851
|
+
* > In the following returned example, only the parameters in the returned data list are guaranteed to be included, and the parameters not mentioned are for reference only. For more information about the parameters, see [ListInstance](~~142230~~). You cannot force a dependency in a program to get these parameters.
|
|
13852
|
+
*
|
|
13853
|
+
* @param request UpdatePrivateNetworkWhiteIpsRequest
|
|
13854
|
+
* @param headers map
|
|
13855
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13856
|
+
* @return UpdatePrivateNetworkWhiteIpsResponse
|
|
13857
|
+
*/
|
|
13640
13858
|
updatePrivateNetworkWhiteIpsWithOptions(InstanceId: string, request: UpdatePrivateNetworkWhiteIpsRequest, headers: {
|
|
13641
13859
|
[key: string]: string;
|
|
13642
13860
|
}, runtime: $Util.RuntimeOptions): Promise<UpdatePrivateNetworkWhiteIpsResponse>;
|
|
13861
|
+
/**
|
|
13862
|
+
* > In the following returned example, only the parameters in the returned data list are guaranteed to be included, and the parameters not mentioned are for reference only. For more information about the parameters, see [ListInstance](~~142230~~). You cannot force a dependency in a program to get these parameters.
|
|
13863
|
+
*
|
|
13864
|
+
* @param request UpdatePrivateNetworkWhiteIpsRequest
|
|
13865
|
+
* @return UpdatePrivateNetworkWhiteIpsResponse
|
|
13866
|
+
*/
|
|
13643
13867
|
updatePrivateNetworkWhiteIps(InstanceId: string, request: UpdatePrivateNetworkWhiteIpsRequest): Promise<UpdatePrivateNetworkWhiteIpsResponse>;
|
|
13868
|
+
/**
|
|
13869
|
+
* When you call this operation, take note of the following items:
|
|
13870
|
+
* When the instance is in the activating, invalid, or inactive state, its configuration cannot be updated.
|
|
13871
|
+
*
|
|
13872
|
+
* @param request UpdatePublicNetworkRequest
|
|
13873
|
+
* @param headers map
|
|
13874
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13875
|
+
* @return UpdatePublicNetworkResponse
|
|
13876
|
+
*/
|
|
13644
13877
|
updatePublicNetworkWithOptions(InstanceId: string, request: UpdatePublicNetworkRequest, headers: {
|
|
13645
13878
|
[key: string]: string;
|
|
13646
13879
|
}, runtime: $Util.RuntimeOptions): Promise<UpdatePublicNetworkResponse>;
|
|
13880
|
+
/**
|
|
13881
|
+
* When you call this operation, take note of the following items:
|
|
13882
|
+
* When the instance is in the activating, invalid, or inactive state, its configuration cannot be updated.
|
|
13883
|
+
*
|
|
13884
|
+
* @param request UpdatePublicNetworkRequest
|
|
13885
|
+
* @return UpdatePublicNetworkResponse
|
|
13886
|
+
*/
|
|
13647
13887
|
updatePublicNetwork(InstanceId: string, request: UpdatePublicNetworkRequest): Promise<UpdatePublicNetworkResponse>;
|
|
13888
|
+
/**
|
|
13889
|
+
* > In the following example, only the parameters in the returned data list are guaranteed to be included. The parameters that are not mentioned are for reference only. For more information about the parameters, see [ListInstance](~~142230~~). You cannot force a dependency in a program to get these parameters.
|
|
13890
|
+
*
|
|
13891
|
+
* @param request UpdatePublicWhiteIpsRequest
|
|
13892
|
+
* @param headers map
|
|
13893
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13894
|
+
* @return UpdatePublicWhiteIpsResponse
|
|
13895
|
+
*/
|
|
13648
13896
|
updatePublicWhiteIpsWithOptions(InstanceId: string, request: UpdatePublicWhiteIpsRequest, headers: {
|
|
13649
13897
|
[key: string]: string;
|
|
13650
13898
|
}, runtime: $Util.RuntimeOptions): Promise<UpdatePublicWhiteIpsResponse>;
|
|
13899
|
+
/**
|
|
13900
|
+
* > In the following example, only the parameters in the returned data list are guaranteed to be included. The parameters that are not mentioned are for reference only. For more information about the parameters, see [ListInstance](~~142230~~). You cannot force a dependency in a program to get these parameters.
|
|
13901
|
+
*
|
|
13902
|
+
* @param request UpdatePublicWhiteIpsRequest
|
|
13903
|
+
* @return UpdatePublicWhiteIpsResponse
|
|
13904
|
+
*/
|
|
13651
13905
|
updatePublicWhiteIps(InstanceId: string, request: UpdatePublicWhiteIpsRequest): Promise<UpdatePublicWhiteIpsResponse>;
|
|
13652
13906
|
updateReadWritePolicyWithOptions(InstanceId: string, request: UpdateReadWritePolicyRequest, headers: {
|
|
13653
13907
|
[key: string]: string;
|
|
@@ -13658,9 +13912,9 @@ export default class Client extends OpenApi {
|
|
|
13658
13912
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateSnapshotSettingResponse>;
|
|
13659
13913
|
updateSnapshotSetting(InstanceId: string, request: UpdateSnapshotSettingRequest): Promise<UpdateSnapshotSettingResponse>;
|
|
13660
13914
|
/**
|
|
13661
|
-
*
|
|
13662
|
-
* * If the dictionary file is
|
|
13663
|
-
* * If
|
|
13915
|
+
* Before you call this operation, take note of the following items:
|
|
13916
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13917
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13664
13918
|
*
|
|
13665
13919
|
* @param request UpdateSynonymsDictsRequest
|
|
13666
13920
|
* @param headers map
|
|
@@ -13671,9 +13925,9 @@ export default class Client extends OpenApi {
|
|
|
13671
13925
|
[key: string]: string;
|
|
13672
13926
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateSynonymsDictsResponse>;
|
|
13673
13927
|
/**
|
|
13674
|
-
*
|
|
13675
|
-
* * If the dictionary file is
|
|
13676
|
-
* * If
|
|
13928
|
+
* Before you call this operation, take note of the following items:
|
|
13929
|
+
* * If the dictionary file is stored in an Object Storage Service (OSS) bucket, you must make sure that the access control list (ACL) of the bucket is public read.
|
|
13930
|
+
* * If you do not set sourceType to ORIGIN for an uploaded dictionary file, the file will be deleted after you call this operation.
|
|
13677
13931
|
*
|
|
13678
13932
|
* @param request UpdateSynonymsDictsRequest
|
|
13679
13933
|
* @return UpdateSynonymsDictsResponse
|
|
@@ -13683,16 +13937,30 @@ export default class Client extends OpenApi {
|
|
|
13683
13937
|
[key: string]: string;
|
|
13684
13938
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateTemplateResponse>;
|
|
13685
13939
|
updateTemplate(InstanceId: string, TemplateName: string, request: UpdateTemplateRequest): Promise<UpdateTemplateResponse>;
|
|
13940
|
+
/**
|
|
13941
|
+
* > For more information about the parameters displayed in the following sample code but not provided in the preceding tables, see [ListInstance](~~142230~~). You cannot force your program to obtain these parameters.
|
|
13942
|
+
*
|
|
13943
|
+
* @param request UpdateWhiteIpsRequest
|
|
13944
|
+
* @param headers map
|
|
13945
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13946
|
+
* @return UpdateWhiteIpsResponse
|
|
13947
|
+
*/
|
|
13686
13948
|
updateWhiteIpsWithOptions(InstanceId: string, request: UpdateWhiteIpsRequest, headers: {
|
|
13687
13949
|
[key: string]: string;
|
|
13688
13950
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateWhiteIpsResponse>;
|
|
13951
|
+
/**
|
|
13952
|
+
* > For more information about the parameters displayed in the following sample code but not provided in the preceding tables, see [ListInstance](~~142230~~). You cannot force your program to obtain these parameters.
|
|
13953
|
+
*
|
|
13954
|
+
* @param request UpdateWhiteIpsRequest
|
|
13955
|
+
* @return UpdateWhiteIpsResponse
|
|
13956
|
+
*/
|
|
13689
13957
|
updateWhiteIps(InstanceId: string, request: UpdateWhiteIpsRequest): Promise<UpdateWhiteIpsResponse>;
|
|
13690
13958
|
updateXpackMonitorConfigWithOptions(InstanceId: string, request: UpdateXpackMonitorConfigRequest, headers: {
|
|
13691
13959
|
[key: string]: string;
|
|
13692
13960
|
}, runtime: $Util.RuntimeOptions): Promise<UpdateXpackMonitorConfigResponse>;
|
|
13693
13961
|
updateXpackMonitorConfig(InstanceId: string, request: UpdateXpackMonitorConfigRequest): Promise<UpdateXpackMonitorConfigResponse>;
|
|
13694
13962
|
/**
|
|
13695
|
-
*
|
|
13963
|
+
* 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
|
|
13696
13964
|
*
|
|
13697
13965
|
* @param request UpgradeEngineVersionRequest
|
|
13698
13966
|
* @param headers map
|
|
@@ -13703,44 +13971,58 @@ export default class Client extends OpenApi {
|
|
|
13703
13971
|
[key: string]: string;
|
|
13704
13972
|
}, runtime: $Util.RuntimeOptions): Promise<UpgradeEngineVersionResponse>;
|
|
13705
13973
|
/**
|
|
13706
|
-
*
|
|
13974
|
+
* 5A2CFF0E-5718-45B5-9D4D-70B3FF\\*\\*\\*\\*
|
|
13707
13975
|
*
|
|
13708
13976
|
* @param request UpgradeEngineVersionRequest
|
|
13709
13977
|
* @return UpgradeEngineVersionResponse
|
|
13710
13978
|
*/
|
|
13711
13979
|
upgradeEngineVersion(InstanceId: string, request: UpgradeEngineVersionRequest): Promise<UpgradeEngineVersionResponse>;
|
|
13980
|
+
/**
|
|
13981
|
+
* > Before you enable the X-Pack Monitoring feature for a Logstash cluster, you must associate the Logstash cluster with an Elasticsearch cluster. This way, you can view the monitoring data of the Logstash cluster in the Kibana console of the Elasticsearch cluster.
|
|
13982
|
+
*
|
|
13983
|
+
* @param request ValidateConnectionRequest
|
|
13984
|
+
* @param headers map
|
|
13985
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13986
|
+
* @return ValidateConnectionResponse
|
|
13987
|
+
*/
|
|
13712
13988
|
validateConnectionWithOptions(InstanceId: string, request: ValidateConnectionRequest, headers: {
|
|
13713
13989
|
[key: string]: string;
|
|
13714
13990
|
}, runtime: $Util.RuntimeOptions): Promise<ValidateConnectionResponse>;
|
|
13991
|
+
/**
|
|
13992
|
+
* > Before you enable the X-Pack Monitoring feature for a Logstash cluster, you must associate the Logstash cluster with an Elasticsearch cluster. This way, you can view the monitoring data of the Logstash cluster in the Kibana console of the Elasticsearch cluster.
|
|
13993
|
+
*
|
|
13994
|
+
* @param request ValidateConnectionRequest
|
|
13995
|
+
* @return ValidateConnectionResponse
|
|
13996
|
+
*/
|
|
13715
13997
|
validateConnection(InstanceId: string, request: ValidateConnectionRequest): Promise<ValidateConnectionResponse>;
|
|
13716
13998
|
validateShrinkNodesWithOptions(InstanceId: string, request: ValidateShrinkNodesRequest, headers: {
|
|
13717
13999
|
[key: string]: string;
|
|
13718
14000
|
}, runtime: $Util.RuntimeOptions): Promise<ValidateShrinkNodesResponse>;
|
|
13719
14001
|
validateShrinkNodes(InstanceId: string, request: ValidateShrinkNodesRequest): Promise<ValidateShrinkNodesResponse>;
|
|
13720
|
-
/**
|
|
13721
|
-
* > Before you use the collector tool to collect logs from different data sources, you must be authorized to create service linked roles. You can call this operation to verify that it has been created.
|
|
13722
|
-
*
|
|
13723
|
-
* @param request ValidateSlrPermissionRequest
|
|
13724
|
-
* @param headers map
|
|
13725
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13726
|
-
* @return ValidateSlrPermissionResponse
|
|
13727
|
-
*/
|
|
13728
14002
|
validateSlrPermissionWithOptions(request: ValidateSlrPermissionRequest, headers: {
|
|
13729
14003
|
[key: string]: string;
|
|
13730
14004
|
}, runtime: $Util.RuntimeOptions): Promise<ValidateSlrPermissionResponse>;
|
|
13731
|
-
/**
|
|
13732
|
-
* > Before you use the collector tool to collect logs from different data sources, you must be authorized to create service linked roles. You can call this operation to verify that it has been created.
|
|
13733
|
-
*
|
|
13734
|
-
* @param request ValidateSlrPermissionRequest
|
|
13735
|
-
* @return ValidateSlrPermissionResponse
|
|
13736
|
-
*/
|
|
13737
14005
|
validateSlrPermission(request: ValidateSlrPermissionRequest): Promise<ValidateSlrPermissionResponse>;
|
|
13738
14006
|
validateTransferableNodesWithOptions(InstanceId: string, request: ValidateTransferableNodesRequest, headers: {
|
|
13739
14007
|
[key: string]: string;
|
|
13740
14008
|
}, runtime: $Util.RuntimeOptions): Promise<ValidateTransferableNodesResponse>;
|
|
13741
14009
|
validateTransferableNodes(InstanceId: string, request: ValidateTransferableNodesRequest): Promise<ValidateTransferableNodesResponse>;
|
|
14010
|
+
/**
|
|
14011
|
+
* The configurations of warm nodes.
|
|
14012
|
+
*
|
|
14013
|
+
* @param request CreateInstanceRequest
|
|
14014
|
+
* @param headers map
|
|
14015
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
14016
|
+
* @return CreateInstanceResponse
|
|
14017
|
+
*/
|
|
13742
14018
|
createInstanceWithOptions(request: CreateInstanceRequest, headers: {
|
|
13743
14019
|
[key: string]: string;
|
|
13744
14020
|
}, runtime: $Util.RuntimeOptions): Promise<CreateInstanceResponse>;
|
|
14021
|
+
/**
|
|
14022
|
+
* The configurations of warm nodes.
|
|
14023
|
+
*
|
|
14024
|
+
* @param request CreateInstanceRequest
|
|
14025
|
+
* @return CreateInstanceResponse
|
|
14026
|
+
*/
|
|
13745
14027
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
13746
14028
|
}
|