tencentcloud-sdk-nodejs-chdfs 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.
- package/CHANGELOG.md +6462 -0
- package/README.md +3 -3
- package/SERVICE_CHANGELOG.md +4451 -124
- package/package.json +1 -1
- package/products.md +104 -100
- package/src/services/chdfs/index.ts +9 -6
- package/src/services/chdfs/v20190718/chdfs_client.ts +197 -271
- package/src/services/chdfs/v20190718/chdfs_models.ts +651 -589
- package/src/services/chdfs/v20190718/index.ts +3 -3
- package/src/services/chdfs/v20201112/chdfs_client.ts +276 -359
- package/src/services/chdfs/v20201112/chdfs_models.ts +723 -657
- package/src/services/chdfs/v20201112/index.ts +3 -3
- package/tencentcloud/services/chdfs/index.d.ts +4 -4
- package/tencentcloud/services/chdfs/index.js +2 -2
- package/tencentcloud/services/chdfs/v20190718/chdfs_client.d.ts +104 -104
- package/tencentcloud/services/chdfs/v20190718/chdfs_client.js +104 -104
- package/tencentcloud/services/chdfs/v20190718/chdfs_models.d.ts +284 -284
- package/tencentcloud/services/chdfs/v20190718/index.js +1 -1
- package/tencentcloud/services/chdfs/v20201112/chdfs_models.d.ts +317 -317
- package/tencentcloud/services/chdfs/v20201112/index.js +1 -1
@@ -3,12 +3,12 @@
|
|
3
3
|
*/
|
4
4
|
export interface CreateFileSystemResponse {
|
5
5
|
/**
|
6
|
-
|
7
|
-
|
6
|
+
* 文件系统
|
7
|
+
*/
|
8
8
|
FileSystem?: FileSystem;
|
9
9
|
/**
|
10
|
-
|
11
|
-
|
10
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
11
|
+
*/
|
12
12
|
RequestId?: string;
|
13
13
|
}
|
14
14
|
/**
|
@@ -16,24 +16,24 @@ export interface CreateFileSystemResponse {
|
|
16
16
|
*/
|
17
17
|
export interface AccessRule {
|
18
18
|
/**
|
19
|
-
|
20
|
-
|
19
|
+
* 权限规则ID
|
20
|
+
*/
|
21
21
|
AccessRuleId?: number;
|
22
22
|
/**
|
23
|
-
|
24
|
-
|
23
|
+
* 权限规则地址(网段或IP)
|
24
|
+
*/
|
25
25
|
Address?: string;
|
26
26
|
/**
|
27
|
-
|
28
|
-
|
27
|
+
* 权限规则访问模式(1:只读;2:读写)
|
28
|
+
*/
|
29
29
|
AccessMode?: number;
|
30
30
|
/**
|
31
|
-
|
32
|
-
|
31
|
+
* 优先级(取值范围1~100,值越小优先级越高)
|
32
|
+
*/
|
33
33
|
Priority?: number;
|
34
34
|
/**
|
35
|
-
|
36
|
-
|
35
|
+
* 创建时间
|
36
|
+
*/
|
37
37
|
CreateTime?: string;
|
38
38
|
}
|
39
39
|
/**
|
@@ -41,27 +41,27 @@ export interface AccessRule {
|
|
41
41
|
*/
|
42
42
|
export interface DescribeFileSystemResponse {
|
43
43
|
/**
|
44
|
-
|
45
|
-
|
44
|
+
* 文件系统
|
45
|
+
*/
|
46
46
|
FileSystem?: FileSystem;
|
47
47
|
/**
|
48
|
-
|
49
|
-
|
50
|
-
|
48
|
+
* 文件系统已使用容量(已弃用)
|
49
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
50
|
+
*/
|
51
51
|
FileSystemCapacityUsed?: number;
|
52
52
|
/**
|
53
|
-
|
54
|
-
|
55
|
-
|
53
|
+
* 已使用容量(byte),包括标准和归档存储
|
54
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
55
|
+
*/
|
56
56
|
CapacityUsed?: number;
|
57
57
|
/**
|
58
|
-
|
59
|
-
|
60
|
-
|
58
|
+
* 已使用归档存储容量(byte)
|
59
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
60
|
+
*/
|
61
61
|
ArchiveCapacityUsed?: number;
|
62
62
|
/**
|
63
|
-
|
64
|
-
|
63
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
64
|
+
*/
|
65
65
|
RequestId?: string;
|
66
66
|
}
|
67
67
|
/**
|
@@ -69,20 +69,20 @@ export interface DescribeFileSystemResponse {
|
|
69
69
|
*/
|
70
70
|
export interface AccessGroup {
|
71
71
|
/**
|
72
|
-
|
73
|
-
|
72
|
+
* 权限组ID
|
73
|
+
*/
|
74
74
|
AccessGroupId: string;
|
75
75
|
/**
|
76
|
-
|
77
|
-
|
76
|
+
* 权限组名称
|
77
|
+
*/
|
78
78
|
AccessGroupName: string;
|
79
79
|
/**
|
80
|
-
|
81
|
-
|
80
|
+
* 权限组描述
|
81
|
+
*/
|
82
82
|
Description: string;
|
83
83
|
/**
|
84
|
-
|
85
|
-
|
84
|
+
* 创建时间
|
85
|
+
*/
|
86
86
|
CreateTime: string;
|
87
87
|
}
|
88
88
|
/**
|
@@ -90,8 +90,8 @@ export interface AccessGroup {
|
|
90
90
|
*/
|
91
91
|
export interface ModifyFileSystemResponse {
|
92
92
|
/**
|
93
|
-
|
94
|
-
|
93
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
94
|
+
*/
|
95
95
|
RequestId?: string;
|
96
96
|
}
|
97
97
|
/**
|
@@ -99,21 +99,21 @@ export interface ModifyFileSystemResponse {
|
|
99
99
|
*/
|
100
100
|
export interface ModifyFileSystemRequest {
|
101
101
|
/**
|
102
|
-
|
103
|
-
|
102
|
+
* 文件系统ID
|
103
|
+
*/
|
104
104
|
FileSystemId: string;
|
105
105
|
/**
|
106
|
-
|
107
|
-
|
106
|
+
* 文件系统名称
|
107
|
+
*/
|
108
108
|
FileSystemName?: string;
|
109
109
|
/**
|
110
|
-
|
111
|
-
|
110
|
+
* 文件系统描述
|
111
|
+
*/
|
112
112
|
Description?: string;
|
113
113
|
/**
|
114
|
-
|
115
|
-
|
116
|
-
|
114
|
+
* 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍
|
115
|
+
注意:修改的文件系统容量不能小于当前使用量
|
116
|
+
*/
|
117
117
|
CapacityQuota?: number;
|
118
118
|
}
|
119
119
|
/**
|
@@ -121,8 +121,8 @@ export interface ModifyFileSystemRequest {
|
|
121
121
|
*/
|
122
122
|
export interface DescribeLifeCycleRulesRequest {
|
123
123
|
/**
|
124
|
-
|
125
|
-
|
124
|
+
* 文件系统ID
|
125
|
+
*/
|
126
126
|
FileSystemId: string;
|
127
127
|
}
|
128
128
|
/**
|
@@ -130,16 +130,16 @@ export interface DescribeLifeCycleRulesRequest {
|
|
130
130
|
*/
|
131
131
|
export interface ModifyAccessGroupRequest {
|
132
132
|
/**
|
133
|
-
|
134
|
-
|
133
|
+
* 权限组ID
|
134
|
+
*/
|
135
135
|
AccessGroupId: string;
|
136
136
|
/**
|
137
|
-
|
138
|
-
|
137
|
+
* 权限组名称
|
138
|
+
*/
|
139
139
|
AccessGroupName?: string;
|
140
140
|
/**
|
141
|
-
|
142
|
-
|
141
|
+
* 权限组描述
|
142
|
+
*/
|
143
143
|
Description?: string;
|
144
144
|
}
|
145
145
|
/**
|
@@ -147,12 +147,12 @@ export interface ModifyAccessGroupRequest {
|
|
147
147
|
*/
|
148
148
|
export interface DescribeFileSystemsResponse {
|
149
149
|
/**
|
150
|
-
|
151
|
-
|
150
|
+
* 文件系统列表
|
151
|
+
*/
|
152
152
|
FileSystems?: Array<FileSystem>;
|
153
153
|
/**
|
154
|
-
|
155
|
-
|
154
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
155
|
+
*/
|
156
156
|
RequestId?: string;
|
157
157
|
}
|
158
158
|
/**
|
@@ -160,8 +160,8 @@ export interface DescribeFileSystemsResponse {
|
|
160
160
|
*/
|
161
161
|
export interface DescribeFileSystemRequest {
|
162
162
|
/**
|
163
|
-
|
164
|
-
|
163
|
+
* 文件系统ID
|
164
|
+
*/
|
165
165
|
FileSystemId: string;
|
166
166
|
}
|
167
167
|
/**
|
@@ -169,28 +169,28 @@ export interface DescribeFileSystemRequest {
|
|
169
169
|
*/
|
170
170
|
export interface CreateMountPointRequest {
|
171
171
|
/**
|
172
|
-
|
173
|
-
|
172
|
+
* 挂载点名称
|
173
|
+
*/
|
174
174
|
MountPointName: string;
|
175
175
|
/**
|
176
|
-
|
177
|
-
|
176
|
+
* 文件系统ID
|
177
|
+
*/
|
178
178
|
FileSystemId: string;
|
179
179
|
/**
|
180
|
-
|
181
|
-
|
180
|
+
* 权限组ID
|
181
|
+
*/
|
182
182
|
AccessGroupId: string;
|
183
183
|
/**
|
184
|
-
|
185
|
-
|
184
|
+
* VPC网络ID
|
185
|
+
*/
|
186
186
|
VpcId: string;
|
187
187
|
/**
|
188
|
-
|
189
|
-
|
188
|
+
* 挂载点状态(1:打开;2:关闭)
|
189
|
+
*/
|
190
190
|
MountPointStatus: number;
|
191
191
|
/**
|
192
|
-
|
193
|
-
|
192
|
+
* VPC网络类型(1:CVM;2:黑石1.0;3:黑石2.0)
|
193
|
+
*/
|
194
194
|
VpcType: number;
|
195
195
|
}
|
196
196
|
/**
|
@@ -198,8 +198,8 @@ export interface CreateMountPointRequest {
|
|
198
198
|
*/
|
199
199
|
export interface DeleteAccessGroupRequest {
|
200
200
|
/**
|
201
|
-
|
202
|
-
|
201
|
+
* 权限组ID
|
202
|
+
*/
|
203
203
|
AccessGroupId: string;
|
204
204
|
}
|
205
205
|
/**
|
@@ -207,8 +207,8 @@ export interface DeleteAccessGroupRequest {
|
|
207
207
|
*/
|
208
208
|
export interface ModifyLifeCycleRulesRequest {
|
209
209
|
/**
|
210
|
-
|
211
|
-
|
210
|
+
* 多个生命周期规则,上限为10
|
211
|
+
*/
|
212
212
|
LifeCycleRules: Array<LifeCycleRule>;
|
213
213
|
}
|
214
214
|
/**
|
@@ -216,8 +216,8 @@ export interface ModifyLifeCycleRulesRequest {
|
|
216
216
|
*/
|
217
217
|
export interface CreateRestoreTasksResponse {
|
218
218
|
/**
|
219
|
-
|
220
|
-
|
219
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
220
|
+
*/
|
221
221
|
RequestId?: string;
|
222
222
|
}
|
223
223
|
/**
|
@@ -225,8 +225,8 @@ export interface CreateRestoreTasksResponse {
|
|
225
225
|
*/
|
226
226
|
export interface DeleteFileSystemRequest {
|
227
227
|
/**
|
228
|
-
|
229
|
-
|
228
|
+
* 文件系统ID
|
229
|
+
*/
|
230
230
|
FileSystemId: string;
|
231
231
|
}
|
232
232
|
/**
|
@@ -234,22 +234,22 @@ export interface DeleteFileSystemRequest {
|
|
234
234
|
*/
|
235
235
|
export interface DescribeMountPointsRequest {
|
236
236
|
/**
|
237
|
-
|
238
|
-
|
239
|
-
|
237
|
+
* 文件系统ID
|
238
|
+
注意:若根据AccessGroupId查看挂载点列表,则无需设置FileSystemId
|
239
|
+
*/
|
240
240
|
FileSystemId?: string;
|
241
241
|
/**
|
242
|
-
|
243
|
-
|
244
|
-
|
242
|
+
* 权限组ID
|
243
|
+
注意:若根据FileSystemId查看挂载点列表,则无需设置AccessGroupId
|
244
|
+
*/
|
245
245
|
AccessGroupId?: string;
|
246
246
|
/**
|
247
|
-
|
248
|
-
|
247
|
+
* 偏移量,默认为0
|
248
|
+
*/
|
249
249
|
Offset?: number;
|
250
250
|
/**
|
251
|
-
|
252
|
-
|
251
|
+
* 返回数量,默认为所有
|
252
|
+
*/
|
253
253
|
Limit?: number;
|
254
254
|
}
|
255
255
|
/**
|
@@ -257,8 +257,8 @@ export interface DescribeMountPointsRequest {
|
|
257
257
|
*/
|
258
258
|
export interface DescribeMountPointRequest {
|
259
259
|
/**
|
260
|
-
|
261
|
-
|
260
|
+
* 挂载点ID
|
261
|
+
*/
|
262
262
|
MountPointId: string;
|
263
263
|
}
|
264
264
|
/**
|
@@ -266,16 +266,16 @@ export interface DescribeMountPointRequest {
|
|
266
266
|
*/
|
267
267
|
export interface DescribeAccessGroupsRequest {
|
268
268
|
/**
|
269
|
-
|
270
|
-
|
269
|
+
* 过滤条件,Name可选“AccessGroupId“和“AccessGroupName”,Values上限为10
|
270
|
+
*/
|
271
271
|
Filters?: Array<Filter>;
|
272
272
|
/**
|
273
|
-
|
274
|
-
|
273
|
+
* 偏移量,默认为0
|
274
|
+
*/
|
275
275
|
Offset?: number;
|
276
276
|
/**
|
277
|
-
|
278
|
-
|
277
|
+
* 返回数量,默认为所有
|
278
|
+
*/
|
279
279
|
Limit?: number;
|
280
280
|
}
|
281
281
|
/**
|
@@ -283,8 +283,8 @@ export interface DescribeAccessGroupsRequest {
|
|
283
283
|
*/
|
284
284
|
export interface DeleteAccessGroupResponse {
|
285
285
|
/**
|
286
|
-
|
287
|
-
|
286
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
287
|
+
*/
|
288
288
|
RequestId?: string;
|
289
289
|
}
|
290
290
|
/**
|
@@ -292,8 +292,8 @@ export interface DeleteAccessGroupResponse {
|
|
292
292
|
*/
|
293
293
|
export interface ModifyLifeCycleRulesResponse {
|
294
294
|
/**
|
295
|
-
|
296
|
-
|
295
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
296
|
+
*/
|
297
297
|
RequestId?: string;
|
298
298
|
}
|
299
299
|
/**
|
@@ -301,8 +301,8 @@ export interface ModifyLifeCycleRulesResponse {
|
|
301
301
|
*/
|
302
302
|
export interface DeleteMountPointResponse {
|
303
303
|
/**
|
304
|
-
|
305
|
-
|
304
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
305
|
+
*/
|
306
306
|
RequestId?: string;
|
307
307
|
}
|
308
308
|
/**
|
@@ -310,12 +310,12 @@ export interface DeleteMountPointResponse {
|
|
310
310
|
*/
|
311
311
|
export interface CreateMountPointResponse {
|
312
312
|
/**
|
313
|
-
|
314
|
-
|
313
|
+
* 挂载点
|
314
|
+
*/
|
315
315
|
MountPoint?: MountPoint;
|
316
316
|
/**
|
317
|
-
|
318
|
-
|
317
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
318
|
+
*/
|
319
319
|
RequestId?: string;
|
320
320
|
}
|
321
321
|
/**
|
@@ -323,16 +323,16 @@ export interface CreateMountPointResponse {
|
|
323
323
|
*/
|
324
324
|
export interface CreateFileSystemRequest {
|
325
325
|
/**
|
326
|
-
|
327
|
-
|
326
|
+
* 文件系统名称
|
327
|
+
*/
|
328
328
|
FileSystemName: string;
|
329
329
|
/**
|
330
|
-
|
331
|
-
|
330
|
+
* 文件系统容量(byte),下限为1G,上限为1P,且必须是1G的整数倍
|
331
|
+
*/
|
332
332
|
CapacityQuota: number;
|
333
333
|
/**
|
334
|
-
|
335
|
-
|
334
|
+
* 文件系统描述
|
335
|
+
*/
|
336
336
|
Description?: string;
|
337
337
|
}
|
338
338
|
/**
|
@@ -340,12 +340,12 @@ export interface CreateFileSystemRequest {
|
|
340
340
|
*/
|
341
341
|
export interface ModifyResourceTagsRequest {
|
342
342
|
/**
|
343
|
-
|
344
|
-
|
343
|
+
* 文件系统ID
|
344
|
+
*/
|
345
345
|
FileSystemId: string;
|
346
346
|
/**
|
347
|
-
|
348
|
-
|
347
|
+
* 多个资源标签,可以为空数组
|
348
|
+
*/
|
349
349
|
Tags?: Array<Tag>;
|
350
350
|
}
|
351
351
|
/**
|
@@ -353,12 +353,12 @@ export interface ModifyResourceTagsRequest {
|
|
353
353
|
*/
|
354
354
|
export interface DescribeResourceTagsResponse {
|
355
355
|
/**
|
356
|
-
|
357
|
-
|
356
|
+
* 资源标签列表
|
357
|
+
*/
|
358
358
|
Tags?: Array<Tag>;
|
359
359
|
/**
|
360
|
-
|
361
|
-
|
360
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
361
|
+
*/
|
362
362
|
RequestId?: string;
|
363
363
|
}
|
364
364
|
/**
|
@@ -366,12 +366,12 @@ export interface DescribeResourceTagsResponse {
|
|
366
366
|
*/
|
367
367
|
export interface DescribeAccessGroupsResponse {
|
368
368
|
/**
|
369
|
-
|
370
|
-
|
369
|
+
* 权限组列表
|
370
|
+
*/
|
371
371
|
AccessGroups?: Array<AccessGroup>;
|
372
372
|
/**
|
373
|
-
|
374
|
-
|
373
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
374
|
+
*/
|
375
375
|
RequestId?: string;
|
376
376
|
}
|
377
377
|
/**
|
@@ -379,8 +379,8 @@ export interface DescribeAccessGroupsResponse {
|
|
379
379
|
*/
|
380
380
|
export interface DeleteMountPointRequest {
|
381
381
|
/**
|
382
|
-
|
383
|
-
|
382
|
+
* 挂载点ID
|
383
|
+
*/
|
384
384
|
MountPointId: string;
|
385
385
|
}
|
386
386
|
/**
|
@@ -388,8 +388,8 @@ export interface DeleteMountPointRequest {
|
|
388
388
|
*/
|
389
389
|
export interface DeleteFileSystemResponse {
|
390
390
|
/**
|
391
|
-
|
392
|
-
|
391
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
392
|
+
*/
|
393
393
|
RequestId?: string;
|
394
394
|
}
|
395
395
|
/**
|
@@ -397,12 +397,12 @@ export interface DeleteFileSystemResponse {
|
|
397
397
|
*/
|
398
398
|
export interface CreateLifeCycleRulesRequest {
|
399
399
|
/**
|
400
|
-
|
401
|
-
|
400
|
+
* 文件系统ID
|
401
|
+
*/
|
402
402
|
FileSystemId: string;
|
403
403
|
/**
|
404
|
-
|
405
|
-
|
404
|
+
* 多个生命周期规则,上限为10
|
405
|
+
*/
|
406
406
|
LifeCycleRules: Array<LifeCycleRule>;
|
407
407
|
}
|
408
408
|
/**
|
@@ -410,12 +410,12 @@ export interface CreateLifeCycleRulesRequest {
|
|
410
410
|
*/
|
411
411
|
export interface Filter {
|
412
412
|
/**
|
413
|
-
|
414
|
-
|
413
|
+
* 过滤字段
|
414
|
+
*/
|
415
415
|
Name: string;
|
416
416
|
/**
|
417
|
-
|
418
|
-
|
417
|
+
* 过滤值
|
418
|
+
*/
|
419
419
|
Values: Array<string>;
|
420
420
|
}
|
421
421
|
/**
|
@@ -423,12 +423,12 @@ export interface Filter {
|
|
423
423
|
*/
|
424
424
|
export interface CreateAccessGroupResponse {
|
425
425
|
/**
|
426
|
-
|
427
|
-
|
426
|
+
* 权限组
|
427
|
+
*/
|
428
428
|
AccessGroup?: AccessGroup;
|
429
429
|
/**
|
430
|
-
|
431
|
-
|
430
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
431
|
+
*/
|
432
432
|
RequestId?: string;
|
433
433
|
}
|
434
434
|
/**
|
@@ -436,8 +436,8 @@ export interface CreateAccessGroupResponse {
|
|
436
436
|
*/
|
437
437
|
export interface DeleteLifeCycleRulesRequest {
|
438
438
|
/**
|
439
|
-
|
440
|
-
|
439
|
+
* 多个生命周期规则ID,上限为10
|
440
|
+
*/
|
441
441
|
LifeCycleRuleIds: Array<number>;
|
442
442
|
}
|
443
443
|
/**
|
@@ -445,40 +445,40 @@ export interface DeleteLifeCycleRulesRequest {
|
|
445
445
|
*/
|
446
446
|
export interface FileSystem {
|
447
447
|
/**
|
448
|
-
|
449
|
-
|
448
|
+
* appid
|
449
|
+
*/
|
450
450
|
AppId: number;
|
451
451
|
/**
|
452
|
-
|
453
|
-
|
452
|
+
* 文件系统名称
|
453
|
+
*/
|
454
454
|
FileSystemName: string;
|
455
455
|
/**
|
456
|
-
|
457
|
-
|
456
|
+
* 文件系统描述
|
457
|
+
*/
|
458
458
|
Description: string;
|
459
459
|
/**
|
460
|
-
|
461
|
-
|
460
|
+
* 地域
|
461
|
+
*/
|
462
462
|
Region: string;
|
463
463
|
/**
|
464
|
-
|
465
|
-
|
464
|
+
* 文件系统ID
|
465
|
+
*/
|
466
466
|
FileSystemId: string;
|
467
467
|
/**
|
468
|
-
|
469
|
-
|
468
|
+
* 创建时间
|
469
|
+
*/
|
470
470
|
CreateTime: string;
|
471
471
|
/**
|
472
|
-
|
473
|
-
|
472
|
+
* 文件系统块大小(byte)
|
473
|
+
*/
|
474
474
|
BlockSize: number;
|
475
475
|
/**
|
476
|
-
|
477
|
-
|
476
|
+
* 文件系统容量(byte)
|
477
|
+
*/
|
478
478
|
CapacityQuota: number;
|
479
479
|
/**
|
480
|
-
|
481
|
-
|
480
|
+
* 文件系统状态(1:创建中;2:创建成功;3:创建失败)
|
481
|
+
*/
|
482
482
|
Status: number;
|
483
483
|
}
|
484
484
|
/**
|
@@ -486,28 +486,28 @@ export interface FileSystem {
|
|
486
486
|
*/
|
487
487
|
export interface RestoreTask {
|
488
488
|
/**
|
489
|
-
|
490
|
-
|
489
|
+
* 回热任务ID
|
490
|
+
*/
|
491
491
|
RestoreTaskId?: number;
|
492
492
|
/**
|
493
|
-
|
494
|
-
|
493
|
+
* 回热任务文件路径
|
494
|
+
*/
|
495
495
|
FilePath?: string;
|
496
496
|
/**
|
497
|
-
|
498
|
-
|
497
|
+
* 回热任务类型(1:标准;2:极速;3:批量)
|
498
|
+
*/
|
499
499
|
Type?: number;
|
500
500
|
/**
|
501
|
-
|
502
|
-
|
501
|
+
* 指定恢复出的临时副本的有效时长(单位天)
|
502
|
+
*/
|
503
503
|
Days?: number;
|
504
504
|
/**
|
505
|
-
|
506
|
-
|
505
|
+
* 回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成)
|
506
|
+
*/
|
507
507
|
Status?: number;
|
508
508
|
/**
|
509
|
-
|
510
|
-
|
509
|
+
* 创建时间
|
510
|
+
*/
|
511
511
|
CreateTime?: string;
|
512
512
|
}
|
513
513
|
/**
|
@@ -515,20 +515,20 @@ export interface RestoreTask {
|
|
515
515
|
*/
|
516
516
|
export interface ModifyMountPointRequest {
|
517
517
|
/**
|
518
|
-
|
519
|
-
|
518
|
+
* 挂载点ID
|
519
|
+
*/
|
520
520
|
MountPointId: string;
|
521
521
|
/**
|
522
|
-
|
523
|
-
|
522
|
+
* 挂载点名称
|
523
|
+
*/
|
524
524
|
MountPointName?: string;
|
525
525
|
/**
|
526
|
-
|
527
|
-
|
526
|
+
* 挂载点状态
|
527
|
+
*/
|
528
528
|
MountPointStatus?: number;
|
529
529
|
/**
|
530
|
-
|
531
|
-
|
530
|
+
* 权限组ID
|
531
|
+
*/
|
532
532
|
AccessGroupId?: string;
|
533
533
|
}
|
534
534
|
/**
|
@@ -536,8 +536,8 @@ export interface ModifyMountPointRequest {
|
|
536
536
|
*/
|
537
537
|
export interface DeleteLifeCycleRulesResponse {
|
538
538
|
/**
|
539
|
-
|
540
|
-
|
539
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
540
|
+
*/
|
541
541
|
RequestId?: string;
|
542
542
|
}
|
543
543
|
/**
|
@@ -545,12 +545,12 @@ export interface DeleteLifeCycleRulesResponse {
|
|
545
545
|
*/
|
546
546
|
export interface CreateRestoreTasksRequest {
|
547
547
|
/**
|
548
|
-
|
549
|
-
|
548
|
+
* 文件系统ID
|
549
|
+
*/
|
550
550
|
FileSystemId: string;
|
551
551
|
/**
|
552
|
-
|
553
|
-
|
552
|
+
* 多个回热任务,上限为10
|
553
|
+
*/
|
554
554
|
RestoreTasks: Array<RestoreTask>;
|
555
555
|
}
|
556
556
|
/**
|
@@ -558,12 +558,12 @@ export interface CreateRestoreTasksRequest {
|
|
558
558
|
*/
|
559
559
|
export interface Transition {
|
560
560
|
/**
|
561
|
-
|
562
|
-
|
561
|
+
* 触发时间(单位天)
|
562
|
+
*/
|
563
563
|
Days: number;
|
564
564
|
/**
|
565
|
-
|
566
|
-
|
565
|
+
* 转换类型(1:归档;2:删除)
|
566
|
+
*/
|
567
567
|
Type: number;
|
568
568
|
}
|
569
569
|
/**
|
@@ -571,12 +571,12 @@ export interface Transition {
|
|
571
571
|
*/
|
572
572
|
export interface DescribeRestoreTasksResponse {
|
573
573
|
/**
|
574
|
-
|
575
|
-
|
574
|
+
* 回热任务列表
|
575
|
+
*/
|
576
576
|
RestoreTasks?: Array<RestoreTask>;
|
577
577
|
/**
|
578
|
-
|
579
|
-
|
578
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
579
|
+
*/
|
580
580
|
RequestId?: string;
|
581
581
|
}
|
582
582
|
/**
|
@@ -584,12 +584,12 @@ export interface DescribeRestoreTasksResponse {
|
|
584
584
|
*/
|
585
585
|
export interface DescribeLifeCycleRulesResponse {
|
586
586
|
/**
|
587
|
-
|
588
|
-
|
587
|
+
* 生命周期规则列表
|
588
|
+
*/
|
589
589
|
LifeCycleRules?: Array<LifeCycleRule>;
|
590
590
|
/**
|
591
|
-
|
592
|
-
|
591
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
592
|
+
*/
|
593
593
|
RequestId?: string;
|
594
594
|
}
|
595
595
|
/**
|
@@ -597,8 +597,8 @@ export interface DescribeLifeCycleRulesResponse {
|
|
597
597
|
*/
|
598
598
|
export interface CreateAccessRulesResponse {
|
599
599
|
/**
|
600
|
-
|
601
|
-
|
600
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
601
|
+
*/
|
602
602
|
RequestId?: string;
|
603
603
|
}
|
604
604
|
/**
|
@@ -606,8 +606,8 @@ export interface CreateAccessRulesResponse {
|
|
606
606
|
*/
|
607
607
|
export interface DeleteAccessRulesRequest {
|
608
608
|
/**
|
609
|
-
|
610
|
-
|
609
|
+
* 多个权限规则ID,上限为10
|
610
|
+
*/
|
611
611
|
AccessRuleIds: Array<number>;
|
612
612
|
}
|
613
613
|
/**
|
@@ -615,8 +615,8 @@ export interface DeleteAccessRulesRequest {
|
|
615
615
|
*/
|
616
616
|
export interface DeleteAccessRulesResponse {
|
617
617
|
/**
|
618
|
-
|
619
|
-
|
618
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
619
|
+
*/
|
620
620
|
RequestId?: string;
|
621
621
|
}
|
622
622
|
/**
|
@@ -624,12 +624,12 @@ export interface DeleteAccessRulesResponse {
|
|
624
624
|
*/
|
625
625
|
export interface DescribeFileSystemsRequest {
|
626
626
|
/**
|
627
|
-
|
628
|
-
|
627
|
+
* 偏移量,默认为0
|
628
|
+
*/
|
629
629
|
Offset?: number;
|
630
630
|
/**
|
631
|
-
|
632
|
-
|
631
|
+
* 返回数量,默认为所有
|
632
|
+
*/
|
633
633
|
Limit?: number;
|
634
634
|
}
|
635
635
|
/**
|
@@ -637,8 +637,8 @@ export interface DescribeFileSystemsRequest {
|
|
637
637
|
*/
|
638
638
|
export interface DescribeResourceTagsRequest {
|
639
639
|
/**
|
640
|
-
|
641
|
-
|
640
|
+
* 文件系统ID
|
641
|
+
*/
|
642
642
|
FileSystemId: string;
|
643
643
|
}
|
644
644
|
/**
|
@@ -646,8 +646,8 @@ export interface DescribeResourceTagsRequest {
|
|
646
646
|
*/
|
647
647
|
export interface ModifyResourceTagsResponse {
|
648
648
|
/**
|
649
|
-
|
650
|
-
|
649
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
650
|
+
*/
|
651
651
|
RequestId?: string;
|
652
652
|
}
|
653
653
|
/**
|
@@ -655,28 +655,28 @@ export interface ModifyResourceTagsResponse {
|
|
655
655
|
*/
|
656
656
|
export interface LifeCycleRule {
|
657
657
|
/**
|
658
|
-
|
659
|
-
|
658
|
+
* 生命周期规则ID
|
659
|
+
*/
|
660
660
|
LifeCycleRuleId?: number;
|
661
661
|
/**
|
662
|
-
|
663
|
-
|
662
|
+
* 生命周期规则名称
|
663
|
+
*/
|
664
664
|
LifeCycleRuleName?: string;
|
665
665
|
/**
|
666
|
-
|
667
|
-
|
666
|
+
* 生命周期规则路径(目录或文件)
|
667
|
+
*/
|
668
668
|
Path?: string;
|
669
669
|
/**
|
670
|
-
|
671
|
-
|
670
|
+
* 生命周期规则转换列表
|
671
|
+
*/
|
672
672
|
Transitions?: Array<Transition>;
|
673
673
|
/**
|
674
|
-
|
675
|
-
|
674
|
+
* 生命周期规则状态(1:打开;2:关闭)
|
675
|
+
*/
|
676
676
|
Status?: number;
|
677
677
|
/**
|
678
|
-
|
679
|
-
|
678
|
+
* 创建时间
|
679
|
+
*/
|
680
680
|
CreateTime?: string;
|
681
681
|
}
|
682
682
|
/**
|
@@ -684,12 +684,12 @@ export interface LifeCycleRule {
|
|
684
684
|
*/
|
685
685
|
export interface CreateAccessRulesRequest {
|
686
686
|
/**
|
687
|
-
|
688
|
-
|
687
|
+
* 多个权限规则,上限为10
|
688
|
+
*/
|
689
689
|
AccessRules: Array<AccessRule>;
|
690
690
|
/**
|
691
|
-
|
692
|
-
|
691
|
+
* 权限组ID
|
692
|
+
*/
|
693
693
|
AccessGroupId: string;
|
694
694
|
}
|
695
695
|
/**
|
@@ -697,12 +697,12 @@ export interface CreateAccessRulesRequest {
|
|
697
697
|
*/
|
698
698
|
export interface DescribeAccessRulesResponse {
|
699
699
|
/**
|
700
|
-
|
701
|
-
|
700
|
+
* 权限规则列表
|
701
|
+
*/
|
702
702
|
AccessRules?: Array<AccessRule>;
|
703
703
|
/**
|
704
|
-
|
705
|
-
|
704
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
705
|
+
*/
|
706
706
|
RequestId?: string;
|
707
707
|
}
|
708
708
|
/**
|
@@ -710,36 +710,36 @@ export interface DescribeAccessRulesResponse {
|
|
710
710
|
*/
|
711
711
|
export interface MountPoint {
|
712
712
|
/**
|
713
|
-
|
714
|
-
|
713
|
+
* 挂载点ID
|
714
|
+
*/
|
715
715
|
MountPointId: string;
|
716
716
|
/**
|
717
|
-
|
718
|
-
|
717
|
+
* 挂载点名称
|
718
|
+
*/
|
719
719
|
MountPointName?: string;
|
720
720
|
/**
|
721
|
-
|
722
|
-
|
721
|
+
* 文件系统ID
|
722
|
+
*/
|
723
723
|
FileSystemId: string;
|
724
724
|
/**
|
725
|
-
|
726
|
-
|
725
|
+
* 权限组ID
|
726
|
+
*/
|
727
727
|
AccessGroupId: string;
|
728
728
|
/**
|
729
|
-
|
730
|
-
|
729
|
+
* VPC网络ID
|
730
|
+
*/
|
731
731
|
VpcId: string;
|
732
732
|
/**
|
733
|
-
|
734
|
-
|
733
|
+
* 挂载点状态(1:打开;2:关闭)
|
734
|
+
*/
|
735
735
|
Status: number;
|
736
736
|
/**
|
737
|
-
|
738
|
-
|
737
|
+
* 创建时间
|
738
|
+
*/
|
739
739
|
CreateTime: string;
|
740
740
|
/**
|
741
|
-
|
742
|
-
|
741
|
+
* VPC网络类型
|
742
|
+
*/
|
743
743
|
VpcType: number;
|
744
744
|
}
|
745
745
|
/**
|
@@ -747,12 +747,12 @@ export interface MountPoint {
|
|
747
747
|
*/
|
748
748
|
export interface DescribeMountPointsResponse {
|
749
749
|
/**
|
750
|
-
|
751
|
-
|
750
|
+
* 挂载点列表
|
751
|
+
*/
|
752
752
|
MountPoints?: Array<MountPoint>;
|
753
753
|
/**
|
754
|
-
|
755
|
-
|
754
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
755
|
+
*/
|
756
756
|
RequestId?: string;
|
757
757
|
}
|
758
758
|
/**
|
@@ -760,8 +760,8 @@ export interface DescribeMountPointsResponse {
|
|
760
760
|
*/
|
761
761
|
export interface DescribeRestoreTasksRequest {
|
762
762
|
/**
|
763
|
-
|
764
|
-
|
763
|
+
* 文件系统ID
|
764
|
+
*/
|
765
765
|
FileSystemId: string;
|
766
766
|
}
|
767
767
|
/**
|
@@ -769,16 +769,16 @@ export interface DescribeRestoreTasksRequest {
|
|
769
769
|
*/
|
770
770
|
export interface DescribeAccessRulesRequest {
|
771
771
|
/**
|
772
|
-
|
773
|
-
|
772
|
+
* 权限组ID
|
773
|
+
*/
|
774
774
|
AccessGroupId: string;
|
775
775
|
/**
|
776
|
-
|
777
|
-
|
776
|
+
* 偏移量,默认为0
|
777
|
+
*/
|
778
778
|
Offset?: number;
|
779
779
|
/**
|
780
|
-
|
781
|
-
|
780
|
+
* 返回数量,默认为所有
|
781
|
+
*/
|
782
782
|
Limit?: number;
|
783
783
|
}
|
784
784
|
/**
|
@@ -786,8 +786,8 @@ export interface DescribeAccessRulesRequest {
|
|
786
786
|
*/
|
787
787
|
export interface ModifyAccessRulesResponse {
|
788
788
|
/**
|
789
|
-
|
790
|
-
|
789
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
790
|
+
*/
|
791
791
|
RequestId?: string;
|
792
792
|
}
|
793
793
|
/**
|
@@ -795,8 +795,8 @@ export interface ModifyAccessRulesResponse {
|
|
795
795
|
*/
|
796
796
|
export interface CreateLifeCycleRulesResponse {
|
797
797
|
/**
|
798
|
-
|
799
|
-
|
798
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
799
|
+
*/
|
800
800
|
RequestId?: string;
|
801
801
|
}
|
802
802
|
/**
|
@@ -804,8 +804,8 @@ export interface CreateLifeCycleRulesResponse {
|
|
804
804
|
*/
|
805
805
|
export interface ModifyAccessGroupResponse {
|
806
806
|
/**
|
807
|
-
|
808
|
-
|
807
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
808
|
+
*/
|
809
809
|
RequestId?: string;
|
810
810
|
}
|
811
811
|
/**
|
@@ -813,12 +813,12 @@ export interface ModifyAccessGroupResponse {
|
|
813
813
|
*/
|
814
814
|
export interface Tag {
|
815
815
|
/**
|
816
|
-
|
817
|
-
|
816
|
+
* 标签键
|
817
|
+
*/
|
818
818
|
Key: string;
|
819
819
|
/**
|
820
|
-
|
821
|
-
|
820
|
+
* 标签值
|
821
|
+
*/
|
822
822
|
Value: string;
|
823
823
|
}
|
824
824
|
/**
|
@@ -826,8 +826,8 @@ export interface Tag {
|
|
826
826
|
*/
|
827
827
|
export interface ModifyMountPointResponse {
|
828
828
|
/**
|
829
|
-
|
830
|
-
|
829
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
830
|
+
*/
|
831
831
|
RequestId?: string;
|
832
832
|
}
|
833
833
|
/**
|
@@ -835,8 +835,8 @@ export interface ModifyMountPointResponse {
|
|
835
835
|
*/
|
836
836
|
export interface ModifyAccessRulesRequest {
|
837
837
|
/**
|
838
|
-
|
839
|
-
|
838
|
+
* 多个权限规则,上限为10
|
839
|
+
*/
|
840
840
|
AccessRules: Array<AccessRule>;
|
841
841
|
}
|
842
842
|
/**
|
@@ -844,12 +844,12 @@ export interface ModifyAccessRulesRequest {
|
|
844
844
|
*/
|
845
845
|
export interface CreateAccessGroupRequest {
|
846
846
|
/**
|
847
|
-
|
848
|
-
|
847
|
+
* 权限组名称
|
848
|
+
*/
|
849
849
|
AccessGroupName: string;
|
850
850
|
/**
|
851
|
-
|
852
|
-
|
851
|
+
* 权限组描述
|
852
|
+
*/
|
853
853
|
Description?: string;
|
854
854
|
}
|
855
855
|
/**
|
@@ -857,11 +857,11 @@ export interface CreateAccessGroupRequest {
|
|
857
857
|
*/
|
858
858
|
export interface DescribeMountPointResponse {
|
859
859
|
/**
|
860
|
-
|
861
|
-
|
860
|
+
* 挂载点
|
861
|
+
*/
|
862
862
|
MountPoint?: MountPoint;
|
863
863
|
/**
|
864
|
-
|
865
|
-
|
864
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
865
|
+
*/
|
866
866
|
RequestId?: string;
|
867
867
|
}
|