tencentcloud-sdk-nodejs-es 4.0.835 → 4.0.839
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/package.json +1 -1
- package/products.md +77 -77
- package/src/services/es/v20180416/es_client.ts +25 -9
- package/src/services/es/v20180416/es_models.ts +261 -37
- package/tencentcloud/services/es/v20180416/es_client.d.ts +5 -1
- package/tencentcloud/services/es/v20180416/es_client.js +6 -0
- package/tencentcloud/services/es/v20180416/es_models.d.ts +255 -37
|
@@ -436,6 +436,15 @@ export interface KeyValue {
|
|
|
436
436
|
*/
|
|
437
437
|
Value: string;
|
|
438
438
|
}
|
|
439
|
+
/**
|
|
440
|
+
* UpdateDiagnoseSettings返回参数结构体
|
|
441
|
+
*/
|
|
442
|
+
export interface UpdateDiagnoseSettingsResponse {
|
|
443
|
+
/**
|
|
444
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
445
|
+
*/
|
|
446
|
+
RequestId?: string;
|
|
447
|
+
}
|
|
439
448
|
/**
|
|
440
449
|
* UpdateLogstashPipelineDesc返回参数结构体
|
|
441
450
|
*/
|
|
@@ -1245,13 +1254,18 @@ export interface DescribeLogstashInstanceLogsRequest {
|
|
|
1245
1254
|
OrderByType?: number;
|
|
1246
1255
|
}
|
|
1247
1256
|
/**
|
|
1248
|
-
*
|
|
1257
|
+
* DescribeIndexMeta返回参数结构体
|
|
1249
1258
|
*/
|
|
1250
|
-
export interface
|
|
1259
|
+
export interface DescribeIndexMetaResponse {
|
|
1251
1260
|
/**
|
|
1252
|
-
*
|
|
1261
|
+
* 索引元数据字段
|
|
1262
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1253
1263
|
*/
|
|
1254
|
-
|
|
1264
|
+
IndexMetaField?: IndexMetaField;
|
|
1265
|
+
/**
|
|
1266
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1267
|
+
*/
|
|
1268
|
+
RequestId?: string;
|
|
1255
1269
|
}
|
|
1256
1270
|
/**
|
|
1257
1271
|
* 智能运维支持的诊断项和元信息
|
|
@@ -1461,6 +1475,21 @@ export interface UpgradeLicenseResponse {
|
|
|
1461
1475
|
*/
|
|
1462
1476
|
RequestId?: string;
|
|
1463
1477
|
}
|
|
1478
|
+
/**
|
|
1479
|
+
* 索引配置字段
|
|
1480
|
+
*/
|
|
1481
|
+
export interface ServerlessIndexSettingsField {
|
|
1482
|
+
/**
|
|
1483
|
+
* 索引主分片数
|
|
1484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1485
|
+
*/
|
|
1486
|
+
NumberOfShards?: string;
|
|
1487
|
+
/**
|
|
1488
|
+
* 索引刷新频率
|
|
1489
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1490
|
+
*/
|
|
1491
|
+
RefreshInterval?: string;
|
|
1492
|
+
}
|
|
1464
1493
|
/**
|
|
1465
1494
|
* Logstash扩展文件信息
|
|
1466
1495
|
*/
|
|
@@ -1905,13 +1934,21 @@ export interface DescribeIndexListResponse {
|
|
|
1905
1934
|
RequestId?: string;
|
|
1906
1935
|
}
|
|
1907
1936
|
/**
|
|
1908
|
-
*
|
|
1937
|
+
* DescribeUserCosSnapshotList请求参数结构体
|
|
1909
1938
|
*/
|
|
1910
|
-
export interface
|
|
1939
|
+
export interface DescribeUserCosSnapshotListRequest {
|
|
1911
1940
|
/**
|
|
1912
|
-
*
|
|
1941
|
+
* cos桶名
|
|
1913
1942
|
*/
|
|
1914
|
-
|
|
1943
|
+
CosBucket?: string;
|
|
1944
|
+
/**
|
|
1945
|
+
* bucket 桶下的备份路径
|
|
1946
|
+
*/
|
|
1947
|
+
BasePath?: string;
|
|
1948
|
+
/**
|
|
1949
|
+
* 云上集群迁移集群名
|
|
1950
|
+
*/
|
|
1951
|
+
ClusterInstanceId?: string;
|
|
1915
1952
|
}
|
|
1916
1953
|
/**
|
|
1917
1954
|
* DescribeLogstashInstanceOperations请求参数结构体
|
|
@@ -2288,6 +2325,21 @@ export interface SaveAndDeployLogstashPipelineResponse {
|
|
|
2288
2325
|
*/
|
|
2289
2326
|
RequestId?: string;
|
|
2290
2327
|
}
|
|
2328
|
+
/**
|
|
2329
|
+
* 索引自治字段
|
|
2330
|
+
*/
|
|
2331
|
+
export interface ServerlessIndexOptionsField {
|
|
2332
|
+
/**
|
|
2333
|
+
* 过期时间
|
|
2334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2335
|
+
*/
|
|
2336
|
+
ExpireMaxAge?: string;
|
|
2337
|
+
/**
|
|
2338
|
+
* 时间分区字段
|
|
2339
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2340
|
+
*/
|
|
2341
|
+
TimestampField?: string;
|
|
2342
|
+
}
|
|
2291
2343
|
/**
|
|
2292
2344
|
* UpdateDictionaries请求参数结构体
|
|
2293
2345
|
*/
|
|
@@ -2758,6 +2810,15 @@ export interface CreateLogstashInstanceRequest {
|
|
|
2758
2810
|
*/
|
|
2759
2811
|
OperationDuration?: OperationDuration;
|
|
2760
2812
|
}
|
|
2813
|
+
/**
|
|
2814
|
+
* UpdateServerlessInstance返回参数结构体
|
|
2815
|
+
*/
|
|
2816
|
+
export interface UpdateServerlessInstanceResponse {
|
|
2817
|
+
/**
|
|
2818
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2819
|
+
*/
|
|
2820
|
+
RequestId?: string;
|
|
2821
|
+
}
|
|
2761
2822
|
/**
|
|
2762
2823
|
* UpdateDictionaries返回参数结构体
|
|
2763
2824
|
*/
|
|
@@ -3223,6 +3284,15 @@ export interface DeleteServerlessSpaceUserRequest {
|
|
|
3223
3284
|
*/
|
|
3224
3285
|
Username: string;
|
|
3225
3286
|
}
|
|
3287
|
+
/**
|
|
3288
|
+
* RestartNodes返回参数结构体
|
|
3289
|
+
*/
|
|
3290
|
+
export interface RestartNodesResponse {
|
|
3291
|
+
/**
|
|
3292
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3293
|
+
*/
|
|
3294
|
+
RequestId?: string;
|
|
3295
|
+
}
|
|
3226
3296
|
/**
|
|
3227
3297
|
* DescribeInstances请求参数结构体
|
|
3228
3298
|
*/
|
|
@@ -3374,18 +3444,102 @@ export interface DataStreamInfo {
|
|
|
3374
3444
|
IsShardComplete?: number;
|
|
3375
3445
|
}
|
|
3376
3446
|
/**
|
|
3377
|
-
*
|
|
3447
|
+
* 索引元数据字段
|
|
3378
3448
|
*/
|
|
3379
|
-
export interface
|
|
3449
|
+
export interface ServerlessIndexMetaField {
|
|
3380
3450
|
/**
|
|
3381
|
-
*
|
|
3451
|
+
* 索引所属集群APP ID
|
|
3382
3452
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3383
3453
|
*/
|
|
3384
|
-
|
|
3454
|
+
AppId?: number;
|
|
3385
3455
|
/**
|
|
3386
|
-
*
|
|
3456
|
+
* 索引名
|
|
3457
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3387
3458
|
*/
|
|
3388
|
-
|
|
3459
|
+
IndexName?: string;
|
|
3460
|
+
/**
|
|
3461
|
+
* 索引文档数
|
|
3462
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3463
|
+
*/
|
|
3464
|
+
IndexDocs?: number;
|
|
3465
|
+
/**
|
|
3466
|
+
* 索引存储大小,单位Byte
|
|
3467
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3468
|
+
*/
|
|
3469
|
+
IndexStorage?: number;
|
|
3470
|
+
/**
|
|
3471
|
+
* 索引创建时间
|
|
3472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3473
|
+
*/
|
|
3474
|
+
IndexCreateTime?: string;
|
|
3475
|
+
/**
|
|
3476
|
+
* 索引实例ID
|
|
3477
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3478
|
+
*/
|
|
3479
|
+
InstanceId?: string;
|
|
3480
|
+
/**
|
|
3481
|
+
* 索引自治字段
|
|
3482
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3483
|
+
*/
|
|
3484
|
+
IndexOptionsField?: ServerlessIndexOptionsField;
|
|
3485
|
+
/**
|
|
3486
|
+
* 索引配置字段
|
|
3487
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3488
|
+
*/
|
|
3489
|
+
IndexSettingsField?: ServerlessIndexSettingsField;
|
|
3490
|
+
/**
|
|
3491
|
+
* 索引所属连接相关信息
|
|
3492
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3493
|
+
*/
|
|
3494
|
+
IndexNetworkField?: ServerlessIndexNetworkField;
|
|
3495
|
+
/**
|
|
3496
|
+
* Kibana公网域名
|
|
3497
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3498
|
+
*/
|
|
3499
|
+
KibanaUrl?: string;
|
|
3500
|
+
/**
|
|
3501
|
+
* Kibana内网域名
|
|
3502
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3503
|
+
*/
|
|
3504
|
+
KibanaPrivateUrl?: string;
|
|
3505
|
+
/**
|
|
3506
|
+
* 索引内网访问地址
|
|
3507
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3508
|
+
*/
|
|
3509
|
+
IndexAccessUrl?: string;
|
|
3510
|
+
/**
|
|
3511
|
+
* 状态
|
|
3512
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3513
|
+
*/
|
|
3514
|
+
Status?: number;
|
|
3515
|
+
/**
|
|
3516
|
+
* 索引空间ID
|
|
3517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3518
|
+
*/
|
|
3519
|
+
SpaceId?: string;
|
|
3520
|
+
/**
|
|
3521
|
+
* 索引空间名
|
|
3522
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3523
|
+
*/
|
|
3524
|
+
SpaceName?: string;
|
|
3525
|
+
/**
|
|
3526
|
+
* 存储类型
|
|
3527
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3528
|
+
*/
|
|
3529
|
+
StorageType?: number;
|
|
3530
|
+
/**
|
|
3531
|
+
* 标签信息
|
|
3532
|
+
*/
|
|
3533
|
+
TagList?: Array<TagInfo>;
|
|
3534
|
+
}
|
|
3535
|
+
/**
|
|
3536
|
+
* GetRequestTargetNodeTypes请求参数结构体
|
|
3537
|
+
*/
|
|
3538
|
+
export interface GetRequestTargetNodeTypesRequest {
|
|
3539
|
+
/**
|
|
3540
|
+
* 实例ID
|
|
3541
|
+
*/
|
|
3542
|
+
InstanceId: string;
|
|
3389
3543
|
}
|
|
3390
3544
|
/**
|
|
3391
3545
|
* ModifyEsVipSecurityGroup请求参数结构体
|
|
@@ -3581,9 +3735,17 @@ export interface RestartKibanaResponse {
|
|
|
3581
3735
|
RequestId?: string;
|
|
3582
3736
|
}
|
|
3583
3737
|
/**
|
|
3584
|
-
*
|
|
3738
|
+
* DescribeUserCosSnapshotList返回参数结构体
|
|
3585
3739
|
*/
|
|
3586
|
-
export interface
|
|
3740
|
+
export interface DescribeUserCosSnapshotListResponse {
|
|
3741
|
+
/**
|
|
3742
|
+
* cos 快照信息列表
|
|
3743
|
+
*/
|
|
3744
|
+
CosSnapshotInfoList?: Array<CosSnapShotInfo>;
|
|
3745
|
+
/**
|
|
3746
|
+
* cos 快照数量
|
|
3747
|
+
*/
|
|
3748
|
+
TotalCount?: number;
|
|
3587
3749
|
/**
|
|
3588
3750
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3589
3751
|
*/
|
|
@@ -3623,13 +3785,39 @@ export interface UpdateIndexRequest {
|
|
|
3623
3785
|
RolloverBackingIndex?: boolean;
|
|
3624
3786
|
}
|
|
3625
3787
|
/**
|
|
3626
|
-
*
|
|
3788
|
+
* Serverless实例,网络、索引、kibana等连接信息
|
|
3627
3789
|
*/
|
|
3628
|
-
export interface
|
|
3790
|
+
export interface ServerlessIndexNetworkField {
|
|
3629
3791
|
/**
|
|
3630
|
-
*
|
|
3792
|
+
* 地域
|
|
3793
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3631
3794
|
*/
|
|
3632
|
-
|
|
3795
|
+
Region: string;
|
|
3796
|
+
/**
|
|
3797
|
+
* 区域
|
|
3798
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3799
|
+
*/
|
|
3800
|
+
Zone: string;
|
|
3801
|
+
/**
|
|
3802
|
+
* vpc唯一ID
|
|
3803
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3804
|
+
*/
|
|
3805
|
+
VpcUid: string;
|
|
3806
|
+
/**
|
|
3807
|
+
* 子网唯一ID
|
|
3808
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3809
|
+
*/
|
|
3810
|
+
SubnetUid: string;
|
|
3811
|
+
/**
|
|
3812
|
+
* 用户名
|
|
3813
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3814
|
+
*/
|
|
3815
|
+
Username: string;
|
|
3816
|
+
/**
|
|
3817
|
+
* 密码
|
|
3818
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3819
|
+
*/
|
|
3820
|
+
Password: string;
|
|
3633
3821
|
}
|
|
3634
3822
|
/**
|
|
3635
3823
|
* 可视化节点配置
|
|
@@ -3711,9 +3899,9 @@ export interface UpdatePluginsResponse {
|
|
|
3711
3899
|
RequestId?: string;
|
|
3712
3900
|
}
|
|
3713
3901
|
/**
|
|
3714
|
-
*
|
|
3902
|
+
* UpdateIndex返回参数结构体
|
|
3715
3903
|
*/
|
|
3716
|
-
export interface
|
|
3904
|
+
export interface UpdateIndexResponse {
|
|
3717
3905
|
/**
|
|
3718
3906
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3719
3907
|
*/
|
|
@@ -4403,21 +4591,49 @@ export interface StopLogstashPipelinesResponse {
|
|
|
4403
4591
|
RequestId?: string;
|
|
4404
4592
|
}
|
|
4405
4593
|
/**
|
|
4406
|
-
*
|
|
4594
|
+
* DescribeServerlessInstances请求参数结构体
|
|
4407
4595
|
*/
|
|
4408
|
-
export interface
|
|
4596
|
+
export interface DescribeServerlessInstancesRequest {
|
|
4409
4597
|
/**
|
|
4410
|
-
*
|
|
4598
|
+
* 索引集群ID
|
|
4411
4599
|
*/
|
|
4412
|
-
|
|
4600
|
+
InstanceIds?: Array<string>;
|
|
4413
4601
|
/**
|
|
4414
|
-
*
|
|
4602
|
+
* 索引名
|
|
4415
4603
|
*/
|
|
4416
|
-
|
|
4604
|
+
IndexNames?: Array<string>;
|
|
4417
4605
|
/**
|
|
4418
|
-
*
|
|
4606
|
+
* 分页起始位置
|
|
4419
4607
|
*/
|
|
4420
|
-
|
|
4608
|
+
Offset?: number;
|
|
4609
|
+
/**
|
|
4610
|
+
* 一页展示数量
|
|
4611
|
+
*/
|
|
4612
|
+
Limit?: number;
|
|
4613
|
+
/**
|
|
4614
|
+
* 排序字段,支持索引名:IndexName、索引存储量:IndexStorage、索引创建时间:IndexCreateTime
|
|
4615
|
+
*/
|
|
4616
|
+
OrderBy?: string;
|
|
4617
|
+
/**
|
|
4618
|
+
* 过滤索引状态
|
|
4619
|
+
*/
|
|
4620
|
+
IndexStatusList?: Array<string>;
|
|
4621
|
+
/**
|
|
4622
|
+
* 排序顺序,支持asc、desc,默认为desc
|
|
4623
|
+
*/
|
|
4624
|
+
Order?: string;
|
|
4625
|
+
/**
|
|
4626
|
+
* 索引空间ID列表
|
|
4627
|
+
*/
|
|
4628
|
+
SpaceIds?: Array<string>;
|
|
4629
|
+
/**
|
|
4630
|
+
* 数据链路数据源类型
|
|
4631
|
+
*/
|
|
4632
|
+
DiSourceTypes?: Array<string>;
|
|
4633
|
+
/**
|
|
4634
|
+
* 标签信息
|
|
4635
|
+
*/
|
|
4636
|
+
TagList?: Array<TagInfo>;
|
|
4421
4637
|
}
|
|
4422
4638
|
/**
|
|
4423
4639
|
* 实例Kibana节点相关信息
|
|
@@ -4449,9 +4665,9 @@ export interface KibanaNodeInfo {
|
|
|
4449
4665
|
KibanaNodeDiskSize: number;
|
|
4450
4666
|
}
|
|
4451
4667
|
/**
|
|
4452
|
-
*
|
|
4668
|
+
* StartLogstashPipelines返回参数结构体
|
|
4453
4669
|
*/
|
|
4454
|
-
export interface
|
|
4670
|
+
export interface StartLogstashPipelinesResponse {
|
|
4455
4671
|
/**
|
|
4456
4672
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4457
4673
|
*/
|
|
@@ -4538,15 +4754,17 @@ export interface RestartNodesRequest {
|
|
|
4538
4754
|
CvmDelayOnlineTime?: number;
|
|
4539
4755
|
}
|
|
4540
4756
|
/**
|
|
4541
|
-
*
|
|
4757
|
+
* DescribeServerlessInstances返回参数结构体
|
|
4542
4758
|
*/
|
|
4543
|
-
export interface
|
|
4759
|
+
export interface DescribeServerlessInstancesResponse {
|
|
4544
4760
|
/**
|
|
4545
|
-
*
|
|
4761
|
+
* 索引元数据字段
|
|
4762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4546
4763
|
*/
|
|
4547
|
-
|
|
4764
|
+
IndexMetaFields?: Array<ServerlessIndexMetaField>;
|
|
4548
4765
|
/**
|
|
4549
|
-
*
|
|
4766
|
+
* 查询总数
|
|
4767
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4550
4768
|
*/
|
|
4551
4769
|
TotalCount?: number;
|
|
4552
4770
|
/**
|