tencentcloud-sdk-nodejs-cfs 4.1.138 → 4.1.139
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
|
@@ -1296,6 +1296,34 @@ export interface DataFlowInfo {
|
|
|
1296
1296
|
* 文件系统 ID
|
|
1297
1297
|
*/
|
|
1298
1298
|
FileSystemId?: string;
|
|
1299
|
+
/**
|
|
1300
|
+
* 0:不开启自动更新
|
|
1301
|
+
|
|
1302
|
+
1:开启自动更新
|
|
1303
|
+
*/
|
|
1304
|
+
AutoRefresh?: number;
|
|
1305
|
+
/**
|
|
1306
|
+
* KafkaConsumer 消费时使用的Topic参数
|
|
1307
|
+
*/
|
|
1308
|
+
UserKafkaTopic?: string;
|
|
1309
|
+
/**
|
|
1310
|
+
* 服务地址
|
|
1311
|
+
*/
|
|
1312
|
+
ServerAddr?: string;
|
|
1313
|
+
/**
|
|
1314
|
+
* Kafka消费用户名
|
|
1315
|
+
*/
|
|
1316
|
+
UserName?: string;
|
|
1317
|
+
/**
|
|
1318
|
+
* 自动刷新的状态,available:已生效
|
|
1319
|
+
pending:配置中
|
|
1320
|
+
unavailable:失效
|
|
1321
|
+
*/
|
|
1322
|
+
AutoRefreshStatus?: string;
|
|
1323
|
+
/**
|
|
1324
|
+
* 自动刷新开启时间
|
|
1325
|
+
*/
|
|
1326
|
+
AutoRefreshTime?: string;
|
|
1299
1327
|
}
|
|
1300
1328
|
/**
|
|
1301
1329
|
* 版本控制-类型数组
|
|
@@ -1360,29 +1388,29 @@ export interface CreateCfsSnapshotResponse {
|
|
|
1360
1388
|
*/
|
|
1361
1389
|
export interface LifecycleRule {
|
|
1362
1390
|
/**
|
|
1363
|
-
*
|
|
1391
|
+
* 数据转储后的存储类型。其中:InfrequentAccess:低频介质存储;ColdStorage:冷存储。
|
|
1364
1392
|
*/
|
|
1365
1393
|
StorageType: string;
|
|
1366
1394
|
/**
|
|
1367
|
-
*
|
|
1395
|
+
* 数据转储文件类型。其中,BIG_FILE:超大文件;STD_FILE:普通文件;SMALL_FILE:小文件;ALL:所有文件。
|
|
1368
1396
|
*/
|
|
1369
1397
|
FileType: string;
|
|
1370
1398
|
/**
|
|
1371
|
-
*
|
|
1399
|
+
* 数据转储行为。其中,Archive:沉降;Noarchive:不沉降。
|
|
1372
1400
|
*/
|
|
1373
1401
|
Action: string;
|
|
1374
1402
|
/**
|
|
1375
|
-
*
|
|
1403
|
+
* 数据转储触发时间。由“DEFAULT_ATIME_”与“数字”组成,单位为天。当 Action 为 Noarchive,请保持为空。
|
|
1376
1404
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1377
1405
|
*/
|
|
1378
1406
|
Interval?: string;
|
|
1379
1407
|
/**
|
|
1380
|
-
*
|
|
1408
|
+
* 数据转储文件最大规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
1381
1409
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1382
1410
|
*/
|
|
1383
1411
|
FileMaxSize?: string;
|
|
1384
1412
|
/**
|
|
1385
|
-
*
|
|
1413
|
+
* 数据转储文件最小规格。其数值需使用“数字+单位”格式进行表示,单位支持K(KiB)、M(MiB)、G(GiB)。
|
|
1386
1414
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1387
1415
|
*/
|
|
1388
1416
|
FileMinSize?: string;
|