tencentcloud-sdk-nodejs-cdwdoris 4.1.71 → 4.1.75

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.71",
3
+ "version": "4.1.75",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -166,13 +166,17 @@ export interface ModifyUserPrivilegesV3Request {
166
166
  */
167
167
  WhiteHost?: string;
168
168
  /**
169
- * 更新类型,默认0,1为更新绑定计算组
169
+ * 更新类型,默认0,1为更新绑定计算组,2为更新默认计算组
170
170
  */
171
171
  UpdateType?: number;
172
172
  /**
173
173
  * 需绑定计算组列表
174
174
  */
175
175
  UpdateComputeGroups?: Array<string>;
176
+ /**
177
+ * 默认计算组
178
+ */
179
+ DefaultComputeGroup?: string;
176
180
  }
177
181
  /**
178
182
  * DestroyInstance请求参数结构体
@@ -1251,6 +1255,10 @@ export interface DescribeSqlApisRequest {
1251
1255
  * 表名
1252
1256
  */
1253
1257
  TableName?: string;
1258
+ /**
1259
+ * 用户名列表
1260
+ */
1261
+ UserNames?: Array<string>;
1254
1262
  }
1255
1263
  /**
1256
1264
  * ModifySecurityGroups请求参数结构体
@@ -1655,26 +1663,31 @@ export interface CreateBackUpScheduleRequest {
1655
1663
  BackUpTables?: Array<BackupTableContent>;
1656
1664
  /**
1657
1665
  * 0为默认。1时是对远端的doris进行备份,不周期,一次性
1666
+ * @deprecated
1658
1667
  */
1659
1668
  BackupType?: number;
1660
1669
  /**
1661
1670
  * 远端doris集群的连接信息
1671
+ * @deprecated
1662
1672
  */
1663
1673
  DorisSourceInfo?: DorisSourceInfo;
1664
1674
  /**
1665
- * 0为默认。1时是一次性备份。2时是远端备份
1675
+ * 0为周期备份。1时是立即备份。3时是定时备份。
1666
1676
  */
1667
1677
  BackupTimeType?: number;
1668
1678
  /**
1669
1679
  * 0为默认。1时是备份完成后立即恢复
1680
+ * @deprecated
1670
1681
  */
1671
1682
  RestoreType?: number;
1672
1683
  /**
1673
1684
  * 0为默认。1时是提供自定义的secret连接cos
1685
+ * @deprecated
1674
1686
  */
1675
1687
  AuthType?: number;
1676
1688
  /**
1677
1689
  * cos认证的信息
1690
+ * @deprecated
1678
1691
  */
1679
1692
  CosSourceInfo?: CosSourceInfo;
1680
1693
  /**
@@ -1696,6 +1709,14 @@ export interface CreateBackUpScheduleRequest {
1696
1709
  * 当前任务的cos桶信息
1697
1710
  */
1698
1711
  CosBucket?: string;
1712
+ /**
1713
+ * 快照保留策略
1714
+ */
1715
+ SnapshotRemainPolicy?: SnapshotRemainPolicy;
1716
+ /**
1717
+ * 备份数据所在地域,当前地域应该为空
1718
+ */
1719
+ DataRemoteRegion?: string;
1699
1720
  }
1700
1721
  /**
1701
1722
  * ActionAlterUser返回参数结构体
@@ -2157,6 +2178,10 @@ export interface InstanceNode {
2157
2178
  * 可用区
2158
2179
  */
2159
2180
  Zone?: string;
2181
+ /**
2182
+ * 虚拟可用区
2183
+ */
2184
+ VirtualZone?: string;
2160
2185
  /**
2161
2186
  * 创建时间
2162
2187
  */
@@ -2241,6 +2266,10 @@ export interface NodeInfo {
2241
2266
  * 创建时间
2242
2267
  */
2243
2268
  CreateTime?: string;
2269
+ /**
2270
+ * 虚拟可用区
2271
+ */
2272
+ VirtualZone?: string;
2244
2273
  }
2245
2274
  /**
2246
2275
  * 前端规则描述
@@ -2627,6 +2656,23 @@ export interface CreateCoolDownPolicyResponse {
2627
2656
  */
2628
2657
  RequestId?: string;
2629
2658
  }
2659
+ /**
2660
+ * 备份快照保留策略
2661
+ */
2662
+ export interface SnapshotRemainPolicy {
2663
+ /**
2664
+ * 0-不主动删除;1-超过指定时间周期自动删除;2-保留指定数据快照
2665
+ */
2666
+ Type?: number;
2667
+ /**
2668
+ * 保留快照的时间
2669
+ */
2670
+ RemainDays?: number;
2671
+ /**
2672
+ * 保留最新快照的数量
2673
+ */
2674
+ RemainLatestNum?: number;
2675
+ }
2630
2676
  /**
2631
2677
  * ModifyWorkloadGroup返回参数结构体
2632
2678
  */
@@ -3115,6 +3161,10 @@ export interface BackupCosInfo {
3115
3161
  * 备份文件名称
3116
3162
  */
3117
3163
  SnapShotPath?: string;
3164
+ /**
3165
+ * cos桶所在地域
3166
+ */
3167
+ Region?: string;
3118
3168
  }
3119
3169
  /**
3120
3170
  * 冷热分层backend节点信息
@@ -3565,6 +3615,10 @@ export interface RestoreStatus {
3565
3615
  * 实例对应snapshot的id
3566
3616
  */
3567
3617
  TaskId?: number;
3618
+ /**
3619
+ * 恢复任务id
3620
+ */
3621
+ ID?: number;
3568
3622
  }
3569
3623
  /**
3570
3624
  * DeleteBackUpData返回参数结构体
@@ -3676,6 +3730,10 @@ export interface BackUpJobDisplay {
3676
3730
  * 错误原因
3677
3731
  */
3678
3732
  ErrorReason?: string;
3733
+ /**
3734
+ * 快照保留策略
3735
+ */
3736
+ SnapshotRemainPolicy?: SnapshotRemainPolicy;
3679
3737
  }
3680
3738
  /**
3681
3739
  * ModifyUserBindWorkloadGroup返回参数结构体
@@ -4104,6 +4162,10 @@ export interface NodeInfos {
4104
4162
  * rip
4105
4163
  */
4106
4164
  RIp?: string;
4165
+ /**
4166
+ * 虚拟可用区
4167
+ */
4168
+ VirtualZone?: string;
4107
4169
  }
4108
4170
  /**
4109
4171
  * DescribeInstanceNodesInfo返回参数结构体