tencentcloud-sdk-nodejs-cfs 4.0.431 → 4.0.432

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,679 +19,655 @@
19
19
  * DeleteCfsFileSystem返回参数结构体
20
20
  */
21
21
  export interface DeleteCfsFileSystemResponse {
22
-
23
- /**
24
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
25
- */
26
- RequestId?: string;
22
+ /**
23
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
24
+ */
25
+ RequestId?: string
27
26
  }
28
27
 
29
28
  /**
30
29
  * 版本控制-可用区数组
31
30
  */
32
31
  export interface AvailableZone {
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;
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
58
56
  }
59
57
 
60
58
  /**
61
59
  * UpdateCfsRule请求参数结构体
62
60
  */
63
61
  export interface UpdateCfsRuleRequest {
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;
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
94
91
  }
95
92
 
96
93
  /**
97
94
  * DescribeCfsFileSystems请求参数结构体
98
95
  */
99
96
  export interface DescribeCfsFileSystemsRequest {
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;
97
+ /**
98
+ * 文件系统 ID
99
+ */
100
+ FileSystemId?: string
101
+
102
+ /**
103
+ * 私有网络(VPC) ID
104
+ */
105
+ VpcId?: string
106
+
107
+ /**
108
+ * 子网 ID
109
+ */
110
+ SubnetId?: string
115
111
  }
116
112
 
117
113
  /**
118
114
  * DeleteMountTarget请求参数结构体
119
115
  */
120
116
  export interface DeleteMountTargetRequest {
121
-
122
- /**
123
- * 文件系统 ID
124
- */
125
- FileSystemId: string;
126
-
127
- /**
128
- * 挂载点 ID
129
- */
130
- MountTargetId: string;
117
+ /**
118
+ * 文件系统 ID
119
+ */
120
+ FileSystemId: string
121
+
122
+ /**
123
+ * 挂载点 ID
124
+ */
125
+ MountTargetId: string
131
126
  }
132
127
 
133
128
  /**
134
129
  * CreateCfsRule请求参数结构体
135
130
  */
136
131
  export interface CreateCfsRuleRequest {
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;
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
162
156
  }
163
157
 
164
158
  /**
165
159
  * 文件系统绑定权限组信息
166
160
  */
167
161
  export interface PGroup {
168
-
169
- /**
170
- * 权限组ID
171
- */
172
- PGroupId: string;
173
-
174
- /**
175
- * 权限组名称
176
- */
177
- Name: string;
162
+ /**
163
+ * 权限组ID
164
+ */
165
+ PGroupId: string
166
+
167
+ /**
168
+ * 权限组名称
169
+ */
170
+ Name: string
178
171
  }
179
172
 
180
173
  /**
181
174
  * DescribeAvailableZoneInfo返回参数结构体
182
175
  */
183
176
  export interface DescribeAvailableZoneInfoResponse {
184
-
185
- /**
186
- * 各可用区的资源售卖情况以及支持的存储类型、存储协议等信息
187
- */
188
- RegionZones: Array<AvailableRegion>;
189
-
190
- /**
191
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
192
- */
193
- RequestId?: string;
177
+ /**
178
+ * 各可用区的资源售卖情况以及支持的存储类型、存储协议等信息
179
+ */
180
+ RegionZones: Array<AvailableRegion>
181
+
182
+ /**
183
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
184
+ */
185
+ RequestId?: string
194
186
  }
195
187
 
196
188
  /**
197
189
  * UpdateCfsFileSystemName返回参数结构体
198
190
  */
199
191
  export interface UpdateCfsFileSystemNameResponse {
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;
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
220
211
  }
221
212
 
222
213
  /**
223
214
  * UpdateCfsFileSystemName请求参数结构体
224
215
  */
225
216
  export interface UpdateCfsFileSystemNameRequest {
226
-
227
- /**
228
- * 文件系统 ID
229
- */
230
- FileSystemId: string;
231
-
232
- /**
233
- * 用户自定义文件系统名称
234
- */
235
- FsName?: string;
217
+ /**
218
+ * 文件系统 ID
219
+ */
220
+ FileSystemId: string
221
+
222
+ /**
223
+ * 用户自定义文件系统名称
224
+ */
225
+ FsName?: string
236
226
  }
