tencentcloud-sdk-nodejs-es 4.1.178 → 4.1.182
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
|
@@ -96,6 +96,19 @@ export interface RestartLogstashInstanceRequest {
|
|
|
96
96
|
*/
|
|
97
97
|
Type?: number;
|
|
98
98
|
}
|
|
99
|
+
/**
|
|
100
|
+
* updateInstance使用的额外的EsConfig和JvmHeapConfig
|
|
101
|
+
*/
|
|
102
|
+
export interface OtherConfig {
|
|
103
|
+
/**
|
|
104
|
+
* es的yml额外配置
|
|
105
|
+
*/
|
|
106
|
+
EsConfig?: string;
|
|
107
|
+
/**
|
|
108
|
+
* es的jvm heap config
|
|
109
|
+
*/
|
|
110
|
+
JvmHeapConfig?: string;
|
|
111
|
+
}
|
|
99
112
|
/**
|
|
100
113
|
* DescribeInstanceOperations请求参数结构体
|
|
101
114
|
*/
|
|
@@ -2950,6 +2963,10 @@ export interface CreateClusterSnapshotRequest {
|
|
|
2950
2963
|
* 跨地域备份地域名称 ap-guangzhou
|
|
2951
2964
|
*/
|
|
2952
2965
|
RemoteCosRegion?: string;
|
|
2966
|
+
/**
|
|
2967
|
+
* cos多AZ备份 0 单AZ; 1 多AZ
|
|
2968
|
+
*/
|
|
2969
|
+
MultiAz?: number;
|
|
2953
2970
|
}
|
|
2954
2971
|
/**
|
|
2955
2972
|
* DeleteLogstashPipelines请求参数结构体
|
|
@@ -3330,6 +3347,10 @@ export interface CosBackup {
|
|
|
3330
3347
|
* 备份索引列表,如果不填表示备份所有索引
|
|
3331
3348
|
*/
|
|
3332
3349
|
Indices?: string;
|
|
3350
|
+
/**
|
|
3351
|
+
* cos多AZ备份 0 单AZ; 1 多AZ
|
|
3352
|
+
*/
|
|
3353
|
+
MultiAz?: number;
|
|
3333
3354
|
/**
|
|
3334
3355
|
* 策略创建时间
|
|
3335
3356
|
*/
|
|
@@ -4855,6 +4876,11 @@ export interface Snapshots {
|
|
|
4855
4876
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4856
4877
|
*/
|
|
4857
4878
|
StrategyName?: string;
|
|
4879
|
+
/**
|
|
4880
|
+
* cos多AZ备份 0 单AZ; 1 多AZ
|
|
4881
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4882
|
+
*/
|
|
4883
|
+
MultiAz?: number;
|
|
4858
4884
|
}
|
|
4859
4885
|
/**
|
|
4860
4886
|
* UpdateJdk返回参数结构体
|
|
@@ -5667,6 +5693,10 @@ export interface UpdateInstanceRequest {
|
|
|
5667
5693
|
* 自动扩盘删除参数
|
|
5668
5694
|
*/
|
|
5669
5695
|
AutoScaleDiskDeleteNodeTypeList?: Array<string>;
|
|
5696
|
+
/**
|
|
5697
|
+
* 其他附加配置,jvm或者yml
|
|
5698
|
+
*/
|
|
5699
|
+
OtherConfig?: OtherConfig;
|
|
5670
5700
|
}
|
|
5671
5701
|
/**
|
|
5672
5702
|
* CreateAutoBackUpStrategy返回参数结构体
|