tencentcloud-sdk-nodejs-cfs 4.0.388 → 4.0.431

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.
@@ -19,655 +19,679 @@
19
19
  * DeleteCfsFileSystem返回参数结构体
20
20
  */
21
21
  export interface DeleteCfsFileSystemResponse {
22
- /**
23
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
24
- */
25
- RequestId?: string
22
+
23
+ /**
24
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
25
+ */
26
+ RequestId?: string;
26
27
  }
27
28
 
28
29
  /**
29
30
  * 版本控制-可用区数组
30
31
  */
31
32
  export interface AvailableZone {
32
- /**
33
- * 可用区名称
34
- */
35
- Zone: string
36
-
37
- /**
38
- * 可用区ID
39
- */
40
- ZoneId: number
41
-
42
- /**
43
- * 可用区中文名称
44
- */
45
- ZoneCnName: string
46
-
47
- /**
48
- * Type数组
49
- */
50
- Types: Array<AvailableType>
51
-
52
- /**
53
- * 可用区中英文名称
54
- */
55
- ZoneName: string
33
+
34
+ /**
35
+ * 可用区名称
36
+ */
37
+ Zone: string;
38
+
39
+ /**
40
+ * 可用区ID
41
+ */
42
+ ZoneId: number;
43
+
44
+ /**
45
+ * 可用区中文名称
46
+ */
47
+ ZoneCnName: string;
48
+
49
+ /**
50
+ * Type数组
51
+ */
52
+ Types: Array<AvailableType>;
53
+
54
+ /**
55
+ * 可用区中英文名称
56
+ */
57
+ ZoneName: string;
56
58
  }
57
59
 
58
60
  /**
59
61
  * UpdateCfsRule请求参数结构体
60
62
  */
61
63
  export interface UpdateCfsRuleRequest {
62
- /**
63
- * 权限组 ID
64
- */
65
- PGroupId: string
66
-
67
- /**
68
- * 规则 ID
69
- */
70
- RuleId: string
71
-
72
- /**
73
- * 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
74
- */
75
- AuthClientIp?: string
76
-
77
- /**
78
- * 读写权限, 值为RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
79
- */
80
- RWPermission?: string
81
-
82
- /**
83
- * 用户权限,值为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。
84
- */
85
- UserPermission?: string
86
-
87
- /**
88
- * 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
89
- */
90
- Priority?: number
64
+
65
+ /**
66
+ * 权限组 ID
67
+ */
68
+ PGroupId: string;
69
+
70
+ /**
71
+ * 规则 ID
72
+ */
73
+ RuleId: string;
74
+
75
+ /**
76
+ * 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
77
+ */
78
+ AuthClientIp?: string;
79
+
80
+ /**
81
+ * 读写权限, 值为RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
82
+ */
83
+ RWPermission?: string;
84
+
85
+ /**
86
+ * 用户权限,值为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。
87
+ */
88
+ UserPermission?: string;
89
+
90
+ /**
91
+ * 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
92
+ */
93
+ Priority?: number;
91
94
  }
92
95
 
93
96
  /**
94
97
  * DescribeCfsFileSystems请求参数结构体
95
98
  */
96
99
  export interface DescribeCfsFileSystemsRequest {
97
- /**
98
- * 文件系统 ID
99
- */
100
- FileSystemId?: string
101
-
102
- /**
103
- * 私有网络(VPC) ID
104
- */
105
- VpcId?: string
106
-
107
- /**
108
- * 子网 ID
109
- */
110
- SubnetId?: string
100
+
101
+ /**
102
+ * 文件系统 ID
103
+ */
104
+ FileSystemId?: string;
105
+
106
+ /**
107
+ * 私有网络(VPC) ID
108
+ */
109
+ VpcId?: string;
110
+
111
+ /**
112
+ * 子网 ID
113
+ */
114
+ SubnetId?: string;
111
115
  }
112
116
 
113
117
  /**
114
118
  * DeleteMountTarget请求参数结构体
115
119
  */
116
120
  export interface DeleteMountTargetRequest {
117
- /**
118
- * 文件系统 ID
119
- */
120
- FileSystemId: string
121
-
122
- /**
123
- * 挂载点 ID
124
- */
125
- MountTargetId: string
121
+
122
+ /**
123
+ * 文件系统 ID
124
+ */
125
+ FileSystemId: string;
126
+
127
+ /**
128
+ * 挂载点 ID
129
+ */
130
+ MountTargetId: string;
126
131
  }
127
132
 
128
133
  /**
129
134
  * CreateCfsRule请求参数结构体
130
135
  */
131
136
  export interface CreateCfsRuleRequest {
132
- /**
133
- * 权限组 ID
134
- */
135
- PGroupId: string
136
-
137
- /**
138
- * 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
139
- */
140
- AuthClientIp: string
141
-
142
- /**
143
- * 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
144
- */
145
- Priority: number
146
-
147
- /**
148
- * 读写权限, 值为 RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
149
- */
150
- RWPermission?: string
151
-
152
- /**
153
- * 用户权限,值为 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。
154
- */
155
- UserPermission?: string
137
+
138
+ /**
139
+ * 权限组 ID
140
+ */
141
+ PGroupId: string;
142
+
143
+ /**
144
+ * 可以填写单个 IP 或者单个网段,例如 10.1.10.11 或者 10.10.1.0/24。默认来访地址为*表示允许所有。同时需要注意,此处需填写 CVM 的内网 IP。
145
+ */
146
+ AuthClientIp: string;
147
+
148
+ /**
149
+ * 规则优先级,参数范围1-100。 其中 1 为最高,100为最低
150
+ */
151
+ Priority: number;
152
+
153
+ /**
154
+ * 读写权限, 值为 RO、RW;其中 RO 为只读,RW 为读写,不填默认为只读
155
+ */
156
+ RWPermission?: string;
157
+
158
+ /**
159
+ * 用户权限,值为 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。
160
+ */
161
+ UserPermission?: string;
156
162
  }
157
163
 
158
164
  /**
159
165
  * 文件系统绑定权限组信息
160
166
  */
161
167
  export interface PGroup {
162
- /**
163
- * 权限组ID
164
- */
165
- PGroupId: string
166
-
167
- /**
168
- * 权限组名称
169
- */
170
- Name: string
168
+
169
+ /**
170
+ * 权限组ID
171
+ */
172
+ PGroupId: string;
173
+
174
+ /**
175
+ * 权限组名称
176
+ */
177
+ Name: string;
171
178
  }