237
227
 
238
228
  /**
239
229
  * DescribeCfsPGroups返回参数结构体
240
230
  */
241
231
  export interface DescribeCfsPGroupsResponse {
242
-
243
- /**
244
- * 权限组信息列表
245
- */
246
- PGroupList: Array<PGroupInfo>;
247
-
248
- /**
249
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
250
- */
251
- RequestId?: string;
232
+ /**
233
+ * 权限组信息列表
234
+ */
235
+ PGroupList: Array<PGroupInfo>
236
+
237
+ /**
238
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
239
+ */
240
+ RequestId?: string
252
241
  }
253
242
 
254
243
  /**
255
244
  * DescribeCfsFileSystemClients返回参数结构体
256
245
  */
257
246
  export interface DescribeCfsFileSystemClientsResponse {
258
-
259
- /**
260
- * 客户端列表
261
- */
262
- ClientList: Array<FileSystemClient>;
263
-
264
- /**
265
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
266
- */
267
- RequestId?: string;
247
+ /**
248
+ * 客户端列表
249
+ */
250
+ ClientList: Array<FileSystemClient>
251
+
252
+ /**
253
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
254
+ */
255
+ RequestId?: string
268
256
  }
269
257
 
270
258
  /**
271
259
  * DeleteMountTarget返回参数结构体
272
260
  */
273
261
  export interface DeleteMountTargetResponse {
274
-
275
- /**
276
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
277
- */
278
- RequestId?: string;
262
+ /**
263
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
264
+ */
265
+ RequestId?: string
279
266
  }
280
267
 
281
268
  /**
282
269
  * DescribeMountTargets返回参数结构体
283
270
  */
284
271
  export interface DescribeMountTargetsResponse {
285
-
286
- /**
287
- * 挂载点详情
288
- */
289
- MountTargets: Array<MountInfo>;
290
-
291
- /**
292
- * 挂载点数量
293
- */
294
- NumberOfMountTargets: number;
295
-
296
- /**
297
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
298
- */
299
- RequestId?: string;
272
+ /**
273
+ * 挂载点详情
274
+ */
275
+ MountTargets: Array<MountInfo>
276
+
277
+ /**
278
+ * 挂载点数量
279
+ */
280
+ NumberOfMountTargets: number
281
+
282
+ /**
283
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
284
+ */
285
+ RequestId?: string
300
286
  }
301
287
 
302
288
  /**
303
289
  * DeleteCfsRule返回参数结构体
304
290
  */
305
291
  export interface DeleteCfsRuleResponse {
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;
292
+ /**
293
+ * 规则 ID
294
+ */
295
+ RuleId: string
296
+
297
+ /**
298
+ * 权限组 ID
299
+ */
300
+ PGroupId: string
301
+
302
+ /**
303
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
304
+ */
305
+ RequestId?: string
321
306
  }
322
307
 
323
308
  /**
324
309
  * DeleteCfsRule请求参数结构体
325
310
  */
326
311
  export interface DeleteCfsRuleRequest {
327
-
328
- /**
329
- * 权限组 ID
330
- */
331
- PGroupId: string;
332
-
333
- /**
334
- * 规则 ID
335
- */
336
- RuleId: string;
312
+ /**
313
+ * 权限组 ID
314
+ */
315
+ PGroupId: string
316
+
317
+ /**
318
+ * 规则 ID
319
+ */
320
+ RuleId: string
337
321
  }
338
322
 
339
323
  /**
340
324
  * UpdateCfsPGroup请求参数结构体
341
325
  */
342
326
  export interface UpdateCfsPGroupRequest {
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;
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
358
341
  }
359
342
 
360
343
  /**
361
344
  * 挂载点信息
362
345
  */
363
346
  export interface MountInfo {
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;
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
424
406
  }
425
407
 
426
408
  /**
427
409
  * UpdateCfsRule返回参数结构体
428
410
  */
429
411
  export interface UpdateCfsRuleResponse {
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;
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
465
446
  }
466
447
 
