tencentcloud-sdk-nodejs-cfs 4.0.431 → 4.0.434
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 +251 -1
- package/SERVICE_CHANGELOG.md +162 -62
- package/package.json +1 -1
- package/products.md +11 -11
- package/src/services/cfs/index.ts +4 -7
- package/src/services/cfs/v20190719/cfs_client.ts +251 -195
- package/src/services/cfs/v20190719/cfs_models.ts +863 -911
- package/src/services/cfs/v20190719/index.ts +3 -3
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +364 -364
- package/tencentcloud/services/cfs/v20190719/index.js +1 -1
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export interface DeleteCfsFileSystemResponse {
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7
|
+
*/
|
|
8
8
|
RequestId?: string;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
@@ -12,24 +12,24 @@ export interface DeleteCfsFileSystemResponse {
|
|
|
12
12
|
*/
|
|
13
13
|
export interface AvailableZone {
|
|
14
14
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
* 可用区名称
|
|
16
|
+
*/
|
|
17
17
|
Zone: string;
|
|
18
18
|
/**
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
* 可用区ID
|
|
20
|
+
*/
|
|
21
21
|
ZoneId: number;
|
|
22
22
|
/**
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
* 可用区中文名称
|
|
24
|
+
*/
|
|
25
25
|
ZoneCnName: string;
|
|
26
26
|
/**
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
* Type数组
|
|
28
|
+
*/
|
|
29
29
|
Types: Array<AvailableType>;
|
|
30
30
|
/**
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
* 可用区中英文名称
|
|
32
|
+
*/
|
|
33
33
|
ZoneName: string;
|
|
34
34
|
}
|
|
35
35
|
/**
|
|
@@ -37,28 +37,28 @@ export interface AvailableZone {
|
|
|
37
37
|
*/
|
|
38
38
|
export interface UpdateCfsRuleRequest {
|
|
39
39
|
/**
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
* 权限组 ID
|
|
41
|
+
*/
|
|
42
42
|
PGroupId: string;
|
|
43
43
|
/**
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
* 规则 ID
|
|
45
|
+
*/
|
|
46
46
|
RuleId: string;
|
|
47
47
|
/**
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
* 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
|
|
49
|
+
*/
|
|
50
50
|
AuthClientIp?: string;
|
|
51
51
|
/**
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
* 读写权限, 值为RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
|
|
53
|
+
*/
|
|
54
54
|
RWPermission?: string;
|
|
55
55
|
/**
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
* 用户权限,值为all_squash、no_all_squash、root_squash、no_root_squash。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。不填默认为root_squash。
|
|
57
|
+
*/
|
|
58
58
|
UserPermission?: string;
|
|
59
59
|
/**
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
* 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
|
|
61
|
+
*/
|
|
62
62
|
Priority?: number;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
@@ -66,16 +66,16 @@ export interface UpdateCfsRuleRequest {
|
|
|
66
66
|
*/
|
|
67
67
|
export interface DescribeCfsFileSystemsRequest {
|
|
68
68
|
/**
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
* 文件系统 ID
|
|
70
|
+
*/
|
|
71
71
|
FileSystemId?: string;
|
|
72
72
|
/**
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
* 私有网络(VPC) ID
|
|
74
|
+
*/
|
|
75
75
|
VpcId?: string;
|
|
76
76
|
/**
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
* 子网 ID
|
|
78
|
+
*/
|
|
79
79
|
SubnetId?: string;
|
|
80
80
|
}
|
|
81
81
|
/**
|
|
@@ -83,12 +83,12 @@ export interface DescribeCfsFileSystemsRequest {
|
|
|
83
83
|
*/
|
|
84
84
|
export interface DeleteMountTargetRequest {
|
|
85
85
|
/**
|
|
86
|
-
|
|
87
|
-
|
|
86
|
+
* 文件系统 ID
|
|
87
|
+
*/
|
|
88
88
|
FileSystemId: string;
|
|
89
89
|
/**
|
|
90
|
-
|
|
91
|
-
|
|
90
|
+
* 挂载点 ID
|
|
91
|
+
*/
|
|
92
92
|
MountTargetId: string;
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
@@ -96,24 +96,24 @@ export interface DeleteMountTargetRequest {
|
|
|
96
96
|
*/
|
|
97
97
|
export interface CreateCfsRuleRequest {
|
|
98
98
|
/**
|
|
99
|
-
|
|
100
|
-
|
|
99
|
+
* 权限组 ID
|
|
100
|
+
*/
|
|
101
101
|
PGroupId: string;
|
|
102
102
|
/**
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
* 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
|
|
104
|
+
*/
|
|
105
105
|
AuthClientIp: string;
|
|
106
106
|
/**
|
|
107
|
-
|
|
108
|
-
|
|
107
|
+
* 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
|
|
108
|
+
*/
|
|
109
109
|
Priority: number;
|
|
110
110
|
/**
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
* 读写权限, 值为 RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
|
|
112
|
+
*/
|
|
113
113
|
RWPermission?: string;
|
|
114
114
|
/**
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
* 用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。不填默认为root_squash。
|
|
116
|
+
*/
|
|
117
117
|
UserPermission?: string;
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
@@ -121,12 +121,12 @@ export interface CreateCfsRuleRequest {
|
|
|
121
121
|
*/
|
|
122
122
|
export interface PGroup {
|
|
123
123
|
/**
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
* 权限组ID
|
|
125
|
+
*/
|
|
126
126
|
PGroupId: string;
|
|
127
127
|
/**
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
* 权限组名称
|
|
129
|
+
*/
|
|
130
130
|
Name: string;
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
@@ -134,12 +134,12 @@ export interface PGroup {
|
|
|
134
134
|
*/
|
|
135
135
|
export interface DescribeAvailableZoneInfoResponse {
|
|
136
136
|
/**
|
|
137
|
-
|
|
138
|
-
|
|
137
|
+
* 各可用区的资源售卖情况以及支持的存储类型、存储协议等信息
|
|
138
|
+
*/
|
|
139
139
|
RegionZones: Array<AvailableRegion>;
|
|
140
140
|
/**
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
142
|
+
*/
|
|
143
143
|
RequestId?: string;
|
|
144
144
|
}
|
|
145
145
|
/**
|
|
@@ -147,20 +147,20 @@ export interface DescribeAvailableZoneInfoResponse {
|
|
|
147
147
|
*/
|
|
148
148
|
export interface UpdateCfsFileSystemNameResponse {
|
|
149
149
|
/**
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
* 用户自定义文件系统名称
|
|
151
|
+
*/
|
|
152
152
|
CreationToken: string;
|
|
153
153
|
/**
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
* 文件系统ID
|
|
155
|
+
*/
|
|
156
156
|
FileSystemId: string;
|
|
157
157
|
/**
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
* 用户自定义文件系统名称
|
|
159
|
+
*/
|
|
160
160
|
FsName: string;
|
|
161
161
|
/**
|
|
162
|
-
|
|
163
|
-
|
|
162
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
163
|
+
*/
|
|
164
164
|
RequestId?: string;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
@@ -168,12 +168,12 @@ export interface UpdateCfsFileSystemNameResponse {
|
|
|
168
168
|
*/
|
|
169
169
|
export interface UpdateCfsFileSystemNameRequest {
|
|
170
170
|
/**
|
|
171
|
-
|
|
172
|
-
|
|
171
|
+
* 文件系统 ID
|
|
172
|
+
*/
|
|
173
173
|
FileSystemId: string;
|
|
174
174
|
/**
|
|
175
|
-
|
|
176
|
-
|
|
175
|
+
* 用户自定义文件系统名称
|
|
176
|
+
*/
|
|
177
177
|
FsName?: string;
|
|
178
178
|
}
|
|
179
179
|
/**
|
|
@@ -181,12 +181,12 @@ export interface UpdateCfsFileSystemNameRequest {
|
|
|
181
181
|
*/
|
|
182
182
|
export interface DescribeCfsPGroupsResponse {
|
|
183
183
|
/**
|
|
184
|
-
|
|
185
|
-
|
|
184
|
+
* 权限组信息列表
|
|
185
|
+
*/
|
|
186
186
|
PGroupList: Array<PGroupInfo>;
|
|
187
187
|
/**
|
|
188
|
-
|
|
189
|
-
|
|
188
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
189
|
+
*/
|
|
190
190
|
RequestId?: string;
|
|
191
191
|
}
|
|
192
192
|
/**
|
|
@@ -194,12 +194,12 @@ export interface DescribeCfsPGroupsResponse {
|
|
|
194
194
|
*/
|
|
195
195
|
export interface DescribeCfsFileSystemClientsResponse {
|
|
196
196
|
/**
|
|
197
|
-
|
|
198
|
-
|
|
197
|
+
* 客户端列表
|
|
198
|
+
*/
|
|
199
199
|
ClientList: Array<FileSystemClient>;
|
|
200
200
|
/**
|
|
201
|
-
|
|
202
|
-
|
|
201
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
202
|
+
*/
|
|
203
203
|
RequestId?: string;
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
@@ -207,8 +207,8 @@ export interface DescribeCfsFileSystemClientsResponse {
|
|
|
207
207
|
*/
|
|
208
208
|
export interface DeleteMountTargetResponse {
|
|
209
209
|
/**
|
|
210
|
-
|
|
211
|
-
|
|
210
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
211
|
+
*/
|
|
212
212
|
RequestId?: string;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
@@ -216,16 +216,16 @@ export interface DeleteMountTargetResponse {
|
|
|
216
216
|
*/
|
|
217
217
|
export interface DescribeMountTargetsResponse {
|
|
218
218
|
/**
|
|
219
|
-
|
|
220
|
-
|
|
219
|
+
* 挂载点详情
|
|
220
|
+
*/
|
|
221
221
|
MountTargets: Array<MountInfo>;
|
|
222
222
|
/**
|
|
223
|
-
|
|
224
|
-
|
|
223
|
+
* 挂载点数量
|
|
224
|
+
*/
|
|
225
225
|
NumberOfMountTargets: number;
|
|
226
226
|
/**
|
|
227
|
-
|
|
228
|
-
|
|
227
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
228
|
+
*/
|
|
229
229
|
RequestId?: string;
|
|
230
230
|
}
|
|
231
231
|
/**
|
|
@@ -233,16 +233,16 @@ export interface DescribeMountTargetsResponse {
|
|
|
233
233
|
*/
|
|
234
234
|
export interface DeleteCfsRuleResponse {
|
|
235
235
|
/**
|
|
236
|
-
|
|
237
|
-
|
|
236
|
+
* 规则 ID
|
|
237
|
+
*/
|
|
238
238
|
RuleId: string;
|
|
239
239
|
/**
|
|
240
|
-
|
|
241
|
-
|
|
240
|
+
* 权限组 ID
|
|
241
|
+
*/
|
|
242
242
|
PGroupId: string;
|
|
243
243
|
/**
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
245
|
+
*/
|
|
246
246
|
RequestId?: string;
|
|
247
247
|
}
|
|
248
248
|
/**
|
|
@@ -250,12 +250,12 @@ export interface DeleteCfsRuleResponse {
|
|
|
250
250
|
*/
|
|
251
251
|
export interface DeleteCfsRuleRequest {
|
|
252
252
|
/**
|
|
253
|
-
|
|
254
|
-
|
|
253
|
+
* 权限组 ID
|
|
254
|
+
*/
|
|
255
255
|
PGroupId: string;
|
|
256
256
|
/**
|
|
257
|
-
|
|
258
|
-
|
|
257
|
+
* 规则 ID
|
|
258
|
+
*/
|
|
259
259
|
RuleId: string;
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
@@ -263,16 +263,16 @@ export interface DeleteCfsRuleRequest {
|
|
|
263
263
|
*/
|
|
264
264
|
export interface UpdateCfsPGroupRequest {
|
|
265
265
|
/**
|
|
266
|
-
|
|
267
|
-
|
|
266
|
+
* 权限组 ID
|
|
267
|
+
*/
|
|
268
268
|
PGroupId: string;
|
|
269
269
|
/**
|
|
270
|
-
|
|
271
|
-
|
|
270
|
+
* 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
|
|
271
|
+
*/
|
|
272
272
|
Name?: string;
|
|
273
273
|
/**
|
|
274
|
-
|
|
275
|
-
|
|
274
|
+
* 权限组描述信息,1-255个字符
|
|
275
|
+
*/
|
|
276
276
|
DescInfo?: string;
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
@@ -280,52 +280,52 @@ export interface UpdateCfsPGroupRequest {
|
|
|
280
280
|
*/
|
|
281
281
|
export interface MountInfo {
|
|
282
282
|
/**
|
|
283
|
-
|
|
284
|
-
|
|
283
|
+
* 文件系统 ID
|
|
284
|
+
*/
|
|
285
285
|
FileSystemId: string;
|
|
286
286
|
/**
|
|
287
|
-
|
|
288
|
-
|
|
287
|
+
* 挂载点 ID
|
|
288
|
+
*/
|
|
289
289
|
MountTargetId: string;
|
|
290
290
|
/**
|
|
291
|
-
|
|
292
|
-
|
|
291
|
+
* 挂载点 IP
|
|
292
|
+
*/
|
|
293
293
|
IpAddress: string;
|
|
294
294
|
/**
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
* 挂载根目录
|
|
296
|
+
*/
|
|
297
297
|
FSID: string;
|
|
298
298
|
/**
|
|
299
|
-
|
|
300
|
-
|
|
299
|
+
* 挂载点状态
|
|
300
|
+
*/
|
|
301
301
|
LifeCycleState: string;
|
|
302
302
|
/**
|
|
303
|
-
|
|
304
|
-
|
|
303
|
+
* 网络类型
|
|
304
|
+
*/
|
|
305
305
|
NetworkInterface: string;
|
|
306
306
|
/**
|
|
307
|
-
|
|
308
|
-
|
|
307
|
+
* 私有网络 ID
|
|
308
|
+
*/
|
|
309
309
|
VpcId: string;
|
|
310
310
|
/**
|
|
311
|
-
|
|
312
|
-
|
|
311
|
+
* 私有网络名称
|
|
312
|
+
*/
|
|
313
313
|
VpcName: string;
|
|
314
314
|
/**
|
|
315
|
-
|
|
316
|
-
|
|
315
|
+
* 子网 Id
|
|
316
|
+
*/
|
|
317
317
|
SubnetId: string;
|
|
318
318
|
/**
|
|
319
|
-
|
|
320
|
-
|
|
319
|
+
* 子网名称
|
|
320
|
+
*/
|
|
321
321
|
SubnetName: string;
|
|
322
322
|
/**
|
|
323
|
-
|
|
324
|
-
|
|
323
|
+
* CFS Turbo使用的云联网ID
|
|
324
|
+
*/
|
|
325
325
|
CcnID: string;
|
|
326
326
|
/**
|
|
327
|
-
|
|
328
|
-
|
|
327
|
+
* 云联网中CFS Turbo使用的网段
|
|
328
|
+
*/
|
|
329
329
|
CidrBlock: string;
|
|
330
330
|
}
|
|
331
331
|
/**
|
|
@@ -333,32 +333,32 @@ export interface MountInfo {
|
|
|
333
333
|
*/
|
|
334
334
|
export interface UpdateCfsRuleResponse {
|
|
335
335
|
/**
|
|
336
|
-
|
|
337
|
-
|
|
336
|
+
* 权限组 ID
|
|
337
|
+
*/
|
|
338
338
|
PGroupId: string;
|
|
339
339
|
/**
|
|
340
|
-
|
|
341
|
-
|
|
340
|
+
* 规则 ID
|
|
341
|
+
*/
|
|
342
342
|
RuleId: string;
|
|
343
343
|
/**
|
|
344
|
-
|
|
345
|
-
|
|
344
|
+
* 允许访问的客户端 IP 或者 IP 段
|
|
345
|
+
*/
|
|
346
346
|
AuthClientIp: string;
|
|
347
347
|
/**
|
|
348
|
-
|
|
349
|
-
|
|
348
|
+
* 读写权限
|
|
349
|
+
*/
|
|
350
350
|
RWPermission: string;
|
|
351
351
|
/**
|
|
352
|
-
|
|
353
|
-
|
|
352
|
+
* 用户权限
|
|
353
|
+
*/
|
|
354
354
|
UserPermission: string;
|
|
355
355
|
/**
|
|
356
|
-
|
|
357
|
-
|
|
356
|
+
* 优先级
|
|
357
|
+
*/
|
|
358
358
|
Priority: number;
|
|
359
359
|
/**
|
|
360
|
-
|
|
361
|
-
|
|
360
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
361
|
+
*/
|
|
362
362
|
RequestId?: string;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
@@ -366,28 +366,28 @@ export interface UpdateCfsRuleResponse {
|
|
|
366
366
|
*/
|
|
367
367
|
export interface FileSystemClient {
|
|
368
368
|
/**
|
|
369
|
-
|
|
370
|
-
|
|
369
|
+
* 文件系统IP地址
|
|
370
|
+
*/
|
|
371
371
|
CfsVip: string;
|
|
372
372
|
/**
|
|
373
|
-
|
|
374
|
-
|
|
373
|
+
* 客户端IP地址
|
|
374
|
+
*/
|
|
375
375
|
ClientIp: string;
|
|
376
376
|
/**
|
|
377
|
-
|
|
378
|
-
|
|
377
|
+
* 文件系统所属VPCID
|
|
378
|
+
*/
|
|
379
379
|
VpcId: string;
|
|
380
380
|
/**
|
|
381
|
-
|
|
382
|
-
|
|
381
|
+
* 可用区名称,例如ap-beijing-1,请参考 概览文档中的地域与可用区列表
|
|
382
|
+
*/
|
|
383
383
|
Zone: string;
|
|
384
384
|
/**
|
|
385
|
-
|
|
386
|
-
|
|
385
|
+
* 可用区中文名称
|
|
386
|
+
*/
|
|
387
387
|
ZoneName: string;
|
|
388
388
|
/**
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
* 该文件系统被挂载到客户端上的路径信息
|
|
390
|
+
*/
|
|
391
391
|
MountDirectory: string;
|
|
392
392
|
}
|
|
393
393
|
/**
|
|
@@ -395,16 +395,16 @@ export interface FileSystemClient {
|
|
|
395
395
|
*/
|
|
396
396
|
export interface DescribeCfsFileSystemsResponse {
|
|
397
397
|
/**
|
|
398
|
-
|
|
399
|
-
|
|
398
|
+
* 文件系统信息
|
|
399
|
+
*/
|
|
400
400
|
FileSystems: Array<FileSystemInfo>;
|
|
401
401
|
/**
|
|
402
|
-
|
|
403
|
-
|
|
402
|
+
* 文件系统总数
|
|
403
|
+
*/
|
|
404
404
|
TotalCount: number;
|
|
405
405
|
/**
|
|
406
|
-
|
|
407
|
-
|
|
406
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
407
|
+
*/
|
|
408
408
|
RequestId?: string;
|
|
409
409
|
}
|
|
410
410
|
/**
|
|
@@ -412,40 +412,40 @@ export interface DescribeCfsFileSystemsResponse {
|
|
|
412
412
|
*/
|
|
413
413
|
export interface CreateCfsFileSystemResponse {
|
|
414
414
|
/**
|
|
415
|
-
|
|
416
|
-
|
|
415
|
+
* 文件系统创建时间
|
|
416
|
+
*/
|
|
417
417
|
CreationTime: string;
|
|
418
418
|
/**
|
|
419
|
-
|
|
420
|
-
|
|
419
|
+
* 用户自定义文件系统名称
|
|
420
|
+
*/
|
|
421
421
|
CreationToken: string;
|
|
422
422
|
/**
|
|
423
|
-
|
|
424
|
-
|
|
423
|
+
* 文件系统 ID
|
|
424
|
+
*/
|
|
425
425
|
FileSystemId: string;
|
|
426
426
|
/**
|
|
427
|
-
|
|
428
|
-
|
|
427
|
+
* 文件系统状态,可能出现状态包括:“creating” 创建中, “create_failed” 创建失败, “available” 可用, “unserviced” 不可用, “upgrading” 升级中, “deleting” 删除中。
|
|
428
|
+
*/
|
|
429
429
|
LifeCycleState: string;
|
|
430
430
|
/**
|
|
431
|
-
|
|
432
|
-
|
|
431
|
+
* 文件系统已使用容量大小,单位为 Byte
|
|
432
|
+
*/
|
|
433
433
|
SizeByte: number;
|
|
434
434
|
/**
|
|
435
|
-
|
|
436
|
-
|
|
435
|
+
* 可用区 ID
|
|
436
|
+
*/
|
|
437
437
|
ZoneId: number;
|
|
438
438
|
/**
|
|
439
|
-
|
|
440
|
-
|
|
439
|
+
* 用户自定义文件系统名称
|
|
440
|
+
*/
|
|
441
441
|
FsName: string;
|
|
442
442
|
/**
|
|
443
|
-
|
|
444
|
-
|
|
443
|
+
* 文件系统是否加密
|
|
444
|
+
*/
|
|
445
445
|
Encrypted: boolean;
|
|
446
446
|
/**
|
|
447
|
-
|
|
448
|
-
|
|
447
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
448
|
+
*/
|
|
449
449
|
RequestId?: string;
|
|
450
450
|
}
|
|
451
451
|
/**
|
|
@@ -453,84 +453,84 @@ export interface CreateCfsFileSystemResponse {
|
|
|
453
453
|
*/
|
|
454
454
|
export interface FileSystemInfo {
|
|
455
455
|
/**
|
|
456
|
-
|
|
457
|
-
|
|
456
|
+
* 创建时间
|
|
457
|
+
*/
|
|
458
458
|
CreationTime: string;
|
|
459
459
|
/**
|
|
460
|
-
|
|
461
|
-
|
|
460
|
+
* 用户自定义名称
|
|
461
|
+
*/
|
|
462
462
|
CreationToken: string;
|
|
463
463
|
/**
|
|
464
|
-
|
|
465
|
-
|
|
464
|
+
* 文件系统 ID
|
|
465
|
+
*/
|
|
466
466
|
FileSystemId: string;
|
|
467
467
|
/**
|
|
468
|
-
|
|
469
|
-
|
|
468
|
+
* 文件系统状态
|
|
469
|
+
*/
|
|
470
470
|
LifeCycleState: string;
|
|
471
471
|
/**
|
|
472
|
-
|
|
473
|
-
|
|
472
|
+
* 文件系统已使用容量
|
|
473
|
+
*/
|
|
474
474
|
SizeByte: number;
|
|
475
475
|
/**
|
|
476
|
-
|
|
477
|
-
|
|
476
|
+
* 文件系统最大空间限制
|
|
477
|
+
*/
|
|
478
478
|
SizeLimit: number;
|
|
479
479
|
/**
|
|
480
|
-
|
|
481
|
-
|
|
480
|
+
* 区域 ID
|
|
481
|
+
*/
|
|
482
482
|
ZoneId: number;
|
|
483
483
|
/**
|
|
484
|
-
|
|
485
|
-
|
|
484
|
+
* 区域名称
|
|
485
|
+
*/
|
|
486
486
|
Zone: string;
|
|
487
487
|
/**
|
|
488
|
-
|
|
489
|
-
|
|
488
|
+
* 文件系统协议类型
|
|
489
|
+
*/
|
|
490
490
|
Protocol: string;
|
|
491
491
|
/**
|
|
492
|
-
|
|
493
|
-
|
|
492
|
+
* 文件系统存储类型
|
|
493
|
+
*/
|
|
494
494
|
StorageType: string;
|
|
495
495
|
/**
|
|
496
|
-
|
|
497
|
-
|
|
496
|
+
* 文件系统绑定的预付费存储包
|
|
497
|
+
*/
|
|
498
498
|
StorageResourcePkg: string;
|
|
499
499
|
/**
|
|
500
|
-
|
|
501
|
-
|
|
500
|
+
* 文件系统绑定的预付费带宽包(暂未支持)
|
|
501
|
+
*/
|
|
502
502
|
BandwidthResourcePkg: string;
|
|
503
503
|
/**
|
|
504
|
-
|
|
505
|
-
|
|
504
|
+
* 文件系统绑定权限组信息
|
|
505
|
+
*/
|
|
506
506
|
PGroup: PGroup;
|
|
507
507
|
/**
|
|
508
|
-
|
|
509
|
-
|
|
508
|
+
* 用户自定义名称
|
|
509
|
+
*/
|
|
510
510
|
FsName: string;
|
|
511
511
|
/**
|
|
512
|
-
|
|
513
|
-
|
|
512
|
+
* 文件系统是否加密
|
|
513
|
+
*/
|
|
514
514
|
Encrypted: boolean;
|
|
515
515
|
/**
|
|
516
|
-
|
|
517
|
-
|
|
516
|
+
* 加密所使用的密钥,可以为密钥的 ID 或者 ARN
|
|
517
|
+
*/
|
|
518
518
|
KmsKeyId: string;
|
|
519
519
|
/**
|
|
520
|
-
|
|
521
|
-
|
|
520
|
+
* 应用ID
|
|
521
|
+
*/
|
|
522
522
|
AppId: number;
|
|
523
523
|
/**
|
|
524
|
-
|
|
525
|
-
|
|
524
|
+
* 文件系统吞吐上限,吞吐上限是根据文件系统当前已使用存储量、绑定的存储资源包以及吞吐资源包一同确定
|
|
525
|
+
*/
|
|
526
526
|
BandwidthLimit: number;
|
|
527
527
|
/**
|
|
528
|
-
|
|
529
|
-
|
|
528
|
+
* 文件系统总容量
|
|
529
|
+
*/
|
|
530
530
|
Capacity: number;
|
|
531
531
|
/**
|
|
532
|
-
|
|
533
|
-
|
|
532
|
+
* 文件系统标签列表
|
|
533
|
+
*/
|
|
534
534
|
Tags: Array<TagInfo>;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
@@ -538,12 +538,12 @@ export interface FileSystemInfo {
|
|
|
538
538
|
*/
|
|
539
539
|
export interface TagInfo {
|
|
540
540
|
/**
|
|
541
|
-
|
|
542
|
-
|
|
541
|
+
* 标签键
|
|
542
|
+
*/
|
|
543
543
|
TagKey: string;
|
|
544
544
|
/**
|
|
545
|
-
|
|
546
|
-
|
|
545
|
+
* 标签值
|
|
546
|
+
*/
|
|
547
547
|
TagValue: string;
|
|
548
548
|
}
|
|
549
549
|
/**
|
|
@@ -555,8 +555,8 @@ export declare type DescribeCfsPGroupsRequest = null;
|
|
|
555
555
|
*/
|
|
556
556
|
export interface DescribeCfsFileSystemClientsRequest {
|
|
557
557
|
/**
|
|
558
|
-
|
|
559
|
-
|
|
558
|
+
* 文件系统 ID。
|
|
559
|
+
*/
|
|
560
560
|
FileSystemId: string;
|
|
561
561
|
}
|
|
562
562
|
/**
|
|
@@ -564,12 +564,12 @@ export interface DescribeCfsFileSystemClientsRequest {
|
|
|
564
564
|
*/
|
|
565
565
|
export interface CreateCfsPGroupRequest {
|
|
566
566
|
/**
|
|
567
|
-
|
|
568
|
-
|
|
567
|
+
* 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
|
|
568
|
+
*/
|
|
569
569
|
Name: string;
|
|
570
570
|
/**
|
|
571
|
-
|
|
572
|
-
|
|
571
|
+
* 权限组描述信息,1-255个字符
|
|
572
|
+
*/
|
|
573
573
|
DescInfo?: string;
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
@@ -577,16 +577,16 @@ export interface CreateCfsPGroupRequest {
|
|
|
577
577
|
*/
|
|
578
578
|
export interface DeleteCfsPGroupResponse {
|
|
579
579
|
/**
|
|
580
|
-
|
|
581
|
-
|
|
580
|
+
* 权限组 ID
|
|
581
|
+
*/
|
|
582
582
|
PGroupId: string;
|
|
583
583
|
/**
|
|
584
|
-
|
|
585
|
-
|
|
584
|
+
* 用户 ID
|
|
585
|
+
*/
|
|
586
586
|
AppId: number;
|
|
587
587
|
/**
|
|
588
|
-
|
|
589
|
-
|
|
588
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
589
|
+
*/
|
|
590
590
|
RequestId?: string;
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
@@ -594,8 +594,8 @@ export interface DeleteCfsPGroupResponse {
|
|
|
594
594
|
*/
|
|
595
595
|
export interface UpdateCfsFileSystemSizeLimitResponse {
|
|
596
596
|
/**
|
|
597
|
-
|
|
598
|
-
|
|
597
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
598
|
+
*/
|
|
599
599
|
RequestId?: string;
|
|
600
600
|
}
|
|
601
601
|
/**
|
|
@@ -607,24 +607,24 @@ export declare type DescribeAvailableZoneInfoRequest = null;
|
|
|
607
607
|
*/
|
|
608
608
|
export interface AvailableRegion {
|
|
609
609
|
/**
|
|
610
|
-
|
|
611
|
-
|
|
610
|
+
* 区域名称,如“ap-beijing”
|
|
611
|
+
*/
|
|
612
612
|
Region: string;
|
|
613
613
|
/**
|
|
614
|
-
|
|
615
|
-
|
|
614
|
+
* 区域名称,如“bj”
|
|
615
|
+
*/
|
|
616
616
|
RegionName: string;
|
|
617
617
|
/**
|
|
618
|
-
|
|
619
|
-
|
|
618
|
+
* 区域可用情况,当区域内至少有一个可用区处于可售状态时,取值为AVAILABLE,否则为UNAVAILABLE
|
|
619
|
+
*/
|
|
620
620
|
RegionStatus: string;
|
|
621
621
|
/**
|
|
622
|
-
|
|
623
|
-
|
|
622
|
+
* 可用区数组
|
|
623
|
+
*/
|
|
624
624
|
Zones: Array<AvailableZone>;
|
|
625
625
|
/**
|
|
626
|
-
|
|
627
|
-
|
|
626
|
+
* 区域中文名称,如“广州”
|
|
627
|
+
*/
|
|
628
628
|
RegionCnName: string;
|
|
629
629
|
}
|
|
630
630
|
/**
|
|
@@ -632,60 +632,60 @@ export interface AvailableRegion {
|
|
|
632
632
|
*/
|
|
633
633
|
export interface CreateCfsFileSystemRequest {
|
|
634
634
|
/**
|
|
635
|
-
|
|
636
|
-
|
|
635
|
+
* 可用区名称,例如ap-beijing-1,请参考 [概览](https://cloud.tencent.com/document/product/582/13225) 文档中的地域与可用区列表
|
|
636
|
+
*/
|
|
637
637
|
Zone: string;
|
|
638
638
|
/**
|
|
639
|
-
|
|
640
|
-
|
|
639
|
+
* 网络类型,可选值为 VPC,BASIC,CCN;其中 VPC 为私有网络,BASIC 为基础网络, CCN 为云联网,Turbo系列当前必须选择云联网。目前基础网络已逐渐淘汰,不推荐使用。
|
|
640
|
+
*/
|
|
641
641
|
NetInterface: string;
|
|
642
642
|
/**
|
|
643
|
-
|
|
644
|
-
|
|
643
|
+
* 权限组 ID,通用标准型和性能型必填,turbo系列请填写pgroupbasic
|
|
644
|
+
*/
|
|
645
645
|
PGroupId: string;
|
|
646
646
|
/**
|
|
647
|
-
|
|
648
|
-
|
|
647
|
+
* 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择turbo,不支持NFS、CIFS
|
|
648
|
+
*/
|
|
649
649
|
Protocol?: string;
|
|
650
650
|
/**
|
|
651
|
-
|
|
652
|
-
|
|
651
|
+
* 文件系统存储类型,默认值为 SD ;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
|
|
652
|
+
*/
|
|
653
653
|
StorageType?: string;
|
|
654
654
|
/**
|
|
655
|
-
|
|
656
|
-
|
|
655
|
+
* 私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填。
|
|
656
|
+
*/
|
|
657
657
|
VpcId?: string;
|
|
658
658
|
/**
|
|
659
|
-
|
|
660
|
-
|
|
659
|
+
* 子网 ID,若网络类型选择的是VPC,该字段为必填。
|
|
660
|
+
*/
|
|
661
661
|
SubnetId?: string;
|
|
662
662
|
/**
|
|
663
|
-
|
|
664
|
-
|
|
663
|
+
* 指定IP地址,仅VPC网络支持;若不填写、将在该子网下随机分配 IP,Turbo系列当前不支持指定
|
|
664
|
+
*/
|
|
665
665
|
MountIP?: string;
|
|
666
666
|
/**
|
|
667
|
-
|
|
668
|
-
|
|
667
|
+
* 用户自定义文件系统名称
|
|
668
|
+
*/
|
|
669
669
|
FsName?: string;
|
|
670
670
|
/**
|
|
671
|
-
|
|
672
|
-
|
|
671
|
+
* 文件系统标签
|
|
672
|
+
*/
|
|
673
673
|
ResourceTags?: Array<TagInfo>;
|
|
674
674
|
/**
|
|
675
|
-
|
|
676
|
-
|
|
675
|
+
* 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。用于保证请求幂等性的字符串失效时间为2小时。
|
|
676
|
+
*/
|
|
677
677
|
ClientToken?: string;
|
|
678
678
|
/**
|
|
679
|
-
|
|
680
|
-
|
|
679
|
+
* 云联网ID, 若网络类型选择的是CCN,该字段为必填
|
|
680
|
+
*/
|
|
681
681
|
CcnId?: string;
|
|
682
682
|
/**
|
|
683
|
-
|
|
684
|
-
|
|
683
|
+
* 云联网中CFS使用的网段, 若网络类型选择的是Ccn,该字段为必填,且不能和Ccn中已经绑定的网段冲突
|
|
684
|
+
*/
|
|
685
685
|
CidrBlock?: string;
|
|
686
686
|
/**
|
|
687
|
-
|
|
688
|
-
|
|
687
|
+
* 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售40TiB,即40960 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,10240 GiB。
|
|
688
|
+
*/
|
|
689
689
|
Capacity?: number;
|
|
690
690
|
}
|
|
691
691
|
/**
|
|
@@ -693,8 +693,8 @@ export interface CreateCfsFileSystemRequest {
|
|
|
693
693
|
*/
|
|
694
694
|
export interface DescribeMountTargetsRequest {
|
|
695
695
|
/**
|
|
696
|
-
|
|
697
|
-
|
|
696
|
+
* 文件系统 ID
|
|
697
|
+
*/
|
|
698
698
|
FileSystemId: string;
|
|
699
699
|
}
|
|
700
700
|
/**
|
|
@@ -702,28 +702,28 @@ export interface DescribeMountTargetsRequest {
|
|
|
702
702
|
*/
|
|
703
703
|
export interface CreateCfsPGroupResponse {
|
|
704
704
|
/**
|
|
705
|
-
|
|
706
|
-
|
|
705
|
+
* 权限组 ID
|
|
706
|
+
*/
|
|
707
707
|
PGroupId: string;
|
|
708
708
|
/**
|
|
709
|
-
|
|
710
|
-
|
|
709
|
+
* 权限组名字
|
|
710
|
+
*/
|
|
711
711
|
Name: string;
|
|
712
712
|
/**
|
|
713
|
-
|
|
714
|
-
|
|
713
|
+
* 权限组描述信息
|
|
714
|
+
*/
|
|
715
715
|
DescInfo: string;
|
|
716
716
|
/**
|
|
717
|
-
|
|
718
|
-
|
|
717
|
+
* 已经与该权限组绑定的文件系统个数
|
|
718
|
+
*/
|
|
719
719
|
BindCfsNum: number;
|
|
720
720
|
/**
|
|
721
|
-
|
|
722
|
-
|
|
721
|
+
* 权限组创建时间
|
|
722
|
+
*/
|
|
723
723
|
CDate: string;
|
|
724
724
|
/**
|
|
725
|
-
|
|
726
|
-
|
|
725
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
726
|
+
*/
|
|
727
727
|
RequestId?: string;
|
|
728
728
|
}
|
|
729
729
|
/**
|
|
@@ -739,24 +739,24 @@ export declare type DescribeCfsServiceStatusRequest = null;
|
|
|
739
739
|
*/
|
|
740
740
|
export interface PGroupInfo {
|
|
741
741
|
/**
|
|
742
|
-
|
|
743
|
-
|
|
742
|
+
* 权限组ID
|
|
743
|
+
*/
|
|
744
744
|
PGroupId: string;
|
|
745
745
|
/**
|
|
746
|
-
|
|
747
|
-
|
|
746
|
+
* 权限组名称
|
|
747
|
+
*/
|
|
748
748
|
Name: string;
|
|
749
749
|
/**
|
|
750
|
-
|
|
751
|
-
|
|
750
|
+
* 描述信息
|
|
751
|
+
*/
|
|
752
752
|
DescInfo: string;
|
|
753
753
|
/**
|
|
754
|
-
|
|
755
|
-
|
|
754
|
+
* 创建时间
|
|
755
|
+
*/
|
|
756
756
|
CDate: string;
|
|
757
757
|
/**
|
|
758
|
-
|
|
759
|
-
|
|
758
|
+
* 关联文件系统个数
|
|
759
|
+
*/
|
|
760
760
|
BindCfsNum: number;
|
|
761
761
|
}
|
|
762
762
|
/**
|
|
@@ -764,12 +764,12 @@ export interface PGroupInfo {
|
|
|
764
764
|
*/
|
|
765
765
|
export interface SignUpCfsServiceResponse {
|
|
766
766
|
/**
|
|
767
|
-
|
|
768
|
-
|
|
767
|
+
* 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
|
|
768
|
+
*/
|
|
769
769
|
CfsServiceStatus: string;
|
|
770
770
|
/**
|
|
771
|
-
|
|
772
|
-
|
|
771
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
772
|
+
*/
|
|
773
773
|
RequestId?: string;
|
|
774
774
|
}
|
|
775
775
|
/**
|
|
@@ -777,12 +777,12 @@ export interface SignUpCfsServiceResponse {
|
|
|
777
777
|
*/
|
|
778
778
|
export interface UpdateCfsFileSystemPGroupRequest {
|
|
779
779
|
/**
|
|
780
|
-
|
|
781
|
-
|
|
780
|
+
* 权限组 ID
|
|
781
|
+
*/
|
|
782
782
|
PGroupId: string;
|
|
783
783
|
/**
|
|
784
|
-
|
|
785
|
-
|
|
784
|
+
* 文件系统 ID
|
|
785
|
+
*/
|
|
786
786
|
FileSystemId: string;
|
|
787
787
|
}
|
|
788
788
|
/**
|
|
@@ -790,12 +790,12 @@ export interface UpdateCfsFileSystemPGroupRequest {
|
|
|
790
790
|
*/
|
|
791
791
|
export interface DescribeCfsServiceStatusResponse {
|
|
792
792
|
/**
|
|
793
|
-
|
|
794
|
-
|
|
793
|
+
* 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
|
|
794
|
+
*/
|
|
795
795
|
CfsServiceStatus: string;
|
|
796
796
|
/**
|
|
797
|
-
|
|
798
|
-
|
|
797
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
798
|
+
*/
|
|
799
799
|
RequestId?: string;
|
|
800
800
|
}
|
|
801
801
|
/**
|
|
@@ -803,32 +803,32 @@ export interface DescribeCfsServiceStatusResponse {
|
|
|
803
803
|
*/
|
|
804
804
|
export interface CreateCfsRuleResponse {
|
|
805
805
|
/**
|
|
806
|
-
|
|
807
|
-
|
|
806
|
+
* 规则 ID
|
|
807
|
+
*/
|
|
808
808
|
RuleId: string;
|
|
809
809
|
/**
|
|
810
|
-
|
|
811
|
-
|
|
810
|
+
* 权限组 ID
|
|
811
|
+
*/
|
|
812
812
|
PGroupId: string;
|
|
813
813
|
/**
|
|
814
|
-
|
|
815
|
-
|
|
814
|
+
* 客户端 IP
|
|
815
|
+
*/
|
|
816
816
|
AuthClientIp: string;
|
|
817
817
|
/**
|
|
818
|
-
|
|
819
|
-
|
|
818
|
+
* 读写权限
|
|
819
|
+
*/
|
|
820
820
|
RWPermission: string;
|
|
821
821
|
/**
|
|
822
|
-
|
|
823
|
-
|
|
822
|
+
* 用户权限
|
|
823
|
+
*/
|
|
824
824
|
UserPermission: string;
|
|
825
825
|
/**
|
|
826
|
-
|
|
827
|
-
|
|
826
|
+
* 优先级
|
|
827
|
+
*/
|
|
828
828
|
Priority: number;
|
|
829
829
|
/**
|
|
830
|
-
|
|
831
|
-
|
|
830
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
831
|
+
*/
|
|
832
832
|
RequestId?: string;
|
|
833
833
|
}
|
|
834
834
|
/**
|
|
@@ -837,12 +837,12 @@ export interface CreateCfsRuleResponse {
|
|
|
837
837
|
*/
|
|
838
838
|
export interface AvailableProtoStatus {
|
|
839
839
|
/**
|
|
840
|
-
|
|
841
|
-
|
|
840
|
+
* 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
|
|
841
|
+
*/
|
|
842
842
|
SaleStatus: string;
|
|
843
843
|
/**
|
|
844
|
-
|
|
845
|
-
|
|
844
|
+
* 协议类型。可选值有 NFS、CIFS
|
|
845
|
+
*/
|
|
846
846
|
Protocol: string;
|
|
847
847
|
}
|
|
848
848
|
/**
|
|
@@ -850,8 +850,8 @@ export interface AvailableProtoStatus {
|
|
|
850
850
|
*/
|
|
851
851
|
export interface DescribeCfsRulesRequest {
|
|
852
852
|
/**
|
|
853
|
-
|
|
854
|
-
|
|
853
|
+
* 权限组 ID
|
|
854
|
+
*/
|
|
855
855
|
PGroupId: string;
|
|
856
856
|
}
|
|
857
857
|
/**
|
|
@@ -859,24 +859,24 @@ export interface DescribeCfsRulesRequest {
|
|
|
859
859
|
*/
|
|
860
860
|
export interface PGroupRuleInfo {
|
|
861
861
|
/**
|
|
862
|
-
|
|
863
|
-
|
|
862
|
+
* 规则ID
|
|
863
|
+
*/
|
|
864
864
|
RuleId: string;
|
|
865
865
|
/**
|
|
866
|
-
|
|
867
|
-
|
|
866
|
+
* 允许访问的客户端IP
|
|
867
|
+
*/
|
|
868
868
|
AuthClientIp: string;
|
|
869
869
|
/**
|
|
870
|
-
|
|
871
|
-
|
|
870
|
+
* 读写权限, ro为只读,rw为读写
|
|
871
|
+
*/
|
|
872
872
|
RWPermission: string;
|
|
873
873
|
/**
|
|
874
|
-
|
|
875
|
-
|
|
874
|
+
* 用户权限。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。
|
|
875
|
+
*/
|
|
876
876
|
UserPermission: string;
|
|
877
877
|
/**
|
|
878
|
-
|
|
879
|
-
|
|
878
|
+
* 规则优先级,1-100。 其中 1 为最高,100为最低
|
|
879
|
+
*/
|
|
880
880
|
Priority: number;
|
|
881
881
|
}
|
|
882
882
|
/**
|
|
@@ -884,8 +884,8 @@ export interface PGroupRuleInfo {
|
|
|
884
884
|
*/
|
|
885
885
|
export interface DeleteCfsPGroupRequest {
|
|
886
886
|
/**
|
|
887
|
-
|
|
888
|
-
|
|
887
|
+
* 权限组 ID
|
|
888
|
+
*/
|
|
889
889
|
PGroupId: string;
|
|
890
890
|
}
|
|
891
891
|
/**
|
|
@@ -893,16 +893,16 @@ export interface DeleteCfsPGroupRequest {
|
|
|
893
893
|
*/
|
|
894
894
|
export interface AvailableType {
|
|
895
895
|
/**
|
|
896
|
-
|
|
897
|
-
|
|
896
|
+
* 协议与售卖详情
|
|
897
|
+
*/
|
|
898
898
|
Protocols: Array<AvailableProtoStatus>;
|
|
899
899
|
/**
|
|
900
|
-
|
|
901
|
-
|
|
900
|
+
* 存储类型。返回值中 SD 为标准型存储、HP 为性能型存储
|
|
901
|
+
*/
|
|
902
902
|
Type: string;
|
|
903
903
|
/**
|
|
904
|
-
|
|
905
|
-
|
|
904
|
+
* 是否支持预付费。返回值中 true 为支持、false 为不支持
|
|
905
|
+
*/
|
|
906
906
|
Prepayment: boolean;
|
|
907
907
|
}
|
|
908
908
|
/**
|
|
@@ -910,12 +910,12 @@ export interface AvailableType {
|
|
|
910
910
|
*/
|
|
911
911
|
export interface UpdateCfsFileSystemSizeLimitRequest {
|
|
912
912
|
/**
|
|
913
|
-
|
|
914
|
-
|
|
913
|
+
* 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
|
|
914
|
+
*/
|
|
915
915
|
FsLimit: number;
|
|
916
916
|
/**
|
|
917
|
-
|
|
918
|
-
|
|
917
|
+
* 文件系统ID,目前仅支持标准型文件系统。
|
|
918
|
+
*/
|
|
919
919
|
FileSystemId: string;
|
|
920
920
|
}
|
|
921
921
|
/**
|
|
@@ -923,8 +923,8 @@ export interface UpdateCfsFileSystemSizeLimitRequest {
|
|
|
923
923
|
*/
|
|
924
924
|
export interface DeleteCfsFileSystemRequest {
|
|
925
925
|
/**
|
|
926
|
-
|
|
927
|
-
|
|
926
|
+
* 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
|
|
927
|
+
*/
|
|
928
928
|
FileSystemId: string;
|
|
929
929
|
}
|
|
930
930
|
/**
|
|
@@ -932,20 +932,20 @@ export interface DeleteCfsFileSystemRequest {
|
|
|
932
932
|
*/
|
|
933
933
|
export interface UpdateCfsPGroupResponse {
|
|
934
934
|
/**
|
|
935
|
-
|
|
936
|
-
|
|
935
|
+
* 权限组ID
|
|
936
|
+
*/
|
|
937
937
|
PGroupId: string;
|
|
938
938
|
/**
|
|
939
|
-
|
|
940
|
-
|
|
939
|
+
* 权限组名称
|
|
940
|
+
*/
|
|
941
941
|
Name: string;
|
|
942
942
|
/**
|
|
943
|
-
|
|
944
|
-
|
|
943
|
+
* 描述信息
|
|
944
|
+
*/
|
|
945
945
|
DescInfo: string;
|
|
946
946
|
/**
|
|
947
|
-
|
|
948
|
-
|
|
947
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
948
|
+
*/
|
|
949
949
|
RequestId?: string;
|
|
950
950
|
}
|
|
951
951
|
/**
|
|
@@ -953,12 +953,12 @@ export interface UpdateCfsPGroupResponse {
|
|
|
953
953
|
*/
|
|
954
954
|
export interface DescribeCfsRulesResponse {
|
|
955
955
|
/**
|
|
956
|
-
|
|
957
|
-
|
|
956
|
+
* 权限组规则列表
|
|
957
|
+
*/
|
|
958
958
|
RuleList: Array<PGroupRuleInfo>;
|
|
959
959
|
/**
|
|
960
|
-
|
|
961
|
-
|
|
960
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
961
|
+
*/
|
|
962
962
|
RequestId?: string;
|
|
963
963
|
}
|
|
964
964
|
/**
|
|
@@ -966,15 +966,15 @@ export interface DescribeCfsRulesResponse {
|
|
|
966
966
|
*/
|
|
967
967
|
export interface UpdateCfsFileSystemPGroupResponse {
|
|
968
968
|
/**
|
|
969
|
-
|
|
970
|
-
|
|
969
|
+
* 权限组 ID
|
|
970
|
+
*/
|
|
971
971
|
PGroupId: string;
|
|
972
972
|
/**
|
|
973
|
-
|
|
974
|
-
|
|
973
|
+
* 文件系统 ID
|
|
974
|
+
*/
|
|
975
975
|
FileSystemId: string;
|
|
976
976
|
/**
|
|
977
|
-
|
|
978
|
-
|
|
977
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
978
|
+
*/
|
|
979
979
|
RequestId?: string;
|
|
980
980
|
}
|