172
179
 
173
180
  /**
174
181
  * DescribeAvailableZoneInfo返回参数结构体
175
182
  */
176
183
  export interface DescribeAvailableZoneInfoResponse {
177
- /**
178
- * 各可用区的资源售卖情况以及支持的存储类型、存储协议等信息
179
- */
180
- RegionZones?: Array<AvailableRegion>
181
-
182
- /**
183
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
184
- */
185
- RequestId?: string
184
+
185
+ /**
186
+ * 各可用区的资源售卖情况以及支持的存储类型、存储协议等信息
187
+ */
188
+ RegionZones: Array<AvailableRegion>;
189
+
190
+ /**
191
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
192
+ */
193
+ RequestId?: string;
186
194
  }
187
195
 
188
196
  /**
189
197
  * UpdateCfsFileSystemName返回参数结构体
190
198
  */
191
199
  export interface UpdateCfsFileSystemNameResponse {
192
- /**
193
- * 用户自定义文件系统名称
194
- */
195
- CreationToken?: string
196
-
197
- /**
198
- * 文件系统ID
199
- */
200
- FileSystemId?: string
201
-
202
- /**
203
- * 用户自定义文件系统名称
204
- */
205
- FsName?: string
206
-
207
- /**
208
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
209
- */
210
- RequestId?: string
200
+
201
+ /**
202
+ * 用户自定义文件系统名称
203
+ */
204
+ CreationToken: string;
205
+
206
+ /**
207
+ * 文件系统ID
208
+ */
209
+ FileSystemId: string;
210
+
211
+ /**
212
+ * 用户自定义文件系统名称
213
+ */
214
+ FsName: string;
215
+
216
+ /**
217
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
218
+ */
219
+ RequestId?: string;
211
220
  }
212
221
 
213
222
  /**
214
223
  * UpdateCfsFileSystemName请求参数结构体
215
224
  */
216
225
  export interface UpdateCfsFileSystemNameRequest {
217
- /**
218
- * 文件系统 ID
219
- */
220
- FileSystemId: string
221
-
222
- /**
223
- * 用户自定义文件系统名称
224
- */
225
- FsName?: string
226
+
227
+ /**
228
+ * 文件系统 ID
229
+ */
230
+ FileSystemId: string;
231
+
232
+ /**
233
+ * 用户自定义文件系统名称
234
+ */
235
+ FsName?: string;
226
236
  }
227
237
 
228
238
  /**
229
239
  * DescribeCfsPGroups返回参数结构体
230
240
  */
231
241
  export interface DescribeCfsPGroupsResponse {
232
- /**
233
- * 权限组信息列表
234
- */
235
- PGroupList?: Array<PGroupInfo>
236
-
237
- /**
238
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
239
- */
240
- RequestId?: string
242
+
243
+ /**
244
+ * 权限组信息列表
245
+ */
246
+ PGroupList: Array<PGroupInfo>;
247
+
248
+ /**
249
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
250
+ */
251
+ RequestId?: string;
241
252
  }
242
253
 
243
254
  /**
244
255
  * DescribeCfsFileSystemClients返回参数结构体
245
256
  */
246
257
  export interface DescribeCfsFileSystemClientsResponse {
247
- /**
248
- * 客户端列表
249
- */
250
- ClientList?: Array<FileSystemClient>
251
-
252
- /**
253
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
254
- */
255
- RequestId?: string
258
+
259
+ /**
260
+ * 客户端列表
261
+ */
262
+ ClientList: Array<FileSystemClient>;
263
+
264
+ /**
265
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
266
+ */
267
+ RequestId?: string;
256
268
  }
257
269
 
258
270
  /**
259
271
  * DeleteMountTarget返回参数结构体
260
272
  */
261
273
  export interface DeleteMountTargetResponse {
262
- /**
263
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
264
- */
265
- RequestId?: string
274
+
275
+ /**
276
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
277
+ */
278
+ RequestId?: string;
266
279
  }
267
280
 
268
281
  /**
269
282
  * DescribeMountTargets返回参数结构体
270
283
  */
271
284
  export interface DescribeMountTargetsResponse {
272
- /**
273
- * 挂载点详情
274
- */
275
- MountTargets?: Array<MountInfo>
276
-
277
- /**
278
- * 挂载点数量
279
- */
280
- NumberOfMountTargets?: number
281
-
282
- /**
283
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
284
- */
285
- RequestId?: string
285
+
286
+ /**
287
+ * 挂载点详情
288
+ */
289
+ MountTargets: Array<MountInfo>;
290
+
291
+ /**
292
+ * 挂载点数量
293
+ */
294
+ NumberOfMountTargets: number;
295
+
296
+ /**
297
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
298
+ */
299
+ RequestId?: string;
286
300
  }
287
301
 
288
302
  /**
289
303
  * DeleteCfsRule返回参数结构体
290
304
  */
291
305
  export interface DeleteCfsRuleResponse {
292
- /**
293
- * 规则 ID
294
- */
295
- RuleId?: string
296
-
297
- /**
298
- * 权限组 ID
299
- */
300
- PGroupId?: string
301
-
302
- /**
303
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
304
- */
305
- RequestId?: string
306
+
307
+ /**
308
+ * 规则 ID
309
+ */
310
+ RuleId: string;
311
+
312
+ /**
313
+ * 权限组 ID
314
+ */
315
+ PGroupId: string;
316
+
317
+ /**
318
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
319
+ */
320
+ RequestId?: string;
306
321
  }
307
322
 
308
323
  /**
309
324
  * DeleteCfsRule请求参数结构体
310
325
  */
311
326
  export interface DeleteCfsRuleRequest {
312
- /**
313
- * 权限组 ID
314
- */
315
- PGroupId: string
316
-
317
- /**
318
- * 规则 ID
319
- */
320
- RuleId: string
327
+
328
+ /**
329
+ * 权限组 ID
330
+ */
331
+ PGroupId: string;
332
+
333
+ /**
334
+ * 规则 ID
335
+ */
336
+ RuleId: string;
321
337
  }
322
338
 
323
339
  /**
324
340
  * UpdateCfsPGroup请求参数结构体
325
341
  */
