tencentcloud-sdk-nodejs-es 4.1.212 → 4.1.218
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
CHANGED
|
@@ -911,40 +911,52 @@ export interface DescribeInstanceOperationsResponse {
|
|
|
911
911
|
*/
|
|
912
912
|
export interface IndexOptionsField {
|
|
913
913
|
/**
|
|
914
|
-
*
|
|
914
|
+
* <p>过期时间</p>
|
|
915
915
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
916
916
|
*/
|
|
917
917
|
ExpireMaxAge?: string;
|
|
918
918
|
/**
|
|
919
|
-
*
|
|
919
|
+
* <p>过期大小</p>
|
|
920
920
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
921
921
|
*/
|
|
922
922
|
ExpireMaxSize?: string;
|
|
923
923
|
/**
|
|
924
|
-
*
|
|
924
|
+
* <p>滚动周期</p>
|
|
925
925
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
926
926
|
*/
|
|
927
927
|
RolloverMaxAge?: string;
|
|
928
928
|
/**
|
|
929
|
-
*
|
|
929
|
+
* <p>是否开启动态滚动</p>
|
|
930
930
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
931
931
|
*/
|
|
932
932
|
RolloverDynamic?: string;
|
|
933
933
|
/**
|
|
934
|
-
*
|
|
934
|
+
* <p>是否开启动态分片</p>
|
|
935
935
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
936
936
|
*/
|
|
937
937
|
ShardNumDynamic?: string;
|
|
938
938
|
/**
|
|
939
|
-
*
|
|
939
|
+
* <p>时间分区字段</p>
|
|
940
940
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
941
941
|
*/
|
|
942
942
|
TimestampField?: string;
|
|
943
943
|
/**
|
|
944
|
-
*
|
|
944
|
+
* <p>写入模式</p>
|
|
945
945
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
946
946
|
*/
|
|
947
947
|
WriteMode?: string;
|
|
948
|
+
/**
|
|
949
|
+
* <p>是否开启完全卸载</p><p>枚举值:</p><ul><li>true: 开启完全卸载</li><li>false: 关闭完全卸载</li></ul>
|
|
950
|
+
*/
|
|
951
|
+
FullOffloadedEnable?: string;
|
|
952
|
+
/**
|
|
953
|
+
* <p>完全卸载生命周期</p>
|
|
954
|
+
*/
|
|
955
|
+
FullOffloadedMaxAge?: string;
|
|
956
|
+
/**
|
|
957
|
+
* <p>完全卸载后备索引取回后生命周期</p>
|
|
958
|
+
*/
|
|
959
|
+
FullOffloadedRetrieveMaxAge?: string;
|
|
948
960
|
}
|
|
949
961
|
/**
|
|
950
962
|
* UpdateRequestTargetNodeTypes返回参数结构体
|
|
@@ -4931,33 +4943,45 @@ export interface DescribeUserCosSnapshotListResponse {
|
|
|
4931
4943
|
*/
|
|
4932
4944
|
export interface UpdateIndexRequest {
|
|
4933
4945
|
/**
|
|
4934
|
-
* ES集群ID
|
|
4946
|
+
* <p>ES集群ID</p>
|
|
4935
4947
|
*/
|
|
4936
4948
|
InstanceId: string;
|
|
4937
4949
|
/**
|
|
4938
|
-
*
|
|
4950
|
+
* <p>更新的索引类型。auto:自治索引;normal:普通索引</p>
|
|
4939
4951
|
*/
|
|
4940
4952
|
IndexType: string;
|
|
4941
4953
|
/**
|
|
4942
|
-
*
|
|
4954
|
+
* <p>更新的索引名</p>
|
|
4943
4955
|
*/
|
|
4944
4956
|
IndexName: string;
|
|
4945
4957
|
/**
|
|
4946
|
-
*
|
|
4958
|
+
* <p>更新的索引元数据JSON,如mappings、settings</p>
|
|
4947
4959
|
*/
|
|
4948
4960
|
UpdateMetaJson?: string;
|
|
4949
4961
|
/**
|
|
4950
|
-
*
|
|
4962
|
+
* <p>集群访问用户名</p>
|
|
4951
4963
|
*/
|
|
4952
4964
|
Username?: string;
|
|
4953
4965
|
/**
|
|
4954
|
-
*
|
|
4966
|
+
* <p>集群访问密码</p>
|
|
4955
4967
|
*/
|
|
4956
4968
|
Password?: string;
|
|
4957
4969
|
/**
|
|
4958
|
-
*
|
|
4970
|
+
* <p>是否滚动后备索引</p>
|
|
4959
4971
|
*/
|
|
4960
4972
|
RolloverBackingIndex?: boolean;
|
|
4973
|
+
/**
|
|
4974
|
+
* <p>是否为取回完全卸载索引</p>
|
|
4975
|
+
*/
|
|
4976
|
+
MountIndex?: boolean;
|
|
4977
|
+
/**
|
|
4978
|
+
* <p>索引Uuid</p>
|
|
4979
|
+
*/
|
|
4980
|
+
IndexUuid?: string;
|
|
4981
|
+
/**
|
|
4982
|
+
* <p>后备索引名</p>
|
|
4983
|
+
*/
|
|
4984
|
+
BackingIndexName?: string;
|
|
4961
4985
|
}
|
|
4962
4986
|
/**
|
|
4963
4987
|
* Serverless实例,网络、索引、kibana等连接信息
|
|
@@ -5259,30 +5283,34 @@ export interface RestartInstanceResponse {
|
|
|
5259
5283
|
*/
|
|
5260
5284
|
export interface BackingIndexMetaField {
|
|
5261
5285
|
/**
|
|
5262
|
-
*
|
|
5286
|
+
* <p>后备索引名</p>
|
|
5263
5287
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5264
5288
|
*/
|
|
5265
5289
|
IndexName?: string;
|
|
5266
5290
|
/**
|
|
5267
|
-
*
|
|
5291
|
+
* <p>后备索引状态</p>
|
|
5268
5292
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5269
5293
|
*/
|
|
5270
5294
|
IndexStatus?: string;
|
|
5271
5295
|
/**
|
|
5272
|
-
*
|
|
5296
|
+
* <p>后备索引存储大小</p>
|
|
5273
5297
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5274
5298
|
*/
|
|
5275
5299
|
IndexStorage?: number;
|
|
5276
5300
|
/**
|
|
5277
|
-
*
|
|
5301
|
+
* <p>后备索引当前生命周期</p>
|
|
5278
5302
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5279
5303
|
*/
|
|
5280
5304
|
IndexPhrase?: string;
|
|
5281
5305
|
/**
|
|
5282
|
-
*
|
|
5306
|
+
* <p>后备索引创建时间</p>
|
|
5283
5307
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5284
5308
|
*/
|
|
5285
5309
|
IndexCreateTime?: string;
|
|
5310
|
+
/**
|
|
5311
|
+
* <p>索引Uuid</p>
|
|
5312
|
+
*/
|
|
5313
|
+
IndexUuid?: string;
|
|
5286
5314
|
}
|
|
5287
5315
|
/**
|
|
5288
5316
|
* 节点IP、访问IP、访问时间
|