467
448
  /**
468
449
  * 文件系统客户端信息
469
450
  */
470
451
  export interface FileSystemClient {
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;
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
501
481
  }
502
482
 
503
483
  /**
504
484
  * DescribeCfsFileSystems返回参数结构体
505
485
  */
506
486
  export interface DescribeCfsFileSystemsResponse {
507
-
508
- /**
509
- * 文件系统信息
510
- */
511
- FileSystems: Array<FileSystemInfo>;
512
-
513
- /**
514
- * 文件系统总数
515
- */
516
- TotalCount: number;
517
-
518
- /**
519
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
520
- */
521
- RequestId?: string;
487
+ /**
488
+ * 文件系统信息
489
+ */
490
+ FileSystems: Array<FileSystemInfo>
491
+
492
+ /**
493
+ * 文件系统总数
494
+ */
495
+ TotalCount: number
496
+
497
+ /**
498
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
499
+ */
500
+ RequestId?: string
522
501
  }
523
502
 
524
503
  /**
525
504
  * CreateCfsFileSystem返回参数结构体
526
505
  */
527
506
  export interface CreateCfsFileSystemResponse {
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;
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
573
551
  }
574
552
 
575
553
  /**
576
554
  * 文件系统基本信息
577
555
  */
578
556
  export interface FileSystemInfo {
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>;
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>
679
656
  }
680
657
 
681
658
  /**
682
659
  * Tag信息单元
683
660
  */
684
661
  export interface TagInfo {
685
-
686
- /**
687
- * 标签键
688
- */
689
- TagKey: string;
690
-
691
- /**
692
- * 标签值
693
- */
694
- TagValue: string;
662
+ /**
663
+ * 标签键
664
+ */
665
+ TagKey: string
666
+
667
+ /**
668
+ * 标签值
669
+ */
670
+ TagValue: string
695
671
  }
696
672
 
697
673
  /**
@@ -703,59 +679,55 @@ export type DescribeCfsPGroupsRequest = null
703
679
  * DescribeCfsFileSystemClients请求参数结构体
704
680
  */
705
681
  export interface DescribeCfsFileSystemClientsRequest {
706
-
707
- /**
708
- * 文件系统 ID。
709
- */
710
- FileSystemId: string;
682
+ /**
683
+ * 文件系统 ID。
684
+ */
685
+ FileSystemId: string
711
686
  }
712
687
 
713
688
  /**
714
689
  * CreateCfsPGroup请求参数结构体
715
690
  */
716
691
  export interface CreateCfsPGroupRequest {
717
-
718
- /**
719
- * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
720
- */
721
- Name: string;
722
-
723
- /**
724
- * 权限组描述信息,1-255个字符
725
- */
726
- DescInfo?: string;
692
+ /**
693
+ * 权限组名称,1-64个字符且只能为中文,字母,数字,下划线或横线
694
+ */
695
+ Name: string
696
+
697
+ /**
698
+ * 权限组描述信息,1-255个字符
699
+ */
700
+ DescInfo?: string
727
701
  }
728
702
 
729
703
  /**
730
704
  * DeleteCfsPGroup返回参数结构体
731
705
  */
732
706
  export interface DeleteCfsPGroupResponse {
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;
707
+ /**
708
+ * 权限组 ID
709
+ */
710
+ PGroupId: string
711
+
712
+ /**
713
+ * 用户 ID
714
+ */
715
+ AppId: number
716
+
717
+ /**
718
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
719
+ */
720
+ RequestId?: string
748
721
  }
749
722
 
750
723
  /**
751
724
  * UpdateCfsFileSystemSizeLimit返回参数结构体
752
725
  */
753
726
  export interface UpdateCfsFileSystemSizeLimitResponse {
754
-
755
- /**
756
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
757
- */
758
- RequestId?: string;
727
+ /**
728
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
729
+ */
730
+ RequestId?: string
759
731
  }
760
732
 
761
733
  /**
@@ -767,154 +739,150 @@ export type DescribeAvailableZoneInfoRequest = null
767
739
  * 版本控制-区域数组
768
740
  */
769
741
  export interface AvailableRegion {
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;
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
795
766
  }
