tencentcloud-sdk-nodejs-cdwdoris 4.1.216 → 4.1.233

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-cdwdoris",
3
- "version": "4.1.216",
3
+ "version": "4.1.233",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -346,6 +346,80 @@ export interface WorkloadGroupConfig {
346
346
  */
347
347
  CpuHardLimit?: string;
348
348
  }
349
+ /**
350
+ * 备份、迁移任务信息
351
+ */
352
+ export interface BackupScheduleInfo {
353
+ /**
354
+ * 迁移类型:
355
+ 1-远端集群迁移;2-COS迁移
356
+ */
357
+ BackupType?: number;
358
+ /**
359
+ * 当前任务现存实例数
360
+ */
361
+ ExistCount?: number;
362
+ /**
363
+ * cos信息
364
+ */
365
+ CosSourceInfo?: string;
366
+ /**
367
+ * doris信息
368
+ */
369
+ DorisSourceInfo?: string;
370
+ /**
371
+ * 恢复类型
372
+ */
373
+ RestoreType?: number;
374
+ /**
375
+ * 快照保留策略
376
+ */
377
+ SnapshotRemainPolicy?: SnapshotRemainPolicy;
378
+ /**
379
+ * 远程备份地域
380
+ */
381
+ DataRemoteRegion?: string;
382
+ /**
383
+ * 是否在宽限期内
384
+ */
385
+ IsWithinGracePeriod?: boolean;
386
+ /**
387
+ * 宽限期(天数)
388
+ */
389
+ GracePeriod?: number;
390
+ /**
391
+ * 宽限开始时间
392
+ */
393
+ GraceStartTime?: string;
394
+ /**
395
+ * 托管桶类型:standard-标准,多可用区-MAZ
396
+ */
397
+ BucketType?: string;
398
+ /**
399
+ * 是否开启安全锁:0-未开启,1-已开启
400
+ */
401
+ EnableSecurityLock?: number;
402
+ /**
403
+ * 实例ID
404
+ */
405
+ InstanceId?: string;
406
+ /**
407
+ * 实例名
408
+ */
409
+ InstanceName?: string;
410
+ /**
411
+ * 实例状态
412
+ */
413
+ InstanceStatus?: string;
414
+ /**
415
+ * 实例状态描述
416
+ */
417
+ InstanceStatusDesc?: string;
418
+ /**
419
+ * 桶加密状态信息
420
+ */
421
+ BucketEncryption?: BucketEncryptionInfo;
422
+ }
349
423
  /**
350
424
  * DescribeInstances返回参数结构体
351
425
  */
