@alicloud/elasticsearch20170613 2.0.7 → 2.0.8
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 +299 -55
- package/dist/client.js +104 -20
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +346 -55
package/dist/client.d.ts
CHANGED
|
@@ -586,6 +586,13 @@ export declare class ResultSpecInfoMapValue extends $tea.Model {
|
|
|
586
586
|
});
|
|
587
587
|
}
|
|
588
588
|
export declare class ActivateZonesRequest extends $tea.Model {
|
|
589
|
+
/**
|
|
590
|
+
* @remarks
|
|
591
|
+
* 请求体参数。
|
|
592
|
+
*
|
|
593
|
+
* @example
|
|
594
|
+
* ["cn-hangzhou-i","cn-hangzhou-h"]
|
|
595
|
+
*/
|
|
589
596
|
body?: string;
|
|
590
597
|
/**
|
|
591
598
|
* @remarks
|
|
@@ -974,13 +981,36 @@ export declare class CancelTaskResponse extends $tea.Model {
|
|
|
974
981
|
}
|
|
975
982
|
export declare class CapacityPlanRequest extends $tea.Model {
|
|
976
983
|
/**
|
|
984
|
+
* @remarks
|
|
985
|
+
* Indicates whether there is a need for complex aggregation queries. Options:
|
|
986
|
+
*
|
|
987
|
+
* - true: Yes
|
|
988
|
+
* - false (default): No
|
|
989
|
+
*
|
|
977
990
|
* @example
|
|
978
991
|
* true
|
|
979
992
|
*/
|
|
980
993
|
complexQueryAvailable?: boolean;
|
|
994
|
+
/**
|
|
995
|
+
* @remarks
|
|
996
|
+
* Disk usage status.
|
|
997
|
+
*/
|
|
981
998
|
dataInfo?: CapacityPlanRequestDataInfo[];
|
|
999
|
+
/**
|
|
1000
|
+
* @remarks
|
|
1001
|
+
* Metrics information including disk usage, search and write operations, aggregation requests, etc.
|
|
1002
|
+
*/
|
|
982
1003
|
metric?: CapacityPlanRequestMetric[];
|
|
983
1004
|
/**
|
|
1005
|
+
* @remarks
|
|
1006
|
+
* Usage scenarios, options:
|
|
1007
|
+
*
|
|
1008
|
+
* - general: General scenario
|
|
1009
|
+
* - analysisVisualization: Data analysis scenario
|
|
1010
|
+
* - dbAcceleration: Database acceleration scenario
|
|
1011
|
+
* - search: Search scenario
|
|
1012
|
+
* - log: Log scenario
|
|
1013
|
+
*
|
|
984
1014
|
* @example
|
|
985
1015
|
* general
|
|
986
1016
|
*/
|
|
@@ -998,7 +1028,7 @@ export declare class CapacityPlanRequest extends $tea.Model {
|
|
|
998
1028
|
export declare class CapacityPlanResponseBody extends $tea.Model {
|
|
999
1029
|
/**
|
|
1000
1030
|
* @remarks
|
|
1001
|
-
*
|
|
1031
|
+
* ID of the current request.
|
|
1002
1032
|
*
|
|
1003
1033
|
* @example
|
|
1004
1034
|
* E91B7129-A669-4D9D-A743-F90A0FF1F5EF
|
|
@@ -1006,7 +1036,7 @@ export declare class CapacityPlanResponseBody extends $tea.Model {
|
|
|
1006
1036
|
requestId?: string;
|
|
1007
1037
|
/**
|
|
1008
1038
|
* @remarks
|
|
1009
|
-
*
|
|
1039
|
+
* Returned result of the request.
|
|
1010
1040
|
*/
|
|
1011
1041
|
result?: CapacityPlanResponseBodyResult;
|
|
1012
1042
|
static names(): {
|
|
@@ -1151,6 +1181,9 @@ export declare class CloseHttpsResponse extends $tea.Model {
|
|
|
1151
1181
|
}
|
|
1152
1182
|
export declare class CloseManagedIndexRequest extends $tea.Model {
|
|
1153
1183
|
/**
|
|
1184
|
+
* @remarks
|
|
1185
|
+
* Used to ensure the idempotency of the request. Generated by the client, it must be unique across different requests and not exceed 64 ASCII characters.
|
|
1186
|
+
*
|
|
1154
1187
|
* @example
|
|
1155
1188
|
* 5A2CFF0E-5718-45B5-9D4D-70B3FF****
|
|
1156
1189
|
*/
|
|
@@ -1167,11 +1200,21 @@ export declare class CloseManagedIndexRequest extends $tea.Model {
|
|
|
1167
1200
|
}
|
|
1168
1201
|
export declare class CloseManagedIndexResponseBody extends $tea.Model {
|
|
1169
1202
|
/**
|
|
1203
|
+
* @remarks
|
|
1204
|
+
* Request ID.
|
|
1205
|
+
*
|
|
1170
1206
|
* @example
|
|
1171
1207
|
* F99407AB-2FA9-489E-A259-40CF6DCC****
|
|
1172
1208
|
*/
|
|
1173
1209
|
requestId?: string;
|
|
1174
1210
|
/**
|
|
1211
|
+
* @remarks
|
|
1212
|
+
* Indicates whether the index\\"s cloud management has been successfully closed:
|
|
1213
|
+
*
|
|
1214
|
+
* - true: Success
|
|
1215
|
+
*
|
|
1216
|
+
* - false: Failure
|
|
1217
|
+
*
|
|
1175
1218
|
* @example
|
|
1176
1219
|
* true
|
|
1177
1220
|
*/
|
|
@@ -1844,7 +1887,7 @@ export declare class DeactivateZonesRequest extends $tea.Model {
|
|
|
1844
1887
|
body?: string;
|
|
1845
1888
|
/**
|
|
1846
1889
|
* @remarks
|
|
1847
|
-
*
|
|
1890
|
+
* Used to ensure idempotency of the request. The client generates this parameter value and must guarantee its uniqueness across different requests, with a maximum length of 64 ASCII characters.
|
|
1848
1891
|
*
|
|
1849
1892
|
* @example
|
|
1850
1893
|
* 5A2CFF0E-5718-45B5-9D4D-70B3FF****
|
|
@@ -1863,7 +1906,7 @@ export declare class DeactivateZonesRequest extends $tea.Model {
|
|
|
1863
1906
|
export declare class DeactivateZonesResponseBody extends $tea.Model {
|
|
1864
1907
|
/**
|
|
1865
1908
|
* @remarks
|
|
1866
|
-
*
|
|
1909
|
+
* Request ID.
|
|
1867
1910
|
*
|
|
1868
1911
|
* @example
|
|
1869
1912
|
* F99407AB-2FA9-489E-A259-40CF6DCC****
|
|
@@ -1871,10 +1914,10 @@ export declare class DeactivateZonesResponseBody extends $tea.Model {
|
|
|
1871
1914
|
requestId?: string;
|
|
1872
1915
|
/**
|
|
1873
1916
|
* @remarks
|
|
1874
|
-
* Return
|
|
1917
|
+
* Return result:
|
|
1875
1918
|
*
|
|
1876
|
-
*
|
|
1877
|
-
*
|
|
1919
|
+
* - true: Zone offline successful
|
|
1920
|
+
* - false: Zone offline failed
|
|
1878
1921
|
*
|
|
1879
1922
|
* @example
|
|
1880
1923
|
* true
|
|
@@ -2688,10 +2731,17 @@ export declare class DescribeAckOperatorResponse extends $tea.Model {
|
|
|
2688
2731
|
}
|
|
2689
2732
|
export declare class DescribeApmResponseBody extends $tea.Model {
|
|
2690
2733
|
/**
|
|
2734
|
+
* @remarks
|
|
2735
|
+
* Request ID.
|
|
2736
|
+
*
|
|
2691
2737
|
* @example
|
|
2692
2738
|
* 97597D87-8066-5493-B692-5C50DA236D68
|
|
2693
2739
|
*/
|
|
2694
2740
|
requestId?: string;
|
|
2741
|
+
/**
|
|
2742
|
+
* @remarks
|
|
2743
|
+
* Request result.
|
|
2744
|
+
*/
|
|
2695
2745
|
result?: DescribeApmResponseBodyResult;
|
|
2696
2746
|
static names(): {
|
|
2697
2747
|
[key: string]: string;
|
|
@@ -7644,7 +7694,7 @@ export declare class ListSearchLogRequest extends $tea.Model {
|
|
|
7644
7694
|
* This parameter is required.
|
|
7645
7695
|
*
|
|
7646
7696
|
* @example
|
|
7647
|
-
* host
|
|
7697
|
+
* host:``172.16.**.**`` AND content:netty
|
|
7648
7698
|
*/
|
|
7649
7699
|
query?: string;
|
|
7650
7700
|
/**
|
|
@@ -13197,26 +13247,54 @@ export declare class MigrationJobTargetCluster extends $tea.Model {
|
|
|
13197
13247
|
}
|
|
13198
13248
|
export declare class CapacityPlanRequestDataInfo extends $tea.Model {
|
|
13199
13249
|
/**
|
|
13250
|
+
* @remarks
|
|
13251
|
+
* Disk data metric code. Options:
|
|
13252
|
+
*
|
|
13253
|
+
* - totalRawData: Raw data information
|
|
13254
|
+
* - document: Data document information, estimated document count
|
|
13255
|
+
* - dailyIncrement: Daily data growth
|
|
13256
|
+
* - dailyIncrementDoc: Daily incremental document count
|
|
13257
|
+
* - retentionTime: Data retention period
|
|
13258
|
+
* - replica: Replica settings
|
|
13259
|
+
*
|
|
13200
13260
|
* @example
|
|
13201
13261
|
* totalRawData
|
|
13202
13262
|
*/
|
|
13203
13263
|
code?: string;
|
|
13204
13264
|
/**
|
|
13265
|
+
* @remarks
|
|
13266
|
+
* Disk usage metric value.
|
|
13267
|
+
*
|
|
13205
13268
|
* @example
|
|
13206
13269
|
* 100
|
|
13207
13270
|
*/
|
|
13208
13271
|
size?: number;
|
|
13209
13272
|
/**
|
|
13273
|
+
* @remarks
|
|
13274
|
+
* Total number of data entries.
|
|
13275
|
+
*
|
|
13210
13276
|
* @example
|
|
13211
13277
|
* 10000
|
|
13212
13278
|
*/
|
|
13213
13279
|
totalCount?: number;
|
|
13214
13280
|
/**
|
|
13281
|
+
* @remarks
|
|
13282
|
+
* Disk data type. Options:
|
|
13283
|
+
*
|
|
13284
|
+
* - hot: Hot data
|
|
13285
|
+
* - warm: Cold data
|
|
13286
|
+
*
|
|
13215
13287
|
* @example
|
|
13216
13288
|
* hot
|
|
13217
13289
|
*/
|
|
13218
13290
|
type?: string;
|
|
13219
13291
|
/**
|
|
13292
|
+
* @remarks
|
|
13293
|
+
* Data or time unit. Options:
|
|
13294
|
+
*
|
|
13295
|
+
* - Data units: MiB, GiB, TB, PB
|
|
13296
|
+
* - Time units: DAYS, WEEKS, MONTHS, YEARS
|
|
13297
|
+
*
|
|
13220
13298
|
* @example
|
|
13221
13299
|
* MiB
|
|
13222
13300
|
*/
|
|
@@ -13233,36 +13311,63 @@ export declare class CapacityPlanRequestDataInfo extends $tea.Model {
|
|
|
13233
13311
|
}
|
|
13234
13312
|
export declare class CapacityPlanRequestMetric extends $tea.Model {
|
|
13235
13313
|
/**
|
|
13314
|
+
* @remarks
|
|
13315
|
+
* Average QPS.
|
|
13316
|
+
*
|
|
13236
13317
|
* @example
|
|
13237
13318
|
* 30
|
|
13238
13319
|
*/
|
|
13239
13320
|
averageQps?: number;
|
|
13240
13321
|
/**
|
|
13322
|
+
* @remarks
|
|
13323
|
+
* Search or write metric code. Options:
|
|
13324
|
+
*
|
|
13325
|
+
* - write: Write
|
|
13326
|
+
* - search: Search
|
|
13327
|
+
*
|
|
13241
13328
|
* @example
|
|
13242
13329
|
* write
|
|
13243
13330
|
*/
|
|
13244
13331
|
code?: string;
|
|
13245
13332
|
/**
|
|
13333
|
+
* @remarks
|
|
13334
|
+
* Concurrent number.
|
|
13335
|
+
*
|
|
13246
13336
|
* @example
|
|
13247
13337
|
* 2
|
|
13248
13338
|
*/
|
|
13249
13339
|
concurrent?: number;
|
|
13250
13340
|
/**
|
|
13341
|
+
* @remarks
|
|
13342
|
+
* Peak QPS.
|
|
13343
|
+
*
|
|
13251
13344
|
* @example
|
|
13252
13345
|
* 30
|
|
13253
13346
|
*/
|
|
13254
13347
|
peakQps?: number;
|
|
13255
13348
|
/**
|
|
13349
|
+
* @remarks
|
|
13350
|
+
* Expected average response time, unit: milliseconds.
|
|
13351
|
+
*
|
|
13256
13352
|
* @example
|
|
13257
13353
|
* 100
|
|
13258
13354
|
*/
|
|
13259
13355
|
responseTime?: number;
|
|
13260
13356
|
/**
|
|
13357
|
+
* @remarks
|
|
13358
|
+
* Throughput, unit: MB/S.
|
|
13359
|
+
*
|
|
13261
13360
|
* @example
|
|
13262
13361
|
* 100
|
|
13263
13362
|
*/
|
|
13264
13363
|
throughput?: number;
|
|
13265
13364
|
/**
|
|
13365
|
+
* @remarks
|
|
13366
|
+
* Search/write peak type. Options:
|
|
13367
|
+
*
|
|
13368
|
+
* - common: Regular
|
|
13369
|
+
* - peak: Peak
|
|
13370
|
+
*
|
|
13266
13371
|
* @example
|
|
13267
13372
|
* common
|
|
13268
13373
|
*/
|
|
@@ -13280,7 +13385,9 @@ export declare class CapacityPlanRequestMetric extends $tea.Model {
|
|
|
13280
13385
|
export declare class CapacityPlanResponseBodyResultExtendConfigs extends $tea.Model {
|
|
13281
13386
|
/**
|
|
13282
13387
|
* @remarks
|
|
13283
|
-
*
|
|
13388
|
+
* Configuration type, with a single value: sharedDisk.
|
|
13389
|
+
*
|
|
13390
|
+
* > This extendConfigs attribute may appear when the planned instance type is Advanced.
|
|
13284
13391
|
*
|
|
13285
13392
|
* @example
|
|
13286
13393
|
* sharedDisk
|
|
@@ -13288,9 +13395,7 @@ export declare class CapacityPlanResponseBodyResultExtendConfigs extends $tea.Mo
|
|
|
13288
13395
|
configType?: string;
|
|
13289
13396
|
/**
|
|
13290
13397
|
* @remarks
|
|
13291
|
-
*
|
|
13292
|
-
*
|
|
13293
|
-
* > The extendConfigs attribute that may occur when the planned instance type is enhanced (advanced).
|
|
13398
|
+
* Disk size, in GiB.
|
|
13294
13399
|
*
|
|
13295
13400
|
* @example
|
|
13296
13401
|
* 2048
|
|
@@ -13298,11 +13403,9 @@ export declare class CapacityPlanResponseBodyResultExtendConfigs extends $tea.Mo
|
|
|
13298
13403
|
disk?: number;
|
|
13299
13404
|
/**
|
|
13300
13405
|
* @remarks
|
|
13301
|
-
*
|
|
13406
|
+
* Disk type, with a single value: CPFS_PREMIUM.
|
|
13302
13407
|
*
|
|
13303
|
-
*
|
|
13304
|
-
* * x-pack: Commercial Edition
|
|
13305
|
-
* * community: community version
|
|
13408
|
+
* > This extendConfigs attribute may appear when the planned instance type is Advanced.
|
|
13306
13409
|
*
|
|
13307
13410
|
* @example
|
|
13308
13411
|
* CPFS_PREMIUM
|
|
@@ -13321,7 +13424,7 @@ export declare class CapacityPlanResponseBodyResultExtendConfigs extends $tea.Mo
|
|
|
13321
13424
|
export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $tea.Model {
|
|
13322
13425
|
/**
|
|
13323
13426
|
* @remarks
|
|
13324
|
-
*
|
|
13427
|
+
* Number of nodes.
|
|
13325
13428
|
*
|
|
13326
13429
|
* @example
|
|
13327
13430
|
* 10
|
|
@@ -13329,7 +13432,7 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13329
13432
|
amount?: number;
|
|
13330
13433
|
/**
|
|
13331
13434
|
* @remarks
|
|
13332
|
-
*
|
|
13435
|
+
* Number of CPUs.
|
|
13333
13436
|
*
|
|
13334
13437
|
* @example
|
|
13335
13438
|
* 1
|
|
@@ -13337,13 +13440,7 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13337
13440
|
cpu?: number;
|
|
13338
13441
|
/**
|
|
13339
13442
|
* @remarks
|
|
13340
|
-
*
|
|
13341
|
-
*
|
|
13342
|
-
* * cloud_essd: enhanced SSD (ESSD)
|
|
13343
|
-
* * cloud_ssd: standard SSD
|
|
13344
|
-
* * cloud_efficiency: ultra disk
|
|
13345
|
-
* * local_ssd: local SSD
|
|
13346
|
-
* * local_efficiency: local ultra disk
|
|
13443
|
+
* Disk size, in GiB.
|
|
13347
13444
|
*
|
|
13348
13445
|
* @example
|
|
13349
13446
|
* 20
|
|
@@ -13351,7 +13448,17 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13351
13448
|
disk?: number;
|
|
13352
13449
|
/**
|
|
13353
13450
|
* @remarks
|
|
13354
|
-
*
|
|
13451
|
+
* Disk type, with meanings as follows:
|
|
13452
|
+
*
|
|
13453
|
+
* - cloud_essd: ESSD Cloud Disk
|
|
13454
|
+
*
|
|
13455
|
+
* - cloud_ssd: SSD Cloud Disk
|
|
13456
|
+
*
|
|
13457
|
+
* - cloud_efficiency: Efficient Cloud Disk
|
|
13458
|
+
*
|
|
13459
|
+
* - local_ssd: Local SSD Disk
|
|
13460
|
+
*
|
|
13461
|
+
* - local_efficiency: Local Efficient Disk
|
|
13355
13462
|
*
|
|
13356
13463
|
* @example
|
|
13357
13464
|
* cloud_ssd
|
|
@@ -13359,14 +13466,7 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13359
13466
|
diskType?: string;
|
|
13360
13467
|
/**
|
|
13361
13468
|
* @remarks
|
|
13362
|
-
*
|
|
13363
|
-
*
|
|
13364
|
-
* * WORKER: data node
|
|
13365
|
-
* * WORKER_WARM: cold data node
|
|
13366
|
-
* * MASTER: dedicated master node
|
|
13367
|
-
* * KIBANA: Kibana node
|
|
13368
|
-
* * COORDINATING: client node
|
|
13369
|
-
* * ELASTIC_WORKER: elastic node
|
|
13469
|
+
* Specified memory size for the current node role.
|
|
13370
13470
|
*
|
|
13371
13471
|
* @example
|
|
13372
13472
|
* 2
|
|
@@ -13374,10 +13474,19 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13374
13474
|
memory?: number;
|
|
13375
13475
|
/**
|
|
13376
13476
|
* @remarks
|
|
13377
|
-
*
|
|
13477
|
+
* Node type, with supported types as follows:
|
|
13478
|
+
*
|
|
13479
|
+
* - WORKER: Data Node
|
|
13480
|
+
*
|
|
13481
|
+
* - WORKER_WARM: Cold Data Node
|
|
13378
13482
|
*
|
|
13379
|
-
*
|
|
13380
|
-
*
|
|
13483
|
+
* - MASTER: Dedicated Master Node
|
|
13484
|
+
*
|
|
13485
|
+
* - KIBANA: Kibana Node
|
|
13486
|
+
*
|
|
13487
|
+
* - COORDINATING: Coordinator Node
|
|
13488
|
+
*
|
|
13489
|
+
* - ELASTIC_WORKER: Elastic Node
|
|
13381
13490
|
*
|
|
13382
13491
|
* @example
|
|
13383
13492
|
* WORKER
|
|
@@ -13396,14 +13505,18 @@ export declare class CapacityPlanResponseBodyResultNodeConfigurations extends $t
|
|
|
13396
13505
|
export declare class CapacityPlanResponseBodyResult extends $tea.Model {
|
|
13397
13506
|
/**
|
|
13398
13507
|
* @remarks
|
|
13399
|
-
*
|
|
13400
|
-
*
|
|
13401
|
-
* > The extendConfigs attribute that may occur when the planned instance type is enhanced (advanced).
|
|
13508
|
+
* Extended configuration information.
|
|
13402
13509
|
*/
|
|
13403
13510
|
extendConfigs?: CapacityPlanResponseBodyResultExtendConfigs[];
|
|
13404
13511
|
/**
|
|
13405
13512
|
* @remarks
|
|
13406
|
-
*
|
|
13513
|
+
* Edition type, with values meaning as follows:
|
|
13514
|
+
*
|
|
13515
|
+
* - advanced: Enhanced Edition
|
|
13516
|
+
*
|
|
13517
|
+
* - x-pack: Commercial Edition
|
|
13518
|
+
*
|
|
13519
|
+
* - community: Community Edition
|
|
13407
13520
|
*
|
|
13408
13521
|
* @example
|
|
13409
13522
|
* advanced
|
|
@@ -13411,10 +13524,17 @@ export declare class CapacityPlanResponseBodyResult extends $tea.Model {
|
|
|
13411
13524
|
instanceCategory?: string;
|
|
13412
13525
|
/**
|
|
13413
13526
|
* @remarks
|
|
13414
|
-
*
|
|
13527
|
+
* Node information.
|
|
13415
13528
|
*/
|
|
13416
13529
|
nodeConfigurations?: CapacityPlanResponseBodyResultNodeConfigurations[];
|
|
13417
13530
|
/**
|
|
13531
|
+
* @remarks
|
|
13532
|
+
* Based on the capacity planning calculation, there is no default value. The meanings of the values are as follows:
|
|
13533
|
+
*
|
|
13534
|
+
* - true: Represents an oversized cluster, indicating that the number of data nodes calculated by the capacity planning exceeds the threshold of 50.
|
|
13535
|
+
*
|
|
13536
|
+
* - false: The number of data nodes calculated by the capacity planning is within 50.
|
|
13537
|
+
*
|
|
13418
13538
|
* @example
|
|
13419
13539
|
* true
|
|
13420
13540
|
*/
|
|
@@ -13776,96 +13896,171 @@ export declare class DescribeAckOperatorResponseBodyResult extends $tea.Model {
|
|
|
13776
13896
|
}
|
|
13777
13897
|
export declare class DescribeApmResponseBodyResult extends $tea.Model {
|
|
13778
13898
|
/**
|
|
13899
|
+
* @remarks
|
|
13900
|
+
* Instance domain.
|
|
13901
|
+
*
|
|
13779
13902
|
* @example
|
|
13780
13903
|
* apm-cn-i7m2fuae****.apm.elasticsearch.aliyuncs.com:8200
|
|
13781
13904
|
*/
|
|
13782
13905
|
apmServerDomain?: string;
|
|
13783
13906
|
/**
|
|
13907
|
+
* @remarks
|
|
13908
|
+
* Creation time.
|
|
13909
|
+
*
|
|
13784
13910
|
* @example
|
|
13785
13911
|
* 2021-11-16T07:15:51.967Z
|
|
13786
13912
|
*/
|
|
13787
13913
|
createdAt?: string;
|
|
13788
13914
|
/**
|
|
13915
|
+
* @remarks
|
|
13916
|
+
* Deployed replica count.
|
|
13917
|
+
*
|
|
13789
13918
|
* @example
|
|
13790
13919
|
* 1
|
|
13791
13920
|
*/
|
|
13792
13921
|
deployedReplica?: number;
|
|
13793
13922
|
/**
|
|
13923
|
+
* @remarks
|
|
13924
|
+
* Instance name.
|
|
13925
|
+
*
|
|
13794
13926
|
* @example
|
|
13795
13927
|
* APMtest
|
|
13796
13928
|
*/
|
|
13797
13929
|
description?: string;
|
|
13798
13930
|
/**
|
|
13931
|
+
* @remarks
|
|
13932
|
+
* Instance expiration time.
|
|
13933
|
+
*
|
|
13799
13934
|
* @example
|
|
13800
13935
|
* 4792752000000
|
|
13801
13936
|
*/
|
|
13802
13937
|
endTime?: number;
|
|
13803
13938
|
/**
|
|
13939
|
+
* @remarks
|
|
13940
|
+
* Instance ID.
|
|
13941
|
+
*
|
|
13804
13942
|
* @example
|
|
13805
13943
|
* apm-cn-i7m2fuae****
|
|
13806
13944
|
*/
|
|
13807
13945
|
instanceId?: string;
|
|
13808
13946
|
/**
|
|
13947
|
+
* @remarks
|
|
13948
|
+
* Number of nodes.
|
|
13949
|
+
*
|
|
13809
13950
|
* @example
|
|
13810
13951
|
* 1
|
|
13811
13952
|
*/
|
|
13812
13953
|
nodeAmount?: number;
|
|
13813
13954
|
/**
|
|
13955
|
+
* @remarks
|
|
13956
|
+
* Associated Elasticsearch instance.
|
|
13957
|
+
*
|
|
13814
13958
|
* @example
|
|
13815
13959
|
* es-cn-i7m2fsfhc001x****
|
|
13816
13960
|
*/
|
|
13817
13961
|
outputES?: string;
|
|
13818
13962
|
/**
|
|
13963
|
+
* @remarks
|
|
13964
|
+
* Username of the associated Elasticsearch instance.
|
|
13965
|
+
*
|
|
13819
13966
|
* @example
|
|
13820
13967
|
* elastic
|
|
13821
13968
|
*/
|
|
13822
13969
|
outputESUserName?: string;
|
|
13823
13970
|
/**
|
|
13971
|
+
* @remarks
|
|
13972
|
+
* User account ID.
|
|
13973
|
+
*
|
|
13824
13974
|
* @example
|
|
13825
13975
|
* 133071096032****
|
|
13826
13976
|
*/
|
|
13827
13977
|
ownerId?: string;
|
|
13828
13978
|
/**
|
|
13979
|
+
* @remarks
|
|
13980
|
+
* Payment method, with the following values:
|
|
13981
|
+
*
|
|
13982
|
+
* - postpaid: Pay-as-you-go.
|
|
13983
|
+
*
|
|
13984
|
+
* - prepaid: Subscription.
|
|
13985
|
+
*
|
|
13829
13986
|
* @example
|
|
13830
13987
|
* postpaid
|
|
13831
13988
|
*/
|
|
13832
13989
|
paymentType?: string;
|
|
13833
13990
|
/**
|
|
13991
|
+
* @remarks
|
|
13992
|
+
* Region.
|
|
13993
|
+
*
|
|
13834
13994
|
* @example
|
|
13835
13995
|
* cn-hangzhou
|
|
13836
13996
|
*/
|
|
13837
13997
|
region?: string;
|
|
13838
13998
|
/**
|
|
13999
|
+
* @remarks
|
|
14000
|
+
* Replica count.
|
|
14001
|
+
*
|
|
13839
14002
|
* @example
|
|
13840
14003
|
* 1
|
|
13841
14004
|
*/
|
|
13842
14005
|
replica?: number;
|
|
13843
14006
|
/**
|
|
14007
|
+
* @remarks
|
|
14008
|
+
* Specification, with the following values:
|
|
14009
|
+
*
|
|
14010
|
+
* - C1M2 (1 core, 2 GB)
|
|
14011
|
+
*
|
|
14012
|
+
* - C2M4 (2 cores, 4 GB)
|
|
14013
|
+
*
|
|
13844
14014
|
* @example
|
|
13845
14015
|
* C1M2
|
|
13846
14016
|
*/
|
|
13847
14017
|
resourceSpec?: string;
|
|
13848
14018
|
/**
|
|
14019
|
+
* @remarks
|
|
14020
|
+
* Lifecycle status, with the following values:
|
|
14021
|
+
*
|
|
14022
|
+
* - CREATING: Creating.
|
|
14023
|
+
*
|
|
14024
|
+
* - ACTIVATING: Activating.
|
|
14025
|
+
*
|
|
14026
|
+
* - ACTIVE: Active.
|
|
14027
|
+
*
|
|
14028
|
+
* - INACTIVE: Frozen.
|
|
14029
|
+
*
|
|
14030
|
+
* - INVALID: Invalid.
|
|
14031
|
+
*
|
|
13849
14032
|
* @example
|
|
13850
14033
|
* active
|
|
13851
14034
|
*/
|
|
13852
14035
|
status?: string;
|
|
13853
14036
|
/**
|
|
14037
|
+
* @remarks
|
|
14038
|
+
* Version information.
|
|
14039
|
+
*
|
|
13854
14040
|
* @example
|
|
13855
14041
|
* 7.10.2
|
|
13856
14042
|
*/
|
|
13857
14043
|
version?: string;
|
|
13858
14044
|
/**
|
|
14045
|
+
* @remarks
|
|
14046
|
+
* VPC ID.
|
|
14047
|
+
*
|
|
13859
14048
|
* @example
|
|
13860
14049
|
* vpc-bp1530vdhqkamm9s0****
|
|
13861
14050
|
*/
|
|
13862
14051
|
vpcId?: string;
|
|
13863
14052
|
/**
|
|
14053
|
+
* @remarks
|
|
14054
|
+
* Availability zone where the switch is located.
|
|
14055
|
+
*
|
|
13864
14056
|
* @example
|
|
13865
14057
|
* cn-hangzhou-i
|
|
13866
14058
|
*/
|
|
13867
14059
|
vsArea?: string;
|
|
13868
14060
|
/**
|
|
14061
|
+
* @remarks
|
|
14062
|
+
* Switch ID.
|
|
14063
|
+
*
|
|
13869
14064
|
* @example
|
|
13870
14065
|
* vsw-bp1j1mql6r9g5vfb4****
|
|
13871
14066
|
*/
|
|
@@ -15203,7 +15398,7 @@ export declare class DescribeLogstashResponseBodyResultEndpointList extends $tea
|
|
|
15203
15398
|
* The tags added to the ALB instance.
|
|
15204
15399
|
*
|
|
15205
15400
|
* @example
|
|
15206
|
-
* 172.16
|
|
15401
|
+
* ``172.16.**.**``
|
|
15207
15402
|
*/
|
|
15208
15403
|
host?: string;
|
|
15209
15404
|
/**
|
|
@@ -16526,6 +16721,7 @@ export declare class GetRegionConfigurationResponseBodyResult extends $tea.Model
|
|
|
16526
16721
|
instanceSupportNodes?: string[];
|
|
16527
16722
|
jvmConfine?: GetRegionConfigurationResponseBodyResultJvmConfine;
|
|
16528
16723
|
kibanaNodeProperties?: GetRegionConfigurationResponseBodyResultKibanaNodeProperties;
|
|
16724
|
+
logstashZones?: string[];
|
|
16529
16725
|
masterDiskList?: GetRegionConfigurationResponseBodyResultMasterDiskList[];
|
|
16530
16726
|
masterSpec?: string[];
|
|
16531
16727
|
node?: GetRegionConfigurationResponseBodyResultNode;
|
|
@@ -16650,6 +16846,50 @@ export declare class GetRegionalInstanceConfigResponseBodyResultMasterDiskList e
|
|
|
16650
16846
|
[key: string]: any;
|
|
16651
16847
|
});
|
|
16652
16848
|
}
|
|
16849
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultWarmNodeAmountRange extends $tea.Model {
|
|
16850
|
+
maxAmount?: number;
|
|
16851
|
+
minAmount?: number;
|
|
16852
|
+
static names(): {
|
|
16853
|
+
[key: string]: string;
|
|
16854
|
+
};
|
|
16855
|
+
static types(): {
|
|
16856
|
+
[key: string]: any;
|
|
16857
|
+
};
|
|
16858
|
+
constructor(map?: {
|
|
16859
|
+
[key: string]: any;
|
|
16860
|
+
});
|
|
16861
|
+
}
|
|
16862
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultWarmNodeDiskListSubClassificationConfines extends $tea.Model {
|
|
16863
|
+
maxSize?: number;
|
|
16864
|
+
minSize?: number;
|
|
16865
|
+
performanceLevel?: string;
|
|
16866
|
+
static names(): {
|
|
16867
|
+
[key: string]: string;
|
|
16868
|
+
};
|
|
16869
|
+
static types(): {
|
|
16870
|
+
[key: string]: any;
|
|
16871
|
+
};
|
|
16872
|
+
constructor(map?: {
|
|
16873
|
+
[key: string]: any;
|
|
16874
|
+
});
|
|
16875
|
+
}
|
|
16876
|
+
export declare class GetRegionalInstanceConfigResponseBodyResultWarmNodeDiskList extends $tea.Model {
|
|
16877
|
+
diskType?: string;
|
|
16878
|
+
maxSize?: number;
|
|
16879
|
+
minSize?: number;
|
|
16880
|
+
scaleLimit?: number;
|
|
16881
|
+
subClassificationConfines?: GetRegionalInstanceConfigResponseBodyResultWarmNodeDiskListSubClassificationConfines[];
|
|
16882
|
+
valueLimitSet?: number[];
|
|
16883
|
+
static names(): {
|
|
16884
|
+
[key: string]: string;
|
|
16885
|
+
};
|
|
16886
|
+
static types(): {
|
|
16887
|
+
[key: string]: any;
|
|
16888
|
+
};
|
|
16889
|
+
constructor(map?: {
|
|
16890
|
+
[key: string]: any;
|
|
16891
|
+
});
|
|
16892
|
+
}
|
|
16653
16893
|
export declare class GetRegionalInstanceConfigResponseBodyResult extends $tea.Model {
|
|
16654
16894
|
clientNodeAmountRange?: GetRegionalInstanceConfigResponseBodyResultClientNodeAmountRange;
|
|
16655
16895
|
clientNodeDiskList?: GetRegionalInstanceConfigResponseBodyResultClientNodeDiskList[];
|
|
@@ -16665,6 +16905,9 @@ export declare class GetRegionalInstanceConfigResponseBodyResult extends $tea.Mo
|
|
|
16665
16905
|
[key: string]: ResultSpecInfoMapValue;
|
|
16666
16906
|
};
|
|
16667
16907
|
versions?: string[];
|
|
16908
|
+
warmNodeAmountRange?: GetRegionalInstanceConfigResponseBodyResultWarmNodeAmountRange;
|
|
16909
|
+
warmNodeDiskList?: GetRegionalInstanceConfigResponseBodyResultWarmNodeDiskList[];
|
|
16910
|
+
warmNodeSpecs?: string[];
|
|
16668
16911
|
static names(): {
|
|
16669
16912
|
[key: string]: string;
|
|
16670
16913
|
};
|
|
@@ -16681,7 +16924,7 @@ export declare class GetSuggestShrinkableNodesResponseBodyResult extends $tea.Mo
|
|
|
16681
16924
|
* The IP address of the node.
|
|
16682
16925
|
*
|
|
16683
16926
|
* @example
|
|
16684
|
-
* 192.168
|
|
16927
|
+
* ``192.168.**.**``
|
|
16685
16928
|
*/
|
|
16686
16929
|
host?: string;
|
|
16687
16930
|
/**
|
|
@@ -16708,7 +16951,7 @@ export declare class GetTransferableNodesResponseBodyResult extends $tea.Model {
|
|
|
16708
16951
|
* The IP address of the node.
|
|
16709
16952
|
*
|
|
16710
16953
|
* @example
|
|
16711
|
-
* 192.168
|
|
16954
|
+
* ``192.168.**.**``
|
|
16712
16955
|
*/
|
|
16713
16956
|
host?: string;
|
|
16714
16957
|
/**
|
|
@@ -20375,7 +20618,7 @@ export declare class ListSearchLogResponseBodyResult extends $tea.Model {
|
|
|
20375
20618
|
content?: string;
|
|
20376
20619
|
/**
|
|
20377
20620
|
* @example
|
|
20378
|
-
* {"level": "info", "host": "192.168
|
|
20621
|
+
* {"level": "info", "host": "``192.168.**.**``", "time": "2019-03-18T08:16:12.741Z","content": "[o.e.c.r.a.AllocationService] [MnNASM_] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[my_index][3]] ...])."}
|
|
20379
20622
|
*/
|
|
20380
20623
|
contentCollection?: {
|
|
20381
20624
|
[key: string]: any;
|
|
@@ -20385,7 +20628,7 @@ export declare class ListSearchLogResponseBodyResult extends $tea.Model {
|
|
|
20385
20628
|
* Details of the log entry. Different content fields are returned for different log types.
|
|
20386
20629
|
*
|
|
20387
20630
|
* @example
|
|
20388
|
-
* 192.168
|
|
20631
|
+
* ``192.168.**.**``
|
|
20389
20632
|
*/
|
|
20390
20633
|
host?: string;
|
|
20391
20634
|
/**
|
|
@@ -23251,6 +23494,7 @@ export declare class UpdateWhiteIpsResponseBodyResult extends $tea.Model {
|
|
|
23251
23494
|
});
|
|
23252
23495
|
}
|
|
23253
23496
|
export declare class UpgradeEngineVersionRequestPlugins extends $tea.Model {
|
|
23497
|
+
enable?: string;
|
|
23254
23498
|
fileVersion?: string;
|
|
23255
23499
|
name?: string;
|
|
23256
23500
|
version?: string;
|
|
@@ -23506,7 +23750,7 @@ export default class Client extends OpenApi {
|
|
|
23506
23750
|
*/
|
|
23507
23751
|
cancelTask(InstanceId: string, request: CancelTaskRequest): Promise<CancelTaskResponse>;
|
|
23508
23752
|
/**
|
|
23509
|
-
*
|
|
23753
|
+
* Capacity Planning
|
|
23510
23754
|
*
|
|
23511
23755
|
* @param request - CapacityPlanRequest
|
|
23512
23756
|
* @param headers - map
|
|
@@ -23517,7 +23761,7 @@ export default class Client extends OpenApi {
|
|
|
23517
23761
|
[key: string]: string;
|
|
23518
23762
|
}, runtime: $Util.RuntimeOptions): Promise<CapacityPlanResponse>;
|
|
23519
23763
|
/**
|
|
23520
|
-
*
|
|
23764
|
+
* Capacity Planning
|
|
23521
23765
|
*
|
|
23522
23766
|
* @param request - CapacityPlanRequest
|
|
23523
23767
|
* @returns CapacityPlanResponse
|
|
@@ -23556,7 +23800,7 @@ export default class Client extends OpenApi {
|
|
|
23556
23800
|
*/
|
|
23557
23801
|
closeHttps(InstanceId: string, request: CloseHttpsRequest): Promise<CloseHttpsResponse>;
|
|
23558
23802
|
/**
|
|
23559
|
-
*
|
|
23803
|
+
* Disable Managed Index
|
|
23560
23804
|
*
|
|
23561
23805
|
* @param request - CloseManagedIndexRequest
|
|
23562
23806
|
* @param headers - map
|
|
@@ -23567,7 +23811,7 @@ export default class Client extends OpenApi {
|
|
|
23567
23811
|
[key: string]: string;
|
|
23568
23812
|
}, runtime: $Util.RuntimeOptions): Promise<CloseManagedIndexResponse>;
|
|
23569
23813
|
/**
|
|
23570
|
-
*
|
|
23814
|
+
* Disable Managed Index
|
|
23571
23815
|
*
|
|
23572
23816
|
* @param request - CloseManagedIndexRequest
|
|
23573
23817
|
* @returns CloseManagedIndexResponse
|
|
@@ -23738,7 +23982,7 @@ export default class Client extends OpenApi {
|
|
|
23738
23982
|
*/
|
|
23739
23983
|
createVpcEndpoint(InstanceId: string, request: CreateVpcEndpointRequest): Promise<CreateVpcEndpointResponse>;
|
|
23740
23984
|
/**
|
|
23741
|
-
*
|
|
23985
|
+
* Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
|
|
23742
23986
|
*
|
|
23743
23987
|
* @param request - DeactivateZonesRequest
|
|
23744
23988
|
* @param headers - map
|
|
@@ -23749,7 +23993,7 @@ export default class Client extends OpenApi {
|
|
|
23749
23993
|
[key: string]: string;
|
|
23750
23994
|
}, runtime: $Util.RuntimeOptions): Promise<DeactivateZonesResponse>;
|
|
23751
23995
|
/**
|
|
23752
|
-
*
|
|
23996
|
+
* Invoke DeactivateZones to offline certain zones when there are multiple availability zones, and migrate nodes in the offline zones to other availability zones.
|
|
23753
23997
|
*
|
|
23754
23998
|
* @param request - DeactivateZonesRequest
|
|
23755
23999
|
* @returns DeactivateZonesResponse
|
|
@@ -23986,7 +24230,7 @@ export default class Client extends OpenApi {
|
|
|
23986
24230
|
*/
|
|
23987
24231
|
describeAckOperator(ClusterId: string): Promise<DescribeAckOperatorResponse>;
|
|
23988
24232
|
/**
|
|
23989
|
-
*
|
|
24233
|
+
* Describe APM
|
|
23990
24234
|
*
|
|
23991
24235
|
* @param headers - map
|
|
23992
24236
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -23996,7 +24240,7 @@ export default class Client extends OpenApi {
|
|
|
23996
24240
|
[key: string]: string;
|
|
23997
24241
|
}, runtime: $Util.RuntimeOptions): Promise<DescribeApmResponse>;
|
|
23998
24242
|
/**
|
|
23999
|
-
*
|
|
24243
|
+
* Describe APM
|
|
24000
24244
|
* @returns DescribeApmResponse
|
|
24001
24245
|
*/
|
|
24002
24246
|
describeApm(instanceId: string): Promise<DescribeApmResponse>;
|