tencentcloud-sdk-nodejs-cfs 4.0.434 → 4.0.439
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/CHANGELOG.md +1500 -0
- package/SERVICE_CHANGELOG.md +1633 -40
- package/package.json +1 -1
- package/products.md +51 -51
- package/src/services/cfs/v20190719/cfs_client.ts +253 -103
- package/src/services/cfs/v20190719/cfs_models.ts +1008 -313
- package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +79 -31
- package/tencentcloud/services/cfs/v20190719/cfs_client.js +117 -45
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +753 -168
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
-
import { DeleteCfsFileSystemResponse,
|
|
2
|
+
import { DeleteCfsFileSystemResponse, DescribeCfsFileSystemsRequest, DeleteMountTargetRequest, CreateCfsRuleRequest, DescribeAvailableZoneInfoResponse, UpdateCfsFileSystemNameRequest, DeleteCfsSnapshotResponse, DescribeCfsPGroupsResponse, DescribeCfsFileSystemClientsResponse, DescribeSnapshotOperationLogsResponse, UpdateCfsRuleRequest, DeleteAutoSnapshotPolicyResponse, CreateCfsSnapshotRequest, DescribeSnapshotOperationLogsRequest, DeleteCfsRuleResponse, DescribeCfsSnapshotOverviewResponse, DeleteCfsRuleRequest, DeleteMountTargetResponse, UpdateCfsPGroupRequest, UpdateCfsRuleResponse, DescribeCfsFileSystemsResponse, DescribeAutoSnapshotPoliciesResponse, CreateCfsFileSystemResponse, DescribeMountTargetsResponse, BindAutoSnapshotPolicyRequest, DescribeCfsFileSystemClientsRequest, DeleteCfsSnapshotRequest, DescribeCfsPGroupsRequest, CreateCfsPGroupRequest, DeleteCfsPGroupResponse, DescribeCfsSnapshotsResponse, DescribeAutoSnapshotPoliciesRequest, DeleteCfsFileSystemRequest, UpdateCfsSnapshotAttributeRequest, CreateCfsFileSystemRequest, DescribeMountTargetsRequest, CreateCfsPGroupResponse, UpdateCfsFileSystemPGroupRequest, UpdateCfsFileSystemNameResponse, DescribeCfsServiceStatusRequest, UpdateCfsSnapshotAttributeResponse, UnbindAutoSnapshotPolicyRequest, SignUpCfsServiceResponse, DescribeCfsServiceStatusResponse, CreateCfsRuleResponse, CreateAutoSnapshotPolicyResponse, UpdateCfsFileSystemPGroupResponse, DescribeCfsRulesRequest, BindAutoSnapshotPolicyResponse, DescribeCfsSnapshotsRequest, UpdateCfsFileSystemSizeLimitResponse, DeleteCfsPGroupRequest, UpdateAutoSnapshotPolicyRequest, DescribeCfsSnapshotOverviewRequest, UnbindAutoSnapshotPolicyResponse, UpdateCfsFileSystemSizeLimitRequest, DescribeAvailableZoneInfoRequest, UpdateCfsPGroupResponse, DescribeCfsRulesResponse, SignUpCfsServiceRequest, DeleteAutoSnapshotPolicyRequest, CreateAutoSnapshotPolicyRequest, UpdateAutoSnapshotPolicyResponse, CreateCfsSnapshotResponse } from "./cfs_models";
|
|
3
3
|
/**
|
|
4
4
|
* cfs client
|
|
5
5
|
* @class
|
|
@@ -7,21 +7,45 @@ import { DeleteCfsFileSystemResponse, UpdateCfsRuleRequest, DescribeCfsFileSyste
|
|
|
7
7
|
export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
8
8
|
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* 本接口(DescribeCfsRules)用于查询权限组规则列表。
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
DescribeCfsRules(req: DescribeCfsRulesRequest, cb?: (error: string, rep: DescribeCfsRulesResponse) => void): Promise<DescribeCfsRulesResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* 本接口(UpdateCfsFileSystemPGroup)用于更新文件系统所使用的权限组
|
|
15
|
+
*/
|
|
16
|
+
UpdateCfsFileSystemPGroup(req: UpdateCfsFileSystemPGroupRequest, cb?: (error: string, rep: UpdateCfsFileSystemPGroupResponse) => void): Promise<UpdateCfsFileSystemPGroupResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* 本接口(SignUpCfsService)用于开通CFS服务。
|
|
19
|
+
*/
|
|
20
|
+
SignUpCfsService(req?: SignUpCfsServiceRequest, cb?: (error: string, rep: SignUpCfsServiceResponse) => void): Promise<SignUpCfsServiceResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* 删除文件系统快照
|
|
23
|
+
*/
|
|
24
|
+
DeleteCfsSnapshot(req: DeleteCfsSnapshotRequest, cb?: (error: string, rep: DeleteCfsSnapshotResponse) => void): Promise<DeleteCfsSnapshotResponse>;
|
|
13
25
|
/**
|
|
14
26
|
* 本接口(DescribeCfsPGroups)用于查询权限组列表。
|
|
15
27
|
*/
|
|
16
28
|
DescribeCfsPGroups(req?: DescribeCfsPGroupsRequest, cb?: (error: string, rep: DescribeCfsPGroupsResponse) => void): Promise<DescribeCfsPGroupsResponse>;
|
|
17
29
|
/**
|
|
18
|
-
*
|
|
30
|
+
* 查询文件系统快照d定期策略列表信息
|
|
19
31
|
*/
|
|
20
|
-
|
|
32
|
+
DescribeAutoSnapshotPolicies(req: DescribeAutoSnapshotPoliciesRequest, cb?: (error: string, rep: DescribeAutoSnapshotPoliciesResponse) => void): Promise<DescribeAutoSnapshotPoliciesResponse>;
|
|
21
33
|
/**
|
|
22
|
-
*
|
|
34
|
+
* 文件系统绑定快照策略,可以同时绑定多个fs,一个fs 只能跟一个策略绑定
|
|
23
35
|
*/
|
|
24
|
-
|
|
36
|
+
BindAutoSnapshotPolicy(req: BindAutoSnapshotPolicyRequest, cb?: (error: string, rep: BindAutoSnapshotPolicyResponse) => void): Promise<BindAutoSnapshotPolicyResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* 本接口(DeleteCfsPGroup)用于删除权限组。
|
|
39
|
+
*/
|
|
40
|
+
DeleteCfsPGroup(req: DeleteCfsPGroupRequest, cb?: (error: string, rep: DeleteCfsPGroupResponse) => void): Promise<DeleteCfsPGroupResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* 查询挂载该文件系统的客户端。此功能需要客户端安装CFS监控插件。
|
|
43
|
+
*/
|
|
44
|
+
DescribeCfsFileSystemClients(req: DescribeCfsFileSystemClientsRequest, cb?: (error: string, rep: DescribeCfsFileSystemClientsResponse) => void): Promise<DescribeCfsFileSystemClientsResponse>;
|
|
45
|
+
/**
|
|
46
|
+
* 本接口(DescribeCfsServiceStatus)用于查询用户使用CFS的服务状态。
|
|
47
|
+
*/
|
|
48
|
+
DescribeCfsServiceStatus(req?: DescribeCfsServiceStatusRequest, cb?: (error: string, rep: DescribeCfsServiceStatusResponse) => void): Promise<DescribeCfsServiceStatusResponse>;
|
|
25
49
|
/**
|
|
26
50
|
* 本接口(DescribeAvailableZoneInfo)用于查询区域的可用情况。
|
|
27
51
|
*/
|
|
@@ -30,60 +54,84 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
30
54
|
* 本接口(UpdateCfsFileSystemName)用于更新文件系统名
|
|
31
55
|
*/
|
|
32
56
|
UpdateCfsFileSystemName(req: UpdateCfsFileSystemNameRequest, cb?: (error: string, rep: UpdateCfsFileSystemNameResponse) => void): Promise<UpdateCfsFileSystemNameResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* 本接口(UpdateCfsFileSystemSizeLimit)用于更新文件系统存储容量限制。
|
|
59
|
+
*/
|
|
60
|
+
UpdateCfsFileSystemSizeLimit(req: UpdateCfsFileSystemSizeLimitRequest, cb?: (error: string, rep: UpdateCfsFileSystemSizeLimitResponse) => void): Promise<UpdateCfsFileSystemSizeLimitResponse>;
|
|
33
61
|
/**
|
|
34
62
|
* 用于删除文件系统
|
|
35
63
|
*/
|
|
36
64
|
DeleteCfsFileSystem(req: DeleteCfsFileSystemRequest, cb?: (error: string, rep: DeleteCfsFileSystemResponse) => void): Promise<DeleteCfsFileSystemResponse>;
|
|
37
65
|
/**
|
|
38
|
-
*
|
|
66
|
+
* 用于添加新文件系统
|
|
39
67
|
*/
|
|
40
|
-
|
|
68
|
+
CreateCfsFileSystem(req: CreateCfsFileSystemRequest, cb?: (error: string, rep: CreateCfsFileSystemResponse) => void): Promise<CreateCfsFileSystemResponse>;
|
|
41
69
|
/**
|
|
42
|
-
*
|
|
70
|
+
* 更新文件系统快照名称及保留时长
|
|
43
71
|
*/
|
|
44
|
-
|
|
72
|
+
UpdateCfsSnapshotAttribute(req: UpdateCfsSnapshotAttributeRequest, cb?: (error: string, rep: UpdateCfsSnapshotAttributeResponse) => void): Promise<UpdateCfsSnapshotAttributeResponse>;
|
|
45
73
|
/**
|
|
46
|
-
*
|
|
74
|
+
* 文件系统快照概览
|
|
47
75
|
*/
|
|
48
|
-
|
|
76
|
+
DescribeCfsSnapshotOverview(req?: DescribeCfsSnapshotOverviewRequest, cb?: (error: string, rep: DescribeCfsSnapshotOverviewResponse) => void): Promise<DescribeCfsSnapshotOverviewResponse>;
|
|
49
77
|
/**
|
|
50
|
-
*
|
|
78
|
+
* 更新定期自动快照策略
|
|
51
79
|
*/
|
|
52
|
-
|
|
80
|
+
UpdateAutoSnapshotPolicy(req: UpdateAutoSnapshotPolicyRequest, cb?: (error: string, rep: UpdateAutoSnapshotPolicyResponse) => void): Promise<UpdateAutoSnapshotPolicyResponse>;
|
|
53
81
|
/**
|
|
54
82
|
* 本接口(DescribeCfsFileSystems)用于查询文件系统
|
|
55
83
|
*/
|
|
56
84
|
DescribeCfsFileSystems(req: DescribeCfsFileSystemsRequest, cb?: (error: string, rep: DescribeCfsFileSystemsResponse) => void): Promise<DescribeCfsFileSystemsResponse>;
|
|
57
85
|
/**
|
|
58
|
-
*
|
|
86
|
+
* 查询文件系统快照列表
|
|
59
87
|
*/
|
|
60
|
-
|
|
88
|
+
DescribeCfsSnapshots(req: DescribeCfsSnapshotsRequest, cb?: (error: string, rep: DescribeCfsSnapshotsResponse) => void): Promise<DescribeCfsSnapshotsResponse>;
|
|
61
89
|
/**
|
|
62
|
-
* 本接口(
|
|
90
|
+
* 本接口(DescribeMountTargets)用于查询文件系统挂载点信息
|
|
63
91
|
*/
|
|
64
|
-
|
|
92
|
+
DescribeMountTargets(req: DescribeMountTargetsRequest, cb?: (error: string, rep: DescribeMountTargetsResponse) => void): Promise<DescribeMountTargetsResponse>;
|
|
65
93
|
/**
|
|
66
|
-
* 本接口(
|
|
94
|
+
* 本接口(DeleteCfsRule)用于删除权限组规则。
|
|
67
95
|
*/
|
|
68
|
-
|
|
96
|
+
DeleteCfsRule(req: DeleteCfsRuleRequest, cb?: (error: string, rep: DeleteCfsRuleResponse) => void): Promise<DeleteCfsRuleResponse>;
|
|
69
97
|
/**
|
|
70
|
-
* 本接口(
|
|
98
|
+
* 本接口(DeleteMountTarget)用于删除挂载点
|
|
71
99
|
*/
|
|
72
|
-
|
|
100
|
+
DeleteMountTarget(req: DeleteMountTargetRequest, cb?: (error: string, rep: DeleteMountTargetResponse) => void): Promise<DeleteMountTargetResponse>;
|
|
73
101
|
/**
|
|
74
|
-
*
|
|
102
|
+
* 创建定期快照策略
|
|
75
103
|
*/
|
|
76
|
-
|
|
104
|
+
CreateAutoSnapshotPolicy(req: CreateAutoSnapshotPolicyRequest, cb?: (error: string, rep: CreateAutoSnapshotPolicyResponse) => void): Promise<CreateAutoSnapshotPolicyResponse>;
|
|
77
105
|
/**
|
|
78
|
-
* 本接口(
|
|
106
|
+
* 本接口(CreateCfsPGroup)用于创建权限组
|
|
79
107
|
*/
|
|
80
|
-
|
|
108
|
+
CreateCfsPGroup(req: CreateCfsPGroupRequest, cb?: (error: string, rep: CreateCfsPGroupResponse) => void): Promise<CreateCfsPGroupResponse>;
|
|
81
109
|
/**
|
|
82
|
-
*
|
|
110
|
+
* 删除快照定期策略
|
|
83
111
|
*/
|
|
84
|
-
|
|
112
|
+
DeleteAutoSnapshotPolicy(req: DeleteAutoSnapshotPolicyRequest, cb?: (error: string, rep: DeleteAutoSnapshotPolicyResponse) => void): Promise<DeleteAutoSnapshotPolicyResponse>;
|
|
85
113
|
/**
|
|
86
|
-
*
|
|
114
|
+
* 创建文件系统快照
|
|
87
115
|
*/
|
|
88
|
-
|
|
116
|
+
CreateCfsSnapshot(req: CreateCfsSnapshotRequest, cb?: (error: string, rep: CreateCfsSnapshotResponse) => void): Promise<CreateCfsSnapshotResponse>;
|
|
117
|
+
/**
|
|
118
|
+
* 解除文件系统绑定的快照策略
|
|
119
|
+
*/
|
|
120
|
+
UnbindAutoSnapshotPolicy(req: UnbindAutoSnapshotPolicyRequest, cb?: (error: string, rep: UnbindAutoSnapshotPolicyResponse) => void): Promise<UnbindAutoSnapshotPolicyResponse>;
|
|
121
|
+
/**
|
|
122
|
+
* 查询快照操作日志
|
|
123
|
+
*/
|
|
124
|
+
DescribeSnapshotOperationLogs(req: DescribeSnapshotOperationLogsRequest, cb?: (error: string, rep: DescribeSnapshotOperationLogsResponse) => void): Promise<DescribeSnapshotOperationLogsResponse>;
|
|
125
|
+
/**
|
|
126
|
+
* 本接口(CreateCfsRule)用于创建权限组规则。
|
|
127
|
+
*/
|
|
128
|
+
CreateCfsRule(req: CreateCfsRuleRequest, cb?: (error: string, rep: CreateCfsRuleResponse) => void): Promise<CreateCfsRuleResponse>;
|
|
129
|
+
/**
|
|
130
|
+
* 本接口(UpdateCfsRule)用于更新权限规则。
|
|
131
|
+
*/
|
|
132
|
+
UpdateCfsRule(req: UpdateCfsRuleRequest, cb?: (error: string, rep: UpdateCfsRuleResponse) => void): Promise<UpdateCfsRuleResponse>;
|
|
133
|
+
/**
|
|
134
|
+
* 本接口(UpdateCfsPGroup)更新权限组信息。
|
|
135
|
+
*/
|
|
136
|
+
UpdateCfsPGroup(req: UpdateCfsPGroupRequest, cb?: (error: string, rep: UpdateCfsPGroupResponse) => void): Promise<UpdateCfsPGroupResponse>;
|
|
89
137
|
}
|
|
@@ -28,10 +28,28 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
super("cfs.tencentcloudapi.com", "2019-07-19", clientConfig);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 本接口(DescribeCfsRules)用于查询权限组规则列表。
|
|
32
32
|
*/
|
|
33
|
-
async
|
|
34
|
-
return this.request("
|
|
33
|
+
async DescribeCfsRules(req, cb) {
|
|
34
|
+
return this.request("DescribeCfsRules", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 本接口(UpdateCfsFileSystemPGroup)用于更新文件系统所使用的权限组
|
|
38
|
+
*/
|
|
39
|
+
async UpdateCfsFileSystemPGroup(req, cb) {
|
|
40
|
+
return this.request("UpdateCfsFileSystemPGroup", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 本接口(SignUpCfsService)用于开通CFS服务。
|
|
44
|
+
*/
|
|
45
|
+
async SignUpCfsService(req, cb) {
|
|
46
|
+
return this.request("SignUpCfsService", req, cb);
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* 删除文件系统快照
|
|
50
|
+
*/
|
|
51
|
+
async DeleteCfsSnapshot(req, cb) {
|
|
52
|
+
return this.request("DeleteCfsSnapshot", req, cb);
|
|
35
53
|
}
|
|
36
54
|
/**
|
|
37
55
|
* 本接口(DescribeCfsPGroups)用于查询权限组列表。
|
|
@@ -40,16 +58,34 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
40
58
|
return this.request("DescribeCfsPGroups", req, cb);
|
|
41
59
|
}
|
|
42
60
|
/**
|
|
43
|
-
*
|
|
61
|
+
* 查询文件系统快照d定期策略列表信息
|
|
44
62
|
*/
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
63
|
+
async DescribeAutoSnapshotPolicies(req, cb) {
|
|
64
|
+
return this.request("DescribeAutoSnapshotPolicies", req, cb);
|
|
47
65
|
}
|
|
48
66
|
/**
|
|
49
|
-
*
|
|
67
|
+
* 文件系统绑定快照策略,可以同时绑定多个fs,一个fs 只能跟一个策略绑定
|
|
50
68
|
*/
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
69
|
+
async BindAutoSnapshotPolicy(req, cb) {
|
|
70
|
+
return this.request("BindAutoSnapshotPolicy", req, cb);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* 本接口(DeleteCfsPGroup)用于删除权限组。
|
|
74
|
+
*/
|
|
75
|
+
async DeleteCfsPGroup(req, cb) {
|
|
76
|
+
return this.request("DeleteCfsPGroup", req, cb);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* 查询挂载该文件系统的客户端。此功能需要客户端安装CFS监控插件。
|
|
80
|
+
*/
|
|
81
|
+
async DescribeCfsFileSystemClients(req, cb) {
|
|
82
|
+
return this.request("DescribeCfsFileSystemClients", req, cb);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* 本接口(DescribeCfsServiceStatus)用于查询用户使用CFS的服务状态。
|
|
86
|
+
*/
|
|
87
|
+
async DescribeCfsServiceStatus(req, cb) {
|
|
88
|
+
return this.request("DescribeCfsServiceStatus", req, cb);
|
|
53
89
|
}
|
|
54
90
|
/**
|
|
55
91
|
* 本接口(DescribeAvailableZoneInfo)用于查询区域的可用情况。
|
|
@@ -63,6 +99,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
63
99
|
async UpdateCfsFileSystemName(req, cb) {
|
|
64
100
|
return this.request("UpdateCfsFileSystemName", req, cb);
|
|
65
101
|
}
|
|
102
|
+
/**
|
|
103
|
+
* 本接口(UpdateCfsFileSystemSizeLimit)用于更新文件系统存储容量限制。
|
|
104
|
+
*/
|
|
105
|
+
async UpdateCfsFileSystemSizeLimit(req, cb) {
|
|
106
|
+
return this.request("UpdateCfsFileSystemSizeLimit", req, cb);
|
|
107
|
+
}
|
|
66
108
|
/**
|
|
67
109
|
* 用于删除文件系统
|
|
68
110
|
*/
|
|
@@ -70,28 +112,28 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
70
112
|
return this.request("DeleteCfsFileSystem", req, cb);
|
|
71
113
|
}
|
|
72
114
|
/**
|
|
73
|
-
*
|
|
115
|
+
* 用于添加新文件系统
|
|
74
116
|
*/
|
|
75
|
-
async
|
|
76
|
-
return this.request("
|
|
117
|
+
async CreateCfsFileSystem(req, cb) {
|
|
118
|
+
return this.request("CreateCfsFileSystem", req, cb);
|
|
77
119
|
}
|
|
78
120
|
/**
|
|
79
|
-
*
|
|
121
|
+
* 更新文件系统快照名称及保留时长
|
|
80
122
|
*/
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
123
|
+
async UpdateCfsSnapshotAttribute(req, cb) {
|
|
124
|
+
return this.request("UpdateCfsSnapshotAttribute", req, cb);
|
|
83
125
|
}
|
|
84
126
|
/**
|
|
85
|
-
*
|
|
127
|
+
* 文件系统快照概览
|
|
86
128
|
*/
|
|
87
|
-
async
|
|
88
|
-
return this.request("
|
|
129
|
+
async DescribeCfsSnapshotOverview(req, cb) {
|
|
130
|
+
return this.request("DescribeCfsSnapshotOverview", req, cb);
|
|
89
131
|
}
|
|
90
132
|
/**
|
|
91
|
-
*
|
|
133
|
+
* 更新定期自动快照策略
|
|
92
134
|
*/
|
|
93
|
-
async
|
|
94
|
-
return this.request("
|
|
135
|
+
async UpdateAutoSnapshotPolicy(req, cb) {
|
|
136
|
+
return this.request("UpdateAutoSnapshotPolicy", req, cb);
|
|
95
137
|
}
|
|
96
138
|
/**
|
|
97
139
|
* 本接口(DescribeCfsFileSystems)用于查询文件系统
|
|
@@ -100,52 +142,82 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
100
142
|
return this.request("DescribeCfsFileSystems", req, cb);
|
|
101
143
|
}
|
|
102
144
|
/**
|
|
103
|
-
*
|
|
145
|
+
* 查询文件系统快照列表
|
|
104
146
|
*/
|
|
105
|
-
async
|
|
106
|
-
return this.request("
|
|
147
|
+
async DescribeCfsSnapshots(req, cb) {
|
|
148
|
+
return this.request("DescribeCfsSnapshots", req, cb);
|
|
107
149
|
}
|
|
108
150
|
/**
|
|
109
|
-
* 本接口(
|
|
151
|
+
* 本接口(DescribeMountTargets)用于查询文件系统挂载点信息
|
|
110
152
|
*/
|
|
111
|
-
async
|
|
112
|
-
return this.request("
|
|
153
|
+
async DescribeMountTargets(req, cb) {
|
|
154
|
+
return this.request("DescribeMountTargets", req, cb);
|
|
113
155
|
}
|
|
114
156
|
/**
|
|
115
|
-
* 本接口(
|
|
157
|
+
* 本接口(DeleteCfsRule)用于删除权限组规则。
|
|
116
158
|
*/
|
|
117
|
-
async
|
|
118
|
-
return this.request("
|
|
159
|
+
async DeleteCfsRule(req, cb) {
|
|
160
|
+
return this.request("DeleteCfsRule", req, cb);
|
|
119
161
|
}
|
|
120
162
|
/**
|
|
121
|
-
* 本接口(
|
|
163
|
+
* 本接口(DeleteMountTarget)用于删除挂载点
|
|
122
164
|
*/
|
|
123
|
-
async
|
|
124
|
-
return this.request("
|
|
165
|
+
async DeleteMountTarget(req, cb) {
|
|
166
|
+
return this.request("DeleteMountTarget", req, cb);
|
|
125
167
|
}
|
|
126
168
|
/**
|
|
127
|
-
*
|
|
169
|
+
* 创建定期快照策略
|
|
128
170
|
*/
|
|
129
|
-
async
|
|
130
|
-
return this.request("
|
|
171
|
+
async CreateAutoSnapshotPolicy(req, cb) {
|
|
172
|
+
return this.request("CreateAutoSnapshotPolicy", req, cb);
|
|
131
173
|
}
|
|
132
174
|
/**
|
|
133
|
-
* 本接口(
|
|
175
|
+
* 本接口(CreateCfsPGroup)用于创建权限组
|
|
134
176
|
*/
|
|
135
|
-
async
|
|
136
|
-
return this.request("
|
|
177
|
+
async CreateCfsPGroup(req, cb) {
|
|
178
|
+
return this.request("CreateCfsPGroup", req, cb);
|
|
137
179
|
}
|
|
138
180
|
/**
|
|
139
|
-
*
|
|
181
|
+
* 删除快照定期策略
|
|
140
182
|
*/
|
|
141
|
-
async
|
|
142
|
-
return this.request("
|
|
183
|
+
async DeleteAutoSnapshotPolicy(req, cb) {
|
|
184
|
+
return this.request("DeleteAutoSnapshotPolicy", req, cb);
|
|
143
185
|
}
|
|
144
186
|
/**
|
|
145
|
-
*
|
|
187
|
+
* 创建文件系统快照
|
|
146
188
|
*/
|
|
147
|
-
async
|
|
148
|
-
return this.request("
|
|
189
|
+
async CreateCfsSnapshot(req, cb) {
|
|
190
|
+
return this.request("CreateCfsSnapshot", req, cb);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* 解除文件系统绑定的快照策略
|
|
194
|
+
*/
|
|
195
|
+
async UnbindAutoSnapshotPolicy(req, cb) {
|
|
196
|
+
return this.request("UnbindAutoSnapshotPolicy", req, cb);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* 查询快照操作日志
|
|
200
|
+
*/
|
|
201
|
+
async DescribeSnapshotOperationLogs(req, cb) {
|
|
202
|
+
return this.request("DescribeSnapshotOperationLogs", req, cb);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* 本接口(CreateCfsRule)用于创建权限组规则。
|
|
206
|
+
*/
|
|
207
|
+
async CreateCfsRule(req, cb) {
|
|
208
|
+
return this.request("CreateCfsRule", req, cb);
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* 本接口(UpdateCfsRule)用于更新权限规则。
|
|
212
|
+
*/
|
|
213
|
+
async UpdateCfsRule(req, cb) {
|
|
214
|
+
return this.request("UpdateCfsRule", req, cb);
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* 本接口(UpdateCfsPGroup)更新权限组信息。
|
|
218
|
+
*/
|
|
219
|
+
async UpdateCfsPGroup(req, cb) {
|
|
220
|
+
return this.request("UpdateCfsPGroup", req, cb);
|
|
149
221
|
}
|
|
150
222
|
}
|
|
151
223
|
exports.Client = Client;
|