326
342
  export interface UpdateCfsPGroupRequest {
327
- /**
328
- * 权限组 ID
329
- */
330
- PGroupId: string
331
-
332
- /**
333
- * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
334
- */
335
- Name?: string
336
-
337
- /**
338
- * 权限组描述信息,1-255个字符
339
- */
340
- DescInfo?: string
343
+
344
+ /**
345
+ * 权限组 ID
346
+ */
347
+ PGroupId: string;
348
+
349
+ /**
350
+ * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
351
+ */
352
+ Name?: string;
353
+
354
+ /**
355
+ * 权限组描述信息,1-255个字符
356
+ */
357
+ DescInfo?: string;
341
358
  }
342
359
 
343
360
  /**
344
361
  * 挂载点信息
345
362
  */
346
363
  export interface MountInfo {
347
- /**
348
- * 文件系统 ID
349
- */
350
- FileSystemId: string
351
-
352
- /**
353
- * 挂载点 ID
354
- */
355
- MountTargetId: string
356
-
357
- /**
358
- * 挂载点 IP
359
- */
360
- IpAddress: string
361
-
362
- /**
363
- * 挂载根目录
364
- */
365
- FSID: string
366
-
367
- /**
368
- * 挂载点状态
369
- */
370
- LifeCycleState: string
371
-
372
- /**
373
- * 网络类型
374
- */
375
- NetworkInterface: string
376
-
377
- /**
378
- * 私有网络 ID
379
- */
380
- VpcId: string
381
-
382
- /**
383
- * 私有网络名称
384
- */
385
- VpcName: string
386
-
387
- /**
388
- * 子网 Id
389
- */
390
- SubnetId: string
391
-
392
- /**
393
- * 子网名称
394
- */
395
- SubnetName: string
396
-
397
- /**
398
- * CFS Turbo使用的云联网ID
399
- */
400
- CcnID: string
401
-
402
- /**
403
- * 云联网中CFS Turbo使用的网段
404
- */
405
- CidrBlock: string
364
+
365
+ /**
366
+ * 文件系统 ID
367
+ */
368
+ FileSystemId: string;
369
+
370
+ /**
371
+ * 挂载点 ID
372
+ */
373
+ MountTargetId: string;
374
+
375
+ /**
376
+ * 挂载点 IP
377
+ */
378
+ IpAddress: string;
379
+
380
+ /**
381
+ * 挂载根目录
382
+ */
383
+ FSID: string;
384
+
385
+ /**
386
+ * 挂载点状态
387
+ */
388
+ LifeCycleState: string;
389
+
390
+ /**
391
+ * 网络类型
392
+ */
393
+ NetworkInterface: string;
394
+
395
+ /**
396
+ * 私有网络 ID
397
+ */
398
+ VpcId: string;
399
+
400
+ /**
401
+ * 私有网络名称
402
+ */
403
+ VpcName: string;
404
+
405
+ /**
406
+ * 子网 Id
407
+ */
408
+ SubnetId: string;
409
+
410
+ /**
411
+ * 子网名称
412
+ */
413
+ SubnetName: string;
414
+
415
+ /**
416
+ * CFS Turbo使用的云联网ID
417
+ */
418
+ CcnID: string;
419
+
420
+ /**
421
+ * 云联网中CFS Turbo使用的网段
422
+ */
423
+ CidrBlock: string;
406
424
  }
407
425
 
408
426
  /**
409
427
  * UpdateCfsRule返回参数结构体
410
428
  */
411
429
  export interface UpdateCfsRuleResponse {
412
- /**
413
- * 权限组 ID
414
- */
415
- PGroupId?: string
416
-
417
- /**
418
- * 规则 ID
419
- */
420
- RuleId?: string
421
-
422
- /**
423
- * 允许访问的客户端 IP 或者 IP 段
424
- */
425
- AuthClientIp?: string
426
-
427
- /**
428
- * 读写权限
429
- */
430
- RWPermission?: string
431
-
432
- /**
433
- * 用户权限
434
- */
435
- UserPermission?: string
436
-
437
- /**
438
- * 优先级
439
- */
440
- Priority?: number
441
-
442
- /**
443
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
444
- */
445
- RequestId?: string
430
+
431
+ /**
432
+ * 权限组 ID
433
+ */
434
+ PGroupId: string;
435
+
436
+ /**
437
+ * 规则 ID
438
+ */
439
+ RuleId: string;
440
+
441
+ /**
442
+ * 允许访问的客户端 IP 或者 IP 段
443
+ */
444
+ AuthClientIp: string;
445
+
446
+ /**
447
+ * 读写权限
448
+ */
449
+ RWPermission: string;
450
+
451
+ /**
452
+ * 用户权限
453
+ */
454
+ UserPermission: string;
455
+
456
+ /**
457
+ * 优先级
458
+ */
459
+ Priority: number;
460
+
461
+ /**
462
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
463
+ */
464
+ RequestId?: string;
446
465
  }
447
466
 
448
467
  /**
449
468
  * 文件系统客户端信息
450
469
  */
451
470
  export interface FileSystemClient {
452
- /**
453
- * 文件系统IP地址
454
- */
455
- CfsVip: string
456
-
457
- /**
458
- * 客户端IP地址
459
- */
460
- ClientIp: string
461
-
462
- /**
463
- * 文件系统所属VPCID
464
- */
465
- VpcId: string
466
-
467
- /**
468
- * 可用区名称,例如ap-beijing-1,请参考 概览文档中的地域与可用区列表
469
- */
470
- Zone: string
471
-
472
- /**
473
- * 可用区中文名称
474
- */
475
- ZoneName: string
476
-
477
- /**
478
- * 该文件系统被挂载到客户端上的路径信息
479
- */
480
- MountDirectory: string
471
+
472
+ /**
473
+ * 文件系统IP地址
474
+ */
475
+ CfsVip: string;
476
+
477
+ /**
478
+ * 客户端IP地址
479
+ */
480
+ ClientIp: string;
481
+
482
+ /**
483
+ * 文件系统所属VPCID
484
+ */
485
+ VpcId: string;
486
+
487
+ /**
488
+ * 可用区名称,例如ap-beijing-1,请参考 概览文档中的地域与可用区列表
489
+ */
490
+ Zone: string;
491
+
492
+ /**
493
+ * 可用区中文名称
494
+ */
495
+ ZoneName: string;
496
+
497
+ /**
498
+ * 该文件系统被挂载到客户端上的路径信息
499
+ */
500
+ MountDirectory: string;
481
501
  }
482
502
 
483
503
  /**
484
504
  * DescribeCfsFileSystems返回参数结构体
485
505
  */