796
767
 
797
768
  /**
798
769
  * CreateCfsFileSystem请求参数结构体
799
770
  */
800
771
  export interface CreateCfsFileSystemRequest {
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;
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
871
841
  }
872
842
 
873
843
  /**
874
844
  * DescribeMountTargets请求参数结构体
875
845
  */
876
846
  export interface DescribeMountTargetsRequest {
877
-
878
- /**
879
- * 文件系统 ID
880
- */
881
- FileSystemId: string;
847
+ /**
848
+ * 文件系统 ID
849
+ */
850
+ FileSystemId: string
882
851
  }
883
852
 
884
853
  /**
885
854
  * CreateCfsPGroup返回参数结构体
886
855
  */
887
856
  export interface CreateCfsPGroupResponse {
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;
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
918
886
  }
919
887
 
920
888
  /**
@@ -931,120 +899,115 @@ export type DescribeCfsServiceStatusRequest = null
931
899
  * 权限组数组
932
900
  */
933
901
  export interface PGroupInfo {
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;
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
959
926
  }
960
927
 
961
928
  /**
962
929
  * SignUpCfsService返回参数结构体
963
930
  */
964
931
  export interface SignUpCfsServiceResponse {
965
-
966
- /**
967
- * 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
968
- */
969
- CfsServiceStatus: string;
970
-
971
- /**
972
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
973
- */
974
- RequestId?: string;
932
+ /**
933
+ * 该用户当前 CFS 服务的状态,creating 是开通中,created 是已开通
934
+ */
935
+ CfsServiceStatus: string
936
+
937
+ /**
938
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
939
+ */
940
+ RequestId?: string
975
941
  }
976
942
 
977
943
  /**
978
944
  * UpdateCfsFileSystemPGroup请求参数结构体
979
945
  */
980
946
  export interface UpdateCfsFileSystemPGroupRequest {
981
-
982
- /**
983
- * 权限组 ID
984
- */
985
- PGroupId: string;
986
-
987
- /**
988
- * 文件系统 ID
989
- */
990
- FileSystemId: string;
947
+ /**
948
+ * 权限组 ID
949
+ */
950
+ PGroupId: string
951
+
952
+ /**
953
+ * 文件系统 ID
954
+ */
955
+ FileSystemId: string
991
956
  }
992
957
 
993
958
  /**
994
959
  * DescribeCfsServiceStatus返回参数结构体
995
960
  */
996
961
  export interface DescribeCfsServiceStatusResponse {
997
-
998
- /**
999
- * 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
1000
- */
1001
- CfsServiceStatus: string;
1002
-
1003
- /**
1004
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1005
- */
1006
- RequestId?: string;
962
+ /**
963
+ * 该用户当前 CFS 服务的状态,none 为未开通,creating 为开通中,created 为已开通
964
+ */
965
+ CfsServiceStatus: string
966
+
967
+ /**
968
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
969
+ */
970
+ RequestId?: string
1007
971
  }
1008
972
 
1009
973
  /**
1010
974
  * CreateCfsRule返回参数结构体
1011
975
  */
1012
976
  export interface CreateCfsRuleResponse {
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;
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
1048
1011
  }
1049
1012
 
1050
1013
  /**
@@ -1052,179 +1015,168 @@ export interface CreateCfsRuleResponse {
1052
1015
 
1053
1016
  */
1054
1017
  export interface AvailableProtoStatus {
1055
-
1056
- /**
1057
- * 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
1058
- */
1059
- SaleStatus: string;
1060
-
1061
- /**
1062
- * 协议类型。可选值有 NFS、CIFS
1063
- */
1064
- Protocol: string;
1018
+ /**
1019
+ * 售卖状态。可选值有 sale_out 售罄、saling可售、no_saling不可销售
1020
+ */
1021
+ SaleStatus: string
1022
+
1023
+ /**
1024
+ * 协议类型。可选值有 NFS、CIFS
1025
+ */
1026
+ Protocol: string
1065
1027
  }
1066
1028
 
1067
1029
  /**
1068
1030
  * DescribeCfsRules请求参数结构体
1069
1031
  */
