tencentcloud-sdk-nodejs-es 4.1.155 → 4.1.157

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.
@@ -1,6 +1,6 @@
1
- import { v20180416 } from "./v20180416";
2
1
  import { v20250101 } from "./v20250101";
2
+ import { v20180416 } from "./v20180416";
3
3
  export const es = {
4
- v20180416: v20180416,
5
4
  v20250101: v20250101,
5
+ v20180416: v20180416,
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-es",
3
- "version": "4.1.155",
3
+ "version": "4.1.157",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1,10 +1,10 @@
1
1
  export declare const es: {
2
- v20180416: {
3
- Client: typeof import("./v20180416/es_client").Client;
4
- Models: typeof import("./v20180416/es_models");
5
- };
6
2
  v20250101: {
7
3
  Client: typeof import("./v20250101/es_client").Client;
8
4
  Models: typeof import("./v20250101/es_models");
9
5
  };
6
+ v20180416: {
7
+ Client: typeof import("./v20180416/es_client").Client;
8
+ Models: typeof import("./v20180416/es_models");
9
+ };
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.es = void 0;
4
- const v20180416_1 = require("./v20180416");
5
4
  const v20250101_1 = require("./v20250101");
5
+ const v20180416_1 = require("./v20180416");
6
6
  exports.es = {
7
- v20180416: v20180416_1.v20180416,
8
7
  v20250101: v20250101_1.v20250101,
8
+ v20180416: v20180416_1.v20180416,
9
9
  };
@@ -2803,6 +2803,38 @@ export interface CreateClusterSnapshotRequest {
2803
2803
  * 索引名称
2804
2804
  */
2805
2805
  Indices?: string;
2806
+ /**
2807
+ * 0 腾讯云仓库; 1 客户仓库
2808
+ */
2809
+ EsRepositoryType?: number;
2810
+ /**
2811
+ * 客户快照仓库名称
2812
+ */
2813
+ UserEsRepository?: string;
2814
+ /**
2815
+ * 快照存储周期 单位天,范围[0, INF), 如果没有设置则默认7天
2816
+ */
2817
+ StorageDuration?: number;
2818
+ /**
2819
+ * 备份锁定 0 不锁定; 1 锁定
2820
+ */
2821
+ CosRetention?: number;
2822
+ /**
2823
+ * 锁定截止日期 2022-12-10T08:34:48.000Z
2824
+ */
2825
+ RetainUntilDate?: string;
2826
+ /**
2827
+ * 锁定宽限期,单位天
2828
+ */
2829
+ RetentionGraceTime?: number;
2830
+ /**
2831
+ * 跨地域备份 0 不跨地域; 1 跨地域
2832
+ */
2833
+ RemoteCos?: number;
2834
+ /**
2835
+ * 跨地域备份地域名称 ap-guangzhou
2836
+ */
2837
+ RemoteCosRegion?: string;
2806
2838
  }
2807
2839
  /**
2808
2840
  * DeleteLogstashPipelines请求参数结构体
@@ -3099,14 +3131,26 @@ export interface CosBackup {
3099
3131
  * 自动备份执行时间(精确到小时), e.g. "22:00"
3100
3132
  */
3101
3133
  BackupTime: string;
3134
+ /**
3135
+ * 备份快照前缀
3136
+ */
3137
+ SnapshotName?: string;
3102
3138
  /**
3103
3139
  * 0 腾讯云仓库; 1 客户仓库
3104
3140
  */
3105
3141
  EsRepositoryType?: number;
3142
+ /**
3143
+ * 托管快照仓库名称
3144
+ */
3145
+ PaasEsRepository?: string;
3106
3146
  /**
3107
3147
  * 客户快照仓库名称
3108
3148
  */
3109
3149
  UserEsRepository?: string;
3150
+ /**
3151
+ * cos存储文件夹目录
3152
+ */
3153
+ CosBasePath?: string;
3110
3154
  /**
3111
3155
  * 快照存储周期 单位天
3112
3156
  */
@@ -3115,6 +3159,38 @@ export interface CosBackup {
3115
3159
  * 自动备份频率单位小时
3116
3160
  */
3117
3161
  AutoBackupInterval?: number;
3162
+ /**
3163
+ * 备份锁定 0 不锁定; 1 锁定
3164
+ */
3165
+ CosRetention?: number;
3166
+ /**
3167
+ * 锁定截止日期 2022-12-10T08:34:48.000Z
3168
+ */
3169
+ RetainUntilDate?: string;
3170
+ /**
3171
+ * 锁定宽限期
3172
+ */
3173
+ RetentionGraceTime?: number;
3174
+ /**
3175
+ * 跨地域备份 0 不跨地域; 1 跨地域
3176
+ */
3177
+ RemoteCos?: number;
3178
+ /**
3179
+ * 跨地域备份地域名称 ap-guangzhou
3180
+ */
3181
+ RemoteCosRegion?: string;
3182
+ /**
3183
+ * 策略名称
3184
+ */
3185
+ StrategyName?: string;
3186
+ /**
3187
+ * 备份索引列表,如果不填表示备份所有索引
3188
+ */
3189
+ Indices?: string;
3190
+ /**
3191
+ * 策略创建时间
3192
+ */
3193
+ CreateTime?: string;
3118
3194
  }
3119
3195
  /**
3120
3196
  * DescribeLogstashPipelines返回参数结构体
@@ -4531,6 +4607,76 @@ export interface Snapshots {
4531
4607
  注意:此字段可能返回 null,表示取不到有效值。
4532
4608
  */
4533
4609
  UserBackUp?: string;
4610
+ /**
4611
+ * 0 腾讯云仓库; 1 客户仓库
4612
+ 注意:此字段可能返回 null,表示取不到有效值。
4613
+ */
4614
+ EsRepositoryType?: number;
4615
+ /**
4616
+ * 托管快照仓库名称
4617
+ 注意:此字段可能返回 null,表示取不到有效值。
4618
+ */
4619
+ PaasEsRepository?: string;
4620
+ /**
4621
+ * 客户快照仓库名称
4622
+ 注意:此字段可能返回 null,表示取不到有效值。
4623
+ */
4624
+ UserEsRepository?: string;
4625
+ /**
4626
+ * 快照存储周期 单位天,范围[0, INF), 如果没有设置则默认7天
4627
+ 注意:此字段可能返回 null,表示取不到有效值。
4628
+ */
4629
+ StorageDuration?: number;
4630
+ /**
4631
+ * 自动备份频率, 如果是0,则等效24
4632
+ 注意:此字段可能返回 null,表示取不到有效值。
4633
+ */
4634
+ AutoBackupInterval?: number;
4635
+ /**
4636
+ * 备份锁定 0 不锁定; 1 锁定
4637
+ 注意:此字段可能返回 null,表示取不到有效值。
4638
+ */
4639
+ CosRetention?: number;
4640
+ /**
4641
+ * 锁定截止日期 2022-12-10T08:34:48.000Z
4642
+ 注意:此字段可能返回 null,表示取不到有效值。
4643
+ */
4644
+ RetainUntilDate?: string;
4645
+ /**
4646
+ * 锁定宽限期,单位天
4647
+ 注意:此字段可能返回 null,表示取不到有效值。
4648
+ */
4649
+ RetentionGraceTime?: number;
4650
+ /**
4651
+ * 是否已经备份锁定 0 不锁定; 1 锁定
4652
+ 注意:此字段可能返回 null,表示取不到有效值。
4653
+ */
4654
+ IsLocked?: number;
4655
+ /**
4656
+ * 跨地域备份 0 不跨地域; 1 跨地域
4657
+ 注意:此字段可能返回 null,表示取不到有效值。
4658
+ */
4659
+ RemoteCos?: number;
4660
+ /**
4661
+ * 跨地域备份地域名称 ap-guangzhou
4662
+ 注意:此字段可能返回 null,表示取不到有效值。
4663
+ */
4664
+ RemoteCosRegion?: string;
4665
+ /**
4666
+ * 备份加密 0 不加密; 1 加密
4667
+ 注意:此字段可能返回 null,表示取不到有效值。
4668
+ */
4669
+ CosEncryption?: number;
4670
+ /**
4671
+ * kms密钥
4672
+ 注意:此字段可能返回 null,表示取不到有效值。
4673
+ */
4674
+ KmsKey?: string;
4675
+ /**
4676
+ * 策略名称
4677
+ 注意:此字段可能返回 null,表示取不到有效值。
4678
+ */
4679
+ StrategyName?: string;
4534
4680
  }
4535
4681
  /**
4536
4682
  * UpdateJdk返回参数结构体