tencentcloud-sdk-nodejs-cfs 4.1.167 → 4.1.175
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
|
@@ -125,6 +125,10 @@ export interface CreateLifecycleDataTaskRequest {
|
|
|
125
125
|
* 数据流动 ID ,该接口可以通过 DescribeDataFlow 查询
|
|
126
126
|
*/
|
|
127
127
|
DataFlowId?: string;
|
|
128
|
+
/**
|
|
129
|
+
* 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。 ture:覆盖 false:不覆盖(同时也不会释放热存数据) 为空时,默认为false
|
|
130
|
+
*/
|
|
131
|
+
IsOverwrite?: boolean;
|
|
128
132
|
}
|
|
129
133
|
/**
|
|
130
134
|
* DescribeCfsPGroups返回参数结构体
|
|
@@ -1418,6 +1422,28 @@ export interface LifecycleRule {
|
|
|
1418
1422
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1419
1423
|
*/
|
|
1420
1424
|
FileMinSize?: string;
|
|
1425
|
+
/**
|
|
1426
|
+
* 策略类型
|
|
1427
|
+
*/
|
|
1428
|
+
PolicyType?: string;
|
|
1429
|
+
/**
|
|
1430
|
+
* 阈值范围[10-90]
|
|
1431
|
+
*/
|
|
1432
|
+
ExpireThreshold?: number;
|
|
1433
|
+
/**
|
|
1434
|
+
* 阈值范围[10-90]
|
|
1435
|
+
*/
|
|
1436
|
+
TargetThreshold?: number;
|
|
1437
|
+
/**
|
|
1438
|
+
* 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。
|
|
1439
|
+
|
|
1440
|
+
ture:覆盖
|
|
1441
|
+
|
|
1442
|
+
false:不覆盖(同时也不会释放热存数据)
|
|
1443
|
+
|
|
1444
|
+
为空时,默认为false
|
|
1445
|
+
*/
|
|
1446
|
+
IsOverwrite?: boolean;
|
|
1421
1447
|
}
|
|
1422
1448
|
/**
|
|
1423
1449
|
* 文件系统配额信息
|
|
@@ -1658,6 +1684,15 @@ export interface LifecycleDataTaskInfo {
|
|
|
1658
1684
|
* 数据流动Id
|
|
1659
1685
|
*/
|
|
1660
1686
|
DataFlowId?: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* 当CFSTurbo内的文件和外置存储存在同名情况时,是否覆盖。
|
|
1689
|
+
|
|
1690
|
+
ture:覆盖
|
|
1691
|
+
|
|
1692
|
+
false:不覆盖(同时也不会释放热存数据)
|
|
1693
|
+
为空时,默认为false
|
|
1694
|
+
*/
|
|
1695
|
+
IsOverwrite?: boolean;
|
|
1661
1696
|
}
|
|
1662
1697
|
/**
|
|
1663
1698
|
* DescribeLifecyclePolicies返回参数结构体
|
|
@@ -2695,6 +2730,10 @@ export interface PathInfo {
|
|
|
2695
2730
|
* 目录绝对路径
|
|
2696
2731
|
*/
|
|
2697
2732
|
Path: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* 数据流动Id
|
|
2735
|
+
*/
|
|
2736
|
+
DataFlowId?: string;
|
|
2698
2737
|
}
|
|
2699
2738
|
/**
|
|
2700
2739
|
* SetUserQuota返回参数结构体
|