1070
1032
  export interface DescribeCfsRulesRequest {
1071
-
1072
- /**
1073
- * 权限组 ID
1074
- */
1075
- PGroupId: string;
1033
+ /**
1034
+ * 权限组 ID
1035
+ */
1036
+ PGroupId: string
1076
1037
  }
1077
1038
 
1078
1039
  /**
1079
1040
  * 权限组规则列表
1080
1041
  */
1081
1042
  export interface PGroupRuleInfo {
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;
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
1107
1067
  }
1108
1068
 
1109
1069
  /**
1110
1070
  * DeleteCfsPGroup请求参数结构体
1111
1071
  */
1112
1072
  export interface DeleteCfsPGroupRequest {
1113
-
1114
- /**
1115
- * 权限组 ID
1116
- */
1117
- PGroupId: string;
1073
+ /**
1074
+ * 权限组 ID
1075
+ */
1076
+ PGroupId: string
1118
1077
  }
1119
1078
 
1120
1079
  /**
1121
1080
  * 版本控制-类型数组
1122
1081
  */
1123
1082
  export interface AvailableType {
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;
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
1139
1097
  }
1140
1098
 
1141
1099
  /**
1142
1100
  * UpdateCfsFileSystemSizeLimit请求参数结构体
1143
1101
  */
1144
1102
  export interface UpdateCfsFileSystemSizeLimitRequest {
1145
-
1146
- /**
1147
- * 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
1148
- */
1149
- FsLimit: number;
1150
-
1151
- /**
1152
- * 文件系统ID,目前仅支持标准型文件系统。
1153
- */
1154
- FileSystemId: string;
1103
+ /**
1104
+ * 文件系统容量限制大小,输入范围0-1073741824, 单位为GB;其中输入值为0时,表示不限制文件系统容量。
1105
+ */
1106
+ FsLimit: number
1107
+
1108
+ /**
1109
+ * 文件系统ID,目前仅支持标准型文件系统。
1110
+ */
1111
+ FileSystemId: string
1155
1112
  }
1156
1113
 
1157
1114
  /**
1158
1115
  * DeleteCfsFileSystem请求参数结构体
1159
1116
  */
1160
1117
  export interface DeleteCfsFileSystemRequest {
1161
-
1162
- /**
1163
- * 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
1164
- */
1165
- FileSystemId: string;
1118
+ /**
1119
+ * 文件系统 ID。说明,进行删除文件系统操作前需要先调用 DeleteMountTarget 接口删除该文件系统的挂载点,否则会删除失败。
1120
+ */
1121
+ FileSystemId: string
1166
1122
  }
1167
1123
 
1168
1124
  /**
1169
1125
  * UpdateCfsPGroup返回参数结构体
1170
1126
  */
1171
1127
  export interface UpdateCfsPGroupResponse {
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;
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
1192
1147
  }
1193
1148
 
1194
1149
  /**
1195
1150
  * DescribeCfsRules返回参数结构体
1196
1151
  */
1197
1152
  export interface DescribeCfsRulesResponse {
1198
-
1199
- /**
1200
- * 权限组规则列表
1201
- */
1202
- RuleList: Array<PGroupRuleInfo>;
1203
-
1204
- /**
1205
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1206
- */
1207
- RequestId?: string;
1153
+ /**
1154
+ * 权限组规则列表
1155
+ */
1156
+ RuleList: Array<PGroupRuleInfo>
1157
+
1158
+ /**
1159
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1160
+ */
1161
+ RequestId?: string
1208
1162
  }
1209
1163
 
1210
1164
  /**
1211
1165
  * UpdateCfsFileSystemPGroup返回参数结构体
1212
1166
  */
1213
1167
  export interface UpdateCfsFileSystemPGroupResponse {
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;
1168
+ /**
1169
+ * 权限组 ID
1170
+ */
1171
+ PGroupId: string
1172
+
1173
+ /**
1174
+ * 文件系统 ID
1175
+ */
1176
+ FileSystemId: string
1177
+
1178
+ /**
1179
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1180
+ */
1181
+ RequestId?: string
1229
1182
  }
1230
-