@@ -2121,11 +2195,27 @@ export interface ModifyInstanceKeyValConfigsResponse {
2121
2195
  */
2122
2196
  export interface DescribeBackUpSchedulesResponse {
2123
2197
  /**
2124
- * 当前系统时间
2198
+ * <p>备份是否开启</p>
2199
+ */
2200
+ BackUpOpened?: boolean;
2201
+ /**
2202
+ * <p>备份桶</p>
2203
+ */
2204
+ CosBucketName?: string;
2205
+ /**
2206
+ * <p>备份的状态</p>
2207
+ */
2208
+ BackUpStatus?: number;
2209
+ /**
2210
+ * <p>备份、迁移任务信息</p>
2211
+ */
2212
+ BackupScheduleInfos?: Array<BackupScheduleInfo>;
2213
+ /**
2214
+ * <p>当前系统时间</p>
2125
2215
  */
2126
2216
  CurrentTime?: string;
2127
2217
  /**
2128
- * 桶加密状态信息
2218
+ * <p>桶加密状态信息</p>
2129
2219
  */
2130
2220
  BucketEncryption?: BucketEncryptionInfo;
2131
2221
  /**
@@ -2701,18 +2791,43 @@ export interface DescribeInstancesRequest {
2701
2791
  */
2702
2792
  export interface DescribeBackUpSchedulesRequest {
2703
2793
  /**
2704
- * 任务类型
2705
- 0-不限制,或使用TypeFilters过滤;
2706
- 1-备份恢复(包括周期备份和一次性备份);
2707
- 2-数据迁移(包括跨集群迁移和cos迁移)
2794
+ * <p>任务类型<br>0-不限制,或使用TypeFilters过滤;<br>1-备份恢复(包括周期备份和一次性备份);<br>2-数据迁移(包括跨集群迁移和cos迁移)</p>
2708
2795
  */
2709
2796
  ApplicationType?: number;
2710
2797
  /**
2711
- * 0-未加密;1-已加密
2798
+ * <p>创建人过滤器</p>
2799
+ */
2800
+ UsersFilters?: Array<string>;
2801
+ /**
2802
+ * <p>任务类型过滤器。<br>0-周期;<br>1-一次性;<br>2-数据迁移(即3和4的合集);<br>3-远端集群迁移;<br>4-COS迁移</p>
2803
+ */
2804
+ TypeFilters?: Array<number | bigint>;
2805
+ /**
2806
+ * <p>任务状态过滤器</p>
2807
+ */
2808
+ StatusFilters?: Array<number | bigint>;
2809
+ /**
2810
+ * <p>排序:<br>DESC-降序<br>ASC-升序</p>
2811
+ */
2812
+ OrderType?: string;
2813
+ /**
2814
+ * <p>任务名过滤器</p>
2815
+ */
2816
+ ScheduleNameFilters?: string;
2817
+ /**
2818
+ * <p>分页大小</p>
2819
+ */
2820
+ PageSize?: number;
2821
+ /**
2822
+ * <p>页号</p>
2823
+ */
2824
+ PageNum?: number;
2825
+ /**
2826
+ * <p>0-未加密;1-已加密</p>
2712
2827
  */
2713
2828
  EncryptionFilters?: Array<number | bigint>;
2714
2829
  /**
2715
- * 调度任务id过滤
2830
+ * <p>调度任务id过滤</p>
2716
2831
  */
2717
2832
  ScheduleId?: number;
2718
2833
  }
@@ -2856,19 +2971,19 @@ export interface DescribeInstanceResponse {
2856
2971
  */
2857
2972
  export interface DescribeBackUpJobResponse {
2858
2973
  /**
2859
- * 任务列表
2974
+ * <p>任务列表</p>
2860
2975
  */
2861
2976
  BackUpJobs?: Array<BackUpJobDisplay>;
2862
2977
  /**
2863
- * 错误信息
2978
+ * <p>错误信息</p>
2864
2979
  */
2865
2980
  ErrorMsg?: string;
2866
2981
  /**
2867
- * 总数
2982
+ * <p>总数</p>
2868
2983
  */
2869
2984
  TotalCount?: number;
2870
2985
  /**
2871
- * 当前时间
2986
+ * <p>当前时间</p>
2872
2987
  */
2873
2988
  CurrentTime?: string;
2874
2989
  /**
@@ -4208,38 +4323,51 @@ export interface DescribeInstanceRequest {
4208
4323
  */
4209
4324
  export interface DescribeBackUpJobRequest {
4210
4325
  /**
4211
- * 集群id
4326
+ * <p>集群id</p>
4212
4327
  */
4213
4328
  InstanceId: string;
4214
4329
  /**
4215
- * 任务类型:
4216
- 0-不限制,或使用TypeFilters过滤;
4217
- 1-备份恢复(包括周期备份和一次性备份);
4218
- 2-数据迁移(包括跨集群迁移和cos迁移)
4330
+ * <p>任务类型:<br>0-不限制,或使用TypeFilters过滤;<br>1-备份恢复(包括周期备份和一次性备份);<br>2-数据迁移(包括跨集群迁移和cos迁移)</p>
4219
4331
  */
4220
4332
  ApplicationType?: number;
4221
4333
  /**
4222
- * 分页大小
4334
+ * <p>任务类型过滤器</p>
4335
+ */
4336
+ TypeFilters?: Array<number | bigint>;
4337
+ /**
4338
+ * <p>实例状态过滤器</p>
4339
+ */
4340
+ StatusFilters?: Array<number | bigint>;
4341
+ /**
4342
+ * <p>任务名称过滤器</p>
4343
+ */
4344
+ ScheduleNameFilters?: string;
4345
+ /**
4346
+ * <p>按照快照生成时间排序,默认DESC:<br>ASC-升序<br>DESC-降序</p>
4347
+ */
4348
+ OrderType?: string;
4349
+ /**
4350
+ * <p>分页大小</p>
4223
4351
  */
4224
4352
  PageSize?: number;
4225
4353
  /**
4226
- * 页号
4354
+ * <p>页号</p>
4227
4355
  */
4228
4356
  PageNum?: number;
4229
4357
  /**
4230
- * 开始时间
4358
+ * <p>开始时间</p>
4231
4359
  */
4232
4360
  BeginTime?: string;
4233
4361
  /**
4234
- * 结束时间
4362
+ * <p>结束时间</p>
4235
4363
  */
4236
4364
  EndTime?: string;
4237
4365
  /**
4238
- * jobid的string类型
4366
+ * <p>jobid的string类型</p>
4239
4367
  */
4240
4368
  JobIdFiltersStr?: string;
4241
4369
  /**
4242
- * 0-未加密;1-已加密
4370
+ * <p>0-未加密;1-已加密</p>
4243
4371
  */
4244
4372
  EncryptionFilters?: Array<number | bigint>;
4245
4373
  }