486
506
  export interface DescribeCfsFileSystemsResponse {
487
- /**
488
- * 文件系统信息
489
- */
490
- FileSystems: Array<FileSystemInfo>
491
-
492
- /**
493
- * 文件系统总数
494
- */
495
- TotalCount: number
496
-
497
- /**
498
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
499
- */
500
- RequestId?: string
507
+
508
+ /**
509
+ * 文件系统信息
510
+ */
511
+ FileSystems: Array<FileSystemInfo>;
512
+
513
+ /**
514
+ * 文件系统总数
515
+ */
516
+ TotalCount: number;
517
+
518
+ /**
519
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
520
+ */
521
+ RequestId?: string;
501
522
  }
502
523
 
503
524
  /**
504
525
  * CreateCfsFileSystem返回参数结构体
505
526
  */
506
527
  export interface CreateCfsFileSystemResponse {
507
- /**
508
- * 文件系统创建时间
509
- */
510
- CreationTime: string
511
-
512
- /**
513
- * 用户自定义文件系统名称
514
- */
515
- CreationToken: string
516
-
517
- /**
518
- * 文件系统 ID
519
- */
520
- FileSystemId: string
521
-
522
- /**
523
- * 文件系统状态,可能出现状态包括:“creating” 创建中, “create_failed” 创建失败, “available” 可用, “unserviced” 不可用, “upgrading” 升级中, “deleting” 删除中。
524
- */
525
- LifeCycleState: string
526
-
527
- /**
528
- * 文件系统已使用容量大小,单位为 Byte
529
- */
530
- SizeByte: number
531
-
532
- /**
533
- * 可用区 ID
534
- */
535
- ZoneId: number
536
-
537
- /**
538
- * 用户自定义文件系统名称
539
- */
540
- FsName: string
541
-
542
- /**
543
- * 文件系统是否加密
544
- */
545
- Encrypted: boolean
546
-
547
- /**
548
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
549
- */
550
- RequestId?: string
528
+
529
+ /**
530
+ * 文件系统创建时间
531
+ */
532
+ CreationTime: string;
533
+
534
+ /**
535
+ * 用户自定义文件系统名称
536
+ */
537
+ CreationToken: string;
538
+
539
+ /**
540
+ * 文件系统 ID
541
+ */
542
+ FileSystemId: string;
543
+
544
+ /**
545
+ * 文件系统状态,可能出现状态包括:“creating” 创建中, “create_failed” 创建失败, “available” 可用, “unserviced” 不可用, “upgrading” 升级中, “deleting” 删除中。
546
+ */
547
+ LifeCycleState: string;
548
+
549
+ /**
550
+ * 文件系统已使用容量大小,单位为 Byte
551
+ */
552
+ SizeByte: number;
553
+
554
+ /**
555
+ * 可用区 ID
556
+ */
557
+ ZoneId: number;
558
+
559
+ /**
560
+ * 用户自定义文件系统名称
561
+ */
562
+ FsName: string;
563
+
564
+ /**
565
+ * 文件系统是否加密
566
+ */
567
+ Encrypted: boolean;
568
+
569
+ /**
570
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
571
+ */
572
+ RequestId?: string;
551
573
  }
552
574
 
553
575
  /**
554
576
  * 文件系统基本信息
555
577
  */
556
578
  export interface FileSystemInfo {
557
- /**
558
- * 创建时间
559
- */
560
- CreationTime: string
561
-
562
- /**
563
- * 用户自定义名称
564
- */
565
- CreationToken: string
566
-
567
- /**
568
- * 文件系统 ID
569
- */
570
- FileSystemId: string
571
-
572
- /**
573
- * 文件系统状态
574
- */
575
- LifeCycleState: string
576
-
577
- /**
578
- * 文件系统已使用容量
579
- */
580
- SizeByte: number
581
-
582
- /**
583
- * 文件系统最大空间限制
584
- */
585
- SizeLimit: number
586
-
587
- /**
588
- * 区域 ID
589
- */
590
- ZoneId: number
591
-
592
- /**
593
- * 区域名称
594
- */
595
- Zone: string
596
-
597
- /**
598
- * 文件系统协议类型
599
- */
600
- Protocol: string
601
-
602
- /**
603
- * 文件系统存储类型
604
- */
605
- StorageType: string
606
-
607
- /**
608
- * 文件系统绑定的预付费存储包
609
- */
610
- StorageResourcePkg: string
611
-
612
- /**
613
- * 文件系统绑定的预付费带宽包(暂未支持)
614
- */
615
- BandwidthResourcePkg: string
616
-
617
- /**
618
- * 文件系统绑定权限组信息
619
- */
620
- PGroup: PGroup
621
-
622
- /**
623
- * 用户自定义名称
624
- */
625
- FsName: string
626
-
627
- /**
628
- * 文件系统是否加密
629
- */
630
- Encrypted: boolean
631
-
632
- /**
633
- * 加密所使用的密钥,可以为密钥的 ID 或者 ARN
634
- */
635
- KmsKeyId: string
636
-
637
- /**
638
- * 应用ID
639
- */
640
- AppId: number
641
-
642
- /**
643
- * 文件系统吞吐上限,吞吐上限是根据文件系统当前已使用存储量、绑定的存储资源包以及吞吐资源包一同确定
644
- */
645
- BandwidthLimit: number
646
-
647
- /**
648
- * 文件系统总容量
649
- */
650
- Capacity: number
651
-
652
- /**
653
- * 文件系统标签列表
654
- */
655
- Tags: Array<TagInfo>
579
+
580
+ /**
581
+ * 创建时间
582
+ */
583
+ CreationTime: string;
584
+
585
+ /**
586
+ * 用户自定义名称
587
+ */
588
+ CreationToken: string;
589
+
590
+ /**
591
+ * 文件系统 ID
592
+ */
593
+ FileSystemId: string;
594
+
595
+ /**
596
+ * 文件系统状态
597
+ */
598
+ LifeCycleState: string;
599
+
600
+ /**
601
+ * 文件系统已使用容量
602
+ */
603
+ SizeByte: number;
604
+
605
+ /**
606
+ * 文件系统最大空间限制
607
+ */
608
+ SizeLimit: number;
609
+
610
+ /**
611
+ * 区域 ID
612
+ */
613
+ ZoneId: number;
614
+
615
+ /**
616
+ * 区域名称
617
+ */
618
+ Zone: string;
619
+
620
+ /**
621
+ * 文件系统协议类型
622
+ */
623
+ Protocol: string;
624
+
625
+ /**
626
+ * 文件系统存储类型
627
+ */
628
+ StorageType: string;
629
+
630
+ /**
631
+ * 文件系统绑定的预付费存储包
632
+ */
633
+ StorageResourcePkg: string;
634
+
635
+ /**
636
+ * 文件系统绑定的预付费带宽包(暂未支持)
637
+ */
638
+ BandwidthResourcePkg: string;
639
+
640
+ /**
641
+ * 文件系统绑定权限组信息
642
+ */
643
+ PGroup: PGroup;
644
+
645
+ /**
646
+ * 用户自定义名称
647
+ */
648
+ FsName: string;
649
+
650
+ /**
651
+ * 文件系统是否加密
652
+ */
653
+ Encrypted: boolean;
654
+
655
+ /**
656
+ * 加密所使用的密钥,可以为密钥的 ID 或者 ARN
657
+ */
658
+ KmsKeyId: string;
659
+
660
+ /**
661
+ * 应用ID
662
+ */
663
+ AppId: number;
664
+
665
+ /**
666
+ * 文件系统吞吐上限,吞吐上限是根据文件系统当前已使用存储量、绑定的存储资源包以及吞吐资源包一同确定
667
+ */
668
+ BandwidthLimit: number;
669
+
670
+ /**
671
+ * 文件系统总容量
672
+ */
673
+ Capacity: number;
674
+
675
+ /**
676
+ * 文件系统标签列表
677
+ */
678
+ Tags: Array<TagInfo>;
656
679
  }
