tencentcloud-sdk-nodejs-cfs 4.1.306 → 4.1.314
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
|
@@ -363,11 +363,11 @@ export interface FileSystemClient {
|
|
|
363
363
|
*/
|
|
364
364
|
export interface DescribeCfsFileSystemsResponse {
|
|
365
365
|
/**
|
|
366
|
-
*
|
|
366
|
+
* <p>文件系统信息</p>
|
|
367
367
|
*/
|
|
368
368
|
FileSystems?: Array<FileSystemInfo>;
|
|
369
369
|
/**
|
|
370
|
-
*
|
|
370
|
+
* <p>文件系统总数</p>
|
|
371
371
|
*/
|
|
372
372
|
TotalCount?: number;
|
|
373
373
|
/**
|
|
@@ -2090,6 +2090,18 @@ export interface FileSystemInfo {
|
|
|
2090
2090
|
* <p>业务场景。</p><p>枚举值:</p><ul><li>AgentSandbox: 创建 AgentCFS</li></ul>
|
|
2091
2091
|
*/
|
|
2092
2092
|
Scenario?: string;
|
|
2093
|
+
/**
|
|
2094
|
+
* <p>过满删除容量占比,0.0 表示关闭</p><p>取值范围:[0.0, 1.0]</p>
|
|
2095
|
+
*/
|
|
2096
|
+
FullDeleteCapacityUsage?: number;
|
|
2097
|
+
/**
|
|
2098
|
+
* <p>过满删除最小存活时间,单位秒</p><p>单位:秒</p>
|
|
2099
|
+
*/
|
|
2100
|
+
FullDeleteMinTtl?: number;
|
|
2101
|
+
/**
|
|
2102
|
+
* <p>过期删除 TTL,单位秒,0 表示关闭</p><p>单位:秒</p>
|
|
2103
|
+
*/
|
|
2104
|
+
ExpireDeleteTtl?: number;
|
|
2093
2105
|
}
|
|
2094
2106
|
/**
|
|
2095
2107
|
* DescribeDataFlow请求参数结构体
|
|
@@ -2348,29 +2360,37 @@ export interface DescribeCfsSnapshotsResponse {
|
|
|
2348
2360
|
*/
|
|
2349
2361
|
export interface DescribeCfsFileSystemsRequest {
|
|
2350
2362
|
/**
|
|
2351
|
-
*
|
|
2363
|
+
* <p>文件系统 ID</p>
|
|
2352
2364
|
*/
|
|
2353
2365
|
FileSystemId?: string;
|
|
2354
2366
|
/**
|
|
2355
|
-
*
|
|
2367
|
+
* <p>私有网络(VPC) ID</p>
|
|
2356
2368
|
*/
|
|
2357
2369
|
VpcId?: string;
|
|
2358
2370
|
/**
|
|
2359
|
-
*
|
|
2371
|
+
* <p>子网 ID</p>
|
|
2360
2372
|
*/
|
|
2361
2373
|
SubnetId?: string;
|
|
2362
2374
|
/**
|
|
2363
|
-
* Offset 分页码,默认0
|
|
2375
|
+
* <p>Offset 分页码,默认0</p>
|
|
2364
2376
|
*/
|
|
2365
2377
|
Offset?: number;
|
|
2366
2378
|
/**
|
|
2367
|
-
* Limit 页面大小,默认10
|
|
2379
|
+
* <p>Limit 页面大小,默认10</p>
|
|
2368
2380
|
*/
|
|
2369
2381
|
Limit?: number;
|
|
2370
2382
|
/**
|
|
2371
|
-
*
|
|
2383
|
+
* <p>用户自定义名称</p>
|
|
2372
2384
|
*/
|
|
2373
2385
|
CreationToken?: string;
|
|
2386
|
+
/**
|
|
2387
|
+
* <p>过滤条件。<br><br><li>Protocol - Array of String - 是否必填:否 -(过滤条件)按协议过滤。(NFS | CIFS | TURBO) </li><br><br><li>StorageType - Array of String - 是否必填:否 -(过滤条件)按存储类型过滤。(SD | HP | TB | TP | THP) </li><br><br><li>LifeCycleState - Array of String - 是否必填:否 -(过滤条件)按生命周期过滤。(creating | create_failed | available | deleting | delete_failed | upgrading | unserviced | expanding) </li><br><br><li>Zone - Array of String - 是否必填:否 -(过滤条件)按可用区过滤。(例如:ap-guangzhou-3) </li><br><br><li>IpAddress - Array of String - 是否必填:否 -(过滤条件)按导出点IP地址过滤。(例如:10.0.0.3) </li><br><br><li>PGroupId - Array of String - 是否必填:否 -(过滤条件)按权限组ID过滤。(例如:pgroup-xxxxxrxt) </li><br><br><li>PGroupName - Array of String - 是否必填:否 -(过滤条件)按权限组名称过滤。(例如:默认权限组) </li><br><br><li>Scenario- Array of String - 是否必填:否 -(过滤条件)按权限组名称过滤。(例如:AgentSandbox) </li></p>
|
|
2388
|
+
*/
|
|
2389
|
+
Filters?: Array<Filter>;
|
|
2390
|
+
/**
|
|
2391
|
+
* <p>标签</p>
|
|
2392
|
+
*/
|
|
2393
|
+
Tags?: Array<TagInfo>;
|
|
2374
2394
|
}
|
|
2375
2395
|
/**
|
|
2376
2396
|
* 版本控制-区域数组
|