657
680
 
658
681
  /**
659
682
  * Tag信息单元
660
683
  */
661
684
  export interface TagInfo {
662
- /**
663
- * 标签键
664
- */
665
- TagKey: string
666
-
667
- /**
668
- * 标签值
669
- */
670
- TagValue: string
685
+
686
+ /**
687
+ * 标签键
688
+ */
689
+ TagKey: string;
690
+
691
+ /**
692
+ * 标签值
693
+ */
694
+ TagValue: string;
671
695
  }
672
696
 
673
697
  /**
@@ -679,55 +703,59 @@ export type DescribeCfsPGroupsRequest = null
679
703
  * DescribeCfsFileSystemClients请求参数结构体
680
704
  */
681
705
  export interface DescribeCfsFileSystemClientsRequest {
682
- /**
683
- * 文件系统 ID。
684
- */
685
- FileSystemId: string
706
+
707
+ /**
708
+ * 文件系统 ID。
709
+ */
710
+ FileSystemId: string;
686
711
  }
687
712
 
688
713
  /**
689
714
  * CreateCfsPGroup请求参数结构体
690
715
  */
691
716
  export interface CreateCfsPGroupRequest {
692
- /**
693
- * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
694
- */
695
- Name: string
696
-
697
- /**
698
- * 权限组描述信息,1-255个字符
699
- */
700
- DescInfo?: string
717
+
718
+ /**
719
+ * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
720
+ */
721
+ Name: string;
722
+
723
+ /**
724
+ * 权限组描述信息,1-255个字符
725
+ */
726
+ DescInfo?: string;
701
727
  }
702
728
 
703
729
  /**
704
730
  * DeleteCfsPGroup返回参数结构体
705
731
  */
706
732
  export interface DeleteCfsPGroupResponse {
707
- /**
708
- * 权限组 ID
709
- */
710
- PGroupId?: string
711
-
712
- /**
713
- * 用户 ID
714
- */
715
- AppId?: number
716
-
717
- /**
718
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
719
- */
720
- RequestId?: string
733
+
734
+ /**
735
+ * 权限组 ID
736
+ */
737
+ PGroupId: string;
738
+
739
+ /**
740
+ * 用户 ID
741
+ */
742
+ AppId: number;
743
+
744
+ /**
745
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
746
+ */
747
+ RequestId?: string;
721
748
  }
722
749
 
723
750
  /**
724
751
  * UpdateCfsFileSystemSizeLimit返回参数结构体
725
752
  */
726
753
  export interface UpdateCfsFileSystemSizeLimitResponse {
727
- /**
728
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
729
- */
730
- RequestId?: string
754
+
755
+ /**
756
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
757
+ */
758
+ RequestId?: string;
731
759
  }
732
760
 
733
761
  /**
@@ -739,150 +767,154 @@ export type DescribeAvailableZoneInfoRequest = null
739
767
  * 版本控制-区域数组
740
768
  */
741
769
  export interface AvailableRegion {
742
- /**
743
- * 区域名称,如“ap-beijing”
744
- */
745
- Region: string
746
-
747
- /**
748
- * 区域名称,如“bj”
749
- */
750
- RegionName: string
751
-
752
- /**
753
- * 区域可用情况,当区域内至少有一个可用区处于可售状态时,取值为AVAILABLE,否则为UNAVAILABLE
754
- */
755
- RegionStatus: string
756
-
757
- /**
758
- * 可用区数组
759
- */
760
- Zones: Array<AvailableZone>
761
-
762
- /**
763
- * 区域中文名称,如“广州”
764
- */
765
- RegionCnName: string
770
+
771
+ /**
772
+ * 区域名称,如“ap-beijing”
773
+ */
774
+ Region: string;
775
+
776
+ /**
777
+ * 区域名称,如“bj”
778
+ */
779
+ RegionName: string;
780
+
781
+ /**
782
+ * 区域可用情况,当区域内至少有一个可用区处于可售状态时,取值为AVAILABLE,否则为UNAVAILABLE
783
+ */
784
+ RegionStatus: string;
785
+
786
+ /**
787
+ * 可用区数组
788
+ */
789
+ Zones: Array<AvailableZone>;
790
+
791
+ /**
792
+ * 区域中文名称,如“广州”
793
+ */
794
+ RegionCnName: string;
766
795
  }
767
796
 
768
797
  /**
769
798
  * CreateCfsFileSystem请求参数结构体
770
799
  */
771
800
  export interface CreateCfsFileSystemRequest {
772
- /**
773
- * 可用区名称,例如ap-beijing-1,请参考 [概览](https://cloud.tencent.com/document/product/582/13225) 文档中的地域与可用区列表
774
- */
775
- Zone: string
776
-
777
- /**
778
- * 网络类型,可选值为 VPC,BASIC,CCN;其中 VPC 为私有网络,BASIC 为基础网络, CCN 为云联网,Turbo系列当前必须选择云联网。目前基础网络已逐渐淘汰,不推荐使用。
779
- */
780
- NetInterface: string
781
-
782
- /**
783
- * 权限组 ID,通用标准型和性能型必填,turbo系列请填写pgroupbasic
784
- */
785
- PGroupId: string
786
-
787
- /**
788
- * 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择turbo,不支持NFS、CIFS
789
- */
790
- Protocol?: string
791
-
792
- /**
793
- * 文件系统存储类型,默认值为 SD ;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
794
- */
795
- StorageType?: string
796
-
797
- /**
798
- * 私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填。
799
- */
800
- VpcId?: string
801
-
802
- /**
803
- * 子网 ID,若网络类型选择的是VPC,该字段为必填。
804
- */
805
- SubnetId?: string
806
-
807
- /**
808
- * 指定IP地址,仅VPC网络支持;若不填写、将在该子网下随机分配 IP,Turbo系列当前不支持指定
809
- */
810
- MountIP?: string
811
-
812
- /**
813
- * 用户自定义文件系统名称
814
- */
815
- FsName?: string
816
-
817
- /**
818
- * 文件系统标签
819
- */
820
- ResourceTags?: Array<TagInfo>
821
-
822
- /**
823
- * 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。用于保证请求幂等性的字符串失效时间为2小时。
824
- */
825
- ClientToken?: string
826
-
827
- /**
828
- * 云联网ID, 若网络类型选择的是CCN,该字段为必填
829
- */
830
- CcnId?: string
831
-
832
- /**
833
- * 云联网中CFS使用的网段, 若网络类型选择的是Ccn,该字段为必填,且不能和Ccn中已经绑定的网段冲突
834
- */
835
- CidrBlock?: string
836
-
837
- /**
838
- * 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售40TiB,即40960 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,10240 GiB。
839
- */
840
- Capacity?: number
801
+
802
+ /**
803
+ * 可用区名称,例如ap-beijing-1,请参考 [概览](https://cloud.tencent.com/document/product/582/13225) 文档中的地域与可用区列表
804
+ */
805
+ Zone: string;
806
+
807
+ /**
808
+ * 网络类型,可选值为 VPC,BASIC,CCN;其中 VPC 为私有网络,BASIC 为基础网络, CCN 为云联网,Turbo系列当前必须选择云联网。目前基础网络已逐渐淘汰,不推荐使用。
809
+ */
810
+ NetInterface: string;
811
+
812
+ /**
813
+ * 权限组 ID,通用标准型和性能型必填,turbo系列请填写pgroupbasic
814
+ */
815
+ PGroupId: string;
816
+
817
+ /**
818
+ * 文件系统协议类型, 值为 NFS、CIFS、TURBO ; 若留空则默认为 NFS协议,turbo系列必须选择turbo,不支持NFS、CIFS
819
+ */
820
+ Protocol?: string;
821
+
822
+ /**
823
+ * 文件系统存储类型,默认值为 SD ;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
824
+ */
825
+ StorageType?: string;
826
+
827
+ /**
828
+ * 私有网络(VPC) ID,若网络类型选择的是VPC,该字段为必填。
829
+ */
830
+ VpcId?: string;
831
+
832
+ /**
833
+ * 子网 ID,若网络类型选择的是VPC,该字段为必填。
834
+ */
835
+ SubnetId?: string;
836
+
837
+ /**
838
+ * 指定IP地址,仅VPC网络支持;若不填写、将在该子网下随机分配 IP,Turbo系列当前不支持指定
839
+ */
840
+ MountIP?: string;
841
+
842
+ /**
843
+ * 用户自定义文件系统名称
844
+ */
845
+ FsName?: string;
846
+
847
+ /**
848
+ * 文件系统标签
849
+ */
850
+ ResourceTags?: Array<TagInfo>;
851
+
852
+ /**
853
+ * 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。用于保证请求幂等性的字符串失效时间为2小时。
854
+ */
855
+ ClientToken?: string;
856
+
857
+ /**
858
+ * 云联网ID, 若网络类型选择的是CCN,该字段为必填
859
+ */
860
+ CcnId?: string;
861
+
862
+ /**
863
+ * 云联网中CFS使用的网段, 若网络类型选择的是Ccn,该字段为必填,且不能和Ccn中已经绑定的网段冲突
864
+ */
865
+ CidrBlock?: string;
866
+
867
+ /**
868
+ * 文件系统容量,turbo系列必填,单位为GiB。 turbo标准型单位GB,起售40TiB,即40960 GiB;扩容步长20TiB,即20480 GiB。turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,10240 GiB。
869
+ */
870
+ Capacity?: number;
841
871
  }
842
872
 
843
873
  /**
844
874
  * DescribeMountTargets请求参数结构体
845
875
  */
846
876
  export interface DescribeMountTargetsRequest {
847
- /**
848
- * 文件系统 ID
849
- */
850
- FileSystemId: string
877
+
878
+ /**
879
+ * 文件系统 ID
880
+ */
881
+ FileSystemId: string;
851
882
  }
852
883
 
853
884
  /**
854
885
  * CreateCfsPGroup返回参数结构体
855
886
  */
856
887
  export interface CreateCfsPGroupResponse {
857
- /**
858
- * 权限组 ID
859
- */
860
- PGroupId?: string
861
-
862
- /**
863
- * 权限组名字
864
- */
865
- Name?: string
866
-
867
- /**
868
- * 权限组描述信息
869
- */
870
- DescInfo?: string
871
-
872
- /**
873
- * 已经与该权限组绑定的文件系统个数
874
- */
875
- BindCfsNum?: number
876
-
877
- /**
878
- * 权限组创建时间
879
- */
880
- CDate?: string
881
-
882
- /**
883
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
884
- */
885
- RequestId?: string
888
+
889
+ /**
890
+ * 权限组 ID
891
+ */
892
+ PGroupId: string;
893
+
894
+ /**
895
+ * 权限组名字
896
+ */
897
+ Name: string;
898
+
899
+ /**
900
+ * 权限组描述信息
901
+ */
902
+ DescInfo: string;
903
+
904
+ /**
905
+ * 已经与该权限组绑定的文件系统个数
906
+ */
907
+ BindCfsNum: number;
908
+
909
+ /**
910
+ * 权限组创建时间
911
+ */
912
+ CDate: string;
913
+
914
+ /**
915
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
916
+ */
917
+ RequestId?: string;
886
918
  }
887
919
 
888
920
  /**
@@ -899,115 +931,120 @@ export type DescribeCfsServiceStatusRequest = null
899
931
  * 权限组数组
900
932
  */
901
933
  export interface PGroupInfo {
902
- /**
903
- * 权限组ID
904
- */
905
- PGroupId: string
906
-
907
- /**
908
- * 权限组名称
909
- */
910
- Name: string
911
-
912
- /**
913
- * 描述信息
914
- */
915
- DescInfo: string
916
-
917
- /**
918
- * 创建时间
919
- */
920
- CDate: string
921
-
922
- /**
923
- * 关联文件系统个数
924
- */
925
- BindCfsNum: number
934
+
935
+ /**
936
+ * 权限组ID
937
+ */
938
+ PGroupId: string;
939
+
940
+ /**
941
+ * 权限组名称
942
+ */
943
+ Name: string;
944
+
945
+ /**
946
+ * 描述信息
947
+ */
948
+ DescInfo: string;
949
+
950
+ /**
951
+ * 创建时间
952
+ */
953
+ CDate: string;
954
+
955
+ /**
956
+ * 关联文件系统个数
957
+ */
958
+ BindCfsNum: number;
926
959
  }
927
960
 
928
961
  /**
929
962
  * SignUpCfsService返回参数结构体
930
963
  */
931
964
  export interface SignUpCfsServiceResponse {
932
- /**
933
- * 该用户当前 CFS 服务的状态,none 是未开通,creating 是开通中,created 是已开通
934
- */
935
- CfsServiceStatus?: string
936
-
937
- /**
938
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
939
- */
940
- RequestId?: string
965
+
966
+ /**
967
+ * 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
968
+ */
969
+ CfsServiceStatus: string;
970
+
971
+ /**
972
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
973
+ */
974
+ RequestId?: string;
941
975
  }
942
976
 
943
977
  /**
944
978
  * UpdateCfsFileSystemPGroup请求参数结构体
945
979
  */
946
980
  export interface UpdateCfsFileSystemPGroupRequest {
947
- /**
948
- * 权限组 ID
949
- */
950
- PGroupId: string
951
-
952
- /**
953
- * 文件系统 ID
954
- */
955
- FileSystemId: string
981
+
982
+ /**
983
+ * 权限组 ID
984
+ */
985
+ PGroupId: string;
986
+
987
+ /**
988
+ * 文件系统 ID
989
+ */
990
+ FileSystemId: string;
956
991
  }
957
992
 
958
993
  /**
959
994
  * DescribeCfsServiceStatus返回参数结构体
960
995
  */
961
996
  export interface DescribeCfsServiceStatusResponse {
962
- /**
963
- * 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
964
- */
965
- CfsServiceStatus?: string
966
-
967
- /**
968
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
969
- */
970
- RequestId?: string
997
+
998
+ /**
999
+ * 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
1000
+ */
1001
+ CfsServiceStatus: string;
1002
+
1003
+ /**
1004
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1005
+ */
1006
+ RequestId?: string;
971
1007
  }
972
1008
 
973
1009
  /**
974
1010
  * CreateCfsRule返回参数结构体
975
1011
  */
976
1012
  export interface CreateCfsRuleResponse {
977
- /**
978
- * 规则 ID
979
- */
980
- RuleId?: string
981
-
982
- /**
983
- * 权限组 ID
984
- */
985
- PGroupId?: string
986
-
987
- /**
988
- * 客户端 IP
989
- */
990
- AuthClientIp?: string
991
-
992
- /**
993
- * 读写权限
994
- */
995
- RWPermission?: string
996
-
997
- /**
998
- * 用户权限
999
- */
1000
- UserPermission?: string
1001
-
1002
- /**
1003
- * 优先级
1004
- */
1005
- Priority?: number
1006
-
1007
- /**
1008
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1009
- */
1010
- RequestId?: string
1013
+
1014
+ /**
1015
+ * 规则 ID
1016
+ */
1017
+ RuleId: string;
1018
+
1019
+ /**
1020
+ * 权限组 ID
1021
+ */
1022
+ PGroupId: string;
1023
+
1024
+ /**
1025
+ * 客户端 IP
1026
+ */
1027
+ AuthClientIp: string;
1028
+
1029
+ /**
1030
+ * 读写权限
1031
+ */
1032
+ RWPermission: string;
1033
+
1034
+ /**
1035
+ * 用户权限
1036
+ */
1037
+ UserPermission: string;
1038
+
1039
+ /**
1040
+ * 优先级
1041
+ */
1042
+ Priority: number;
1043
+
1044
+ /**
1045
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1046
+ */
1047
+ RequestId?: string;
1011
1048
  }
1012
1049
 
1013
1050
  /**
@@ -1015,168 +1052,179 @@ export interface CreateCfsRuleResponse {
1015
1052
 
1016
1053
  */
1017
1054
  export interface AvailableProtoStatus {
1018
- /**
1019
- * 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
1020
- */
1021
- SaleStatus: string
1022
-
1023
- /**
1024
- * 协议类型。可选值有 NFS、CIFS
1025
- */
1026
- Protocol: string
1055
+
1056
+ /**
1057
+ * 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
1058
+ */
1059
+ SaleStatus: string;
1060
+
1061
+ /**
1062
+ * 协议类型。可选值有 NFS、CIFS
1063
+ */
1064
+ Protocol: string;
1027
1065
  }
1028
1066
 
1029
1067
  /**
1030
1068
  * DescribeCfsRules请求参数结构体
1031
1069
  */
1032
1070
  export interface DescribeCfsRulesRequest {
1033
- /**
1034
- * 权限组 ID
1035
- */
1036
- PGroupId: string
1071
+
1072
+ /**
1073
+ * 权限组 ID
1074
+ */
1075
+ PGroupId: string;
1037
1076
  }
1038
1077
 
1039
1078
  /**
1040
1079
  * 权限组规则列表
1041
1080
  */
1042
1081
  export interface PGroupRuleInfo {
1043
- /**
1044
- * 规则ID
1045
- */
1046
- RuleId: string
1047
-
1048
- /**
1049
- * 允许访问的客户端IP
1050
- */
1051
- AuthClientIp: string
1052
-
1053
- /**
1054
- * 读写权限, ro为只读,rw为读写
1055
- */
1056
- RWPermission: string
1057
-
1058
- /**
1059
- * 用户权限。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。
1060
- */
1061
- UserPermission: string
1062
-
1063
- /**
1064
- * 规则优先级,1-100。 其中 1 为最高,100为最低
1065
- */
1066
- Priority: number
1082
+
1083
+ /**
1084
+ * 规则ID
1085
+ */
1086
+ RuleId: string;
1087
+
1088
+ /**
1089
+ * 允许访问的客户端IP
1090
+ */
1091
+ AuthClientIp: string;
1092
+
1093
+ /**
1094
+ * 读写权限, ro为只读,rw为读写
1095
+ */
1096
+ RWPermission: string;
1097
+
1098
+ /**
1099
+ * 用户权限。其中all_squash为所有访问用户都会被映射为匿名用户或用户组;no_all_squash为访问用户会先与本机用户匹配,匹配失败后再映射为匿名用户或用户组;root_squash为将来访的root用户映射为匿名用户或用户组;no_root_squash为来访的root用户保持root帐号权限。
1100
+ */
1101
+ UserPermission: string;
1102
+
1103
+ /**
1104
+ * 规则优先级,1-100。 其中 1 为最高,100为最低
1105
+ */
1106
+ Priority: number;
1067
1107
  }
1068
1108
 
1069
1109
  /**
1070
1110
  * DeleteCfsPGroup请求参数结构体
1071
1111
  */
1072
1112
  export interface DeleteCfsPGroupRequest {
1073
- /**
1074
- * 权限组 ID
1075
- */
1076
- PGroupId: string
1113
+
1114
+ /**
1115
+ * 权限组 ID
1116
+ */
1117
+ PGroupId: string;
1077
1118
  }
1078
1119
 
1079
1120
  /**
1080
1121
  * 版本控制-类型数组
1081
1122
  */
1082
1123
  export interface AvailableType {
1083
- /**
1084
- * 协议与售卖详情
1085
- */
1086
- Protocols: Array<AvailableProtoStatus>
1087
-
1088
- /**
1089
- * 存储类型。返回值中 SD 为标准型存储、HP 为性能型存储
1090
- */
1091
- Type: string
1092
-
1093
- /**
1094
- * 是否支持预付费。返回值中 true 为支持、false 为不支持
1095
- */
1096
- Prepayment: boolean
1124
+
1125
+ /**
1126
+ * 协议与售卖详情
1127
+ */
1128
+ Protocols: Array<AvailableProtoStatus>;
1129
+
1130
+ /**
1131
+ * 存储类型。返回值中 SD 为标准型存储、HP 为性能型存储
1132
+ */
1133
+ Type: string;
1134
+
1135
+ /**
1136
+ * 是否支持预付费。返回值中 true 为支持、false 为不支持
1137
+ */
1138
+ Prepayment: boolean;
1097
1139
  }
1098
1140
 
1099
1141
  /**
1100
1142
  * UpdateCfsFileSystemSizeLimit请求参数结构体
1101
1143
  */
1102
1144
  export interface UpdateCfsFileSystemSizeLimitRequest {
1103
- /**
1104
- * 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
1105
- */
1106
- FsLimit: number
1107
-
1108
- /**
1109
- * 文件系统ID,目前仅支持标准型文件系统。
1110
- */
1111
- FileSystemId: string
1145
+
1146
+ /**
1147
+ * 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
1148
+ */
1149
+ FsLimit: number;
1150
+
1151
+ /**
1152
+ * 文件系统ID,目前仅支持标准型文件系统。
1153
+ */
1154
+ FileSystemId: string;
1112
1155
  }
1113
1156
 
1114
1157
  /**
1115
1158
  * DeleteCfsFileSystem请求参数结构体
1116
1159
  */
1117
1160
  export interface DeleteCfsFileSystemRequest {
1118
- /**
1119
- * 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
1120
- */
1121
- FileSystemId: string
1161
+
1162
+ /**
1163
+ * 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
1164
+ */
1165
+ FileSystemId: string;
1122
1166
  }
1123
1167
 
1124
1168
  /**
1125
1169
  * UpdateCfsPGroup返回参数结构体
1126
1170
  */
1127
1171
  export interface UpdateCfsPGroupResponse {
1128
- /**
1129
- * 权限组ID
1130
- */
1131
- PGroupId?: string
1132
-
1133
- /**
1134
- * 权限组名称
1135
- */
1136
- Name?: string
1137
-
1138
- /**
1139
- * 描述信息
1140
- */
1141
- DescInfo?: string
1142
-
1143
- /**
1144
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1145
- */
1146
- RequestId?: string
1172
+
1173
+ /**
1174
+ * 权限组ID
1175
+ */
1176
+ PGroupId: string;
1177
+
1178
+ /**
1179
+ * 权限组名称
1180
+ */
1181
+ Name: string;
1182
+
1183
+ /**
1184
+ * 描述信息
1185
+ */
1186
+ DescInfo: string;
1187
+
1188
+ /**
1189
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1190
+ */
1191
+ RequestId?: string;
1147
1192
  }
1148
1193
 
1149
1194
  /**
1150
1195
  * DescribeCfsRules返回参数结构体
1151
1196
  */
1152
1197
  export interface DescribeCfsRulesResponse {
1153
- /**
1154
- * 权限组规则列表
1155
- */
1156
- RuleList?: Array<PGroupRuleInfo>
1157
-
1158
- /**
1159
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1160
- */
1161
- RequestId?: string
1198
+
1199
+ /**
1200
+ * 权限组规则列表
1201
+ */
1202
+ RuleList: Array<PGroupRuleInfo>;
1203
+
1204
+ /**
1205
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1206
+ */
1207
+ RequestId?: string;
1162
1208
  }
1163
1209
 
1164
1210
  /**
1165
1211
  * UpdateCfsFileSystemPGroup返回参数结构体
1166
1212
  */
1167
1213
  export interface UpdateCfsFileSystemPGroupResponse {
1168
- /**
1169
- * 权限组 ID
1170
- */
1171
- PGroupId?: string
1172
-
1173
- /**
1174
- * 文件系统 ID
1175
- */
1176
- FileSystemId?: string
1177
-
1178
- /**
1179
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1180
- */
1181
- RequestId?: string
1214
+
1215
+ /**
1216
+ * 权限组 ID
1217
+ */
1218
+ PGroupId: string;
1219
+
1220
+ /**
1221
+ * 文件系统 ID
1222
+ */
1223
+ FileSystemId: string;
1224
+
1225
+ /**
1226
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1227
+ */
1228
+ RequestId?: string;
1182
1229
  }
1230
+