tencentcloud-sdk-nodejs-chdfs 4.0.397 → 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 +5389 -0
- package/README.md +3 -3
- package/SERVICE_CHANGELOG.md +3620 -52
- package/package.json +1 -1
- package/products.md +92 -92
- 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,12 +16,12 @@ export interface CreateFileSystemResponse {
|
|
16
16
|
*/
|
17
17
|
export interface ModifyResourceTagsRequest {
|
18
18
|
/**
|
19
|
-
|
20
|
-
|
19
|
+
* 文件系统ID
|
20
|
+
*/
|
21
21
|
FileSystemId: string;
|
22
22
|
/**
|
23
|
-
|
24
|
-
|
23
|
+
* 多个资源标签,可以为空数组
|
24
|
+
*/
|
25
25
|
Tags?: Array<Tag>;
|
26
26
|
}
|
27
27
|
/**
|
@@ -29,8 +29,8 @@ export interface ModifyResourceTagsRequest {
|
|
29
29
|
*/
|
30
30
|
export interface DescribeAccessRulesRequest {
|
31
31
|
/**
|
32
|
-
|
33
|
-
|
32
|
+
* 权限组ID
|
33
|
+
*/
|
34
34
|
AccessGroupId: string;
|
35
35
|
}
|
36
36
|
/**
|
@@ -38,24 +38,24 @@ export interface DescribeAccessRulesRequest {
|
|
38
38
|
*/
|
39
39
|
export interface AccessRule {
|
40
40
|
/**
|
41
|
-
|
42
|
-
|
41
|
+
* 权限规则ID
|
42
|
+
*/
|
43
43
|
AccessRuleId?: number;
|
44
44
|
/**
|
45
|
-
|
46
|
-
|
45
|
+
* 权限规则地址(网段或IP)
|
46
|
+
*/
|
47
47
|
Address?: string;
|
48
48
|
/**
|
49
|
-
|
50
|
-
|
49
|
+
* 权限规则访问模式(1:只读;2:读写)
|
50
|
+
*/
|
51
51
|
AccessMode?: number;
|
52
52
|
/**
|
53
|
-
|
54
|
-
|
53
|
+
* 优先级(取值范围1~100,值越小优先级越高)
|
54
|
+
*/
|
55
55
|
Priority?: number;
|
56
56
|
/**
|
57
|
-
|
58
|
-
|
57
|
+
* 创建时间
|
58
|
+
*/
|
59
59
|
CreateTime?: string;
|
60
60
|
}
|
61
61
|
/**
|
@@ -63,32 +63,32 @@ export interface AccessRule {
|
|
63
63
|
*/
|
64
64
|
export interface DescribeFileSystemResponse {
|
65
65
|
/**
|
66
|
-
|
67
|
-
|
66
|
+
* 文件系统
|
67
|
+
*/
|
68
68
|
FileSystem: FileSystem;
|
69
69
|
/**
|
70
|
-
|
71
|
-
|
72
|
-
|
70
|
+
* 文件系统已使用容量(byte)
|
71
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
72
|
+
*/
|
73
73
|
CapacityUsed: number;
|
74
74
|
/**
|
75
|
-
|
76
|
-
|
77
|
-
|
75
|
+
* 已使用COS归档存储容量(byte)
|
76
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
77
|
+
*/
|
78
78
|
ArchiveCapacityUsed: number;
|
79
79
|
/**
|
80
|
-
|
81
|
-
|
82
|
-
|
80
|
+
* 已使用COS标准存储容量(byte)
|
81
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
82
|
+
*/
|
83
83
|
StandardCapacityUsed: number;
|
84
84
|
/**
|
85
|
-
|
86
|
-
|
87
|
-
|
85
|
+
* 已使用COS低频存储容量(byte)
|
86
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
87
|
+
*/
|
88
88
|
DegradeCapacityUsed: number;
|
89
89
|
/**
|
90
|
-
|
91
|
-
|
90
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
91
|
+
*/
|
92
92
|
RequestId?: string;
|
93
93
|
}
|
94
94
|
/**
|
@@ -96,28 +96,28 @@ export interface DescribeFileSystemResponse {
|
|
96
96
|
*/
|
97
97
|
export interface AccessGroup {
|
98
98
|
/**
|
99
|
-
|
100
|
-
|
99
|
+
* 权限组ID
|
100
|
+
*/
|
101
101
|
AccessGroupId: string;
|
102
102
|
/**
|
103
|
-
|
104
|
-
|
103
|
+
* 权限组名称
|
104
|
+
*/
|
105
105
|
AccessGroupName: string;
|
106
106
|
/**
|
107
|
-
|
108
|
-
|
107
|
+
* 权限组描述
|
108
|
+
*/
|
109
109
|
Description: string;
|
110
110
|
/**
|
111
|
-
|
112
|
-
|
111
|
+
* 创建时间
|
112
|
+
*/
|
113
113
|
CreateTime: string;
|
114
114
|
/**
|
115
|
-
|
116
|
-
|
115
|
+
* VPC网络类型(1:CVM;2:黑石1.0)
|
116
|
+
*/
|
117
117
|
VpcType: number;
|
118
118
|
/**
|
119
|
-
|
120
|
-
|
119
|
+
* VPC网络ID
|
120
|
+
*/
|
121
121
|
VpcId: string;
|
122
122
|
}
|
123
123
|
/**
|
@@ -125,8 +125,8 @@ export interface AccessGroup {
|
|
125
125
|
*/
|
126
126
|
export interface ModifyFileSystemResponse {
|
127
127
|
/**
|
128
|
-
|
129
|
-
|
128
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
129
|
+
*/
|
130
130
|
RequestId?: string;
|
131
131
|
}
|
132
132
|
/**
|
@@ -134,37 +134,37 @@ export interface ModifyFileSystemResponse {
|
|
134
134
|
*/
|
135
135
|
export interface ModifyFileSystemRequest {
|
136
136
|
/**
|
137
|
-
|
138
|
-
|
137
|
+
* 文件系统ID
|
138
|
+
*/
|
139
139
|
FileSystemId: string;
|
140
140
|
/**
|
141
|
-
|
142
|
-
|
141
|
+
* 文件系统名称
|
142
|
+
*/
|
143
143
|
FileSystemName?: string;
|
144
144
|
/**
|
145
|
-
|
146
|
-
|
145
|
+
* 文件系统描述
|
146
|
+
*/
|
147
147
|
Description?: string;
|
148
148
|
/**
|
149
|
-
|
150
|
-
|
151
|
-
|
149
|
+
* 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
|
150
|
+
注意:修改的文件系统容量不能小于当前使用量
|
151
|
+
*/
|
152
152
|
CapacityQuota?: number;
|
153
153
|
/**
|
154
|
-
|
155
|
-
|
154
|
+
* 超级用户名列表,可以为空数组
|
155
|
+
*/
|
156
156
|
SuperUsers?: Array<string>;
|
157
157
|
/**
|
158
|
-
|
159
|
-
|
158
|
+
* 是否校验POSIX ACL
|
159
|
+
*/
|
160
160
|
PosixAcl?: boolean;
|
161
161
|
/**
|
162
|
-
|
163
|
-
|
162
|
+
* 是否打开Ranger地址校验
|
163
|
+
*/
|
164
164
|
EnableRanger?: boolean;
|
165
165
|
/**
|
166
|
-
|
167
|
-
|
166
|
+
* Ranger地址列表,可以为空数组
|
167
|
+
*/
|
168
168
|
RangerServiceAddresses?: Array<string>;
|
169
169
|
}
|
170
170
|
/**
|
@@ -172,8 +172,8 @@ export interface ModifyFileSystemRequest {
|
|
172
172
|
*/
|
173
173
|
export interface DescribeLifeCycleRulesRequest {
|
174
174
|
/**
|
175
|
-
|
176
|
-
|
175
|
+
* 文件系统ID
|
176
|
+
*/
|
177
177
|
FileSystemId: string;
|
178
178
|
}
|
179
179
|
/**
|
@@ -181,12 +181,12 @@ export interface DescribeLifeCycleRulesRequest {
|
|
181
181
|
*/
|
182
182
|
export interface AssociateAccessGroupsRequest {
|
183
183
|
/**
|
184
|
-
|
185
|
-
|
184
|
+
* 挂载点ID
|
185
|
+
*/
|
186
186
|
MountPointId: string;
|
187
187
|
/**
|
188
|
-
|
189
|
-
|
188
|
+
* 权限组ID列表
|
189
|
+
*/
|
190
190
|
AccessGroupIds: Array<string>;
|
191
191
|
}
|
192
192
|
/**
|
@@ -194,16 +194,16 @@ export interface AssociateAccessGroupsRequest {
|
|
194
194
|
*/
|
195
195
|
export interface ModifyAccessGroupRequest {
|
196
196
|
/**
|
197
|
-
|
198
|
-
|
197
|
+
* 权限组ID
|
198
|
+
*/
|
199
199
|
AccessGroupId: string;
|
200
200
|
/**
|
201
|
-
|
202
|
-
|
201
|
+
* 权限组名称
|
202
|
+
*/
|
203
203
|
AccessGroupName?: string;
|
204
204
|
/**
|
205
|
-
|
206
|
-
|
205
|
+
* 权限组描述
|
206
|
+
*/
|
207
207
|
Description?: string;
|
208
208
|
}
|
209
209
|
/**
|
@@ -211,12 +211,12 @@ export interface ModifyAccessGroupRequest {
|
|
211
211
|
*/
|
212
212
|
export interface DescribeFileSystemsResponse {
|
213
213
|
/**
|
214
|
-
|
215
|
-
|
214
|
+
* 文件系统列表
|
215
|
+
*/
|
216
216
|
FileSystems: Array<FileSystem>;
|
217
217
|
/**
|
218
|
-
|
219
|
-
|
218
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
219
|
+
*/
|
220
220
|
RequestId?: string;
|
221
221
|
}
|
222
222
|
/**
|
@@ -224,8 +224,8 @@ export interface DescribeFileSystemsResponse {
|
|
224
224
|
*/
|
225
225
|
export interface DescribeFileSystemRequest {
|
226
226
|
/**
|
227
|
-
|
228
|
-
|
227
|
+
* 文件系统ID
|
228
|
+
*/
|
229
229
|
FileSystemId: string;
|
230
230
|
}
|
231
231
|
/**
|
@@ -233,16 +233,16 @@ export interface DescribeFileSystemRequest {
|
|
233
233
|
*/
|
234
234
|
export interface CreateMountPointRequest {
|
235
235
|
/**
|
236
|
-
|
237
|
-
|
236
|
+
* 挂载点名称
|
237
|
+
*/
|
238
238
|
MountPointName: string;
|
239
239
|
/**
|
240
|
-
|
241
|
-
|
240
|
+
* 文件系统ID
|
241
|
+
*/
|
242
242
|
FileSystemId: string;
|
243
243
|
/**
|
244
|
-
|
245
|
-
|
244
|
+
* 挂载点状态(1:打开;2:关闭)
|
245
|
+
*/
|
246
246
|
MountPointStatus: number;
|
247
247
|
}
|
248
248
|
/**
|
@@ -250,8 +250,8 @@ export interface CreateMountPointRequest {
|
|
250
250
|
*/
|
251
251
|
export interface DeleteAccessGroupRequest {
|
252
252
|
/**
|
253
|
-
|
254
|
-
|
253
|
+
* 权限组ID
|
254
|
+
*/
|
255
255
|
AccessGroupId: string;
|
256
256
|
}
|
257
257
|
/**
|
@@ -259,8 +259,8 @@ export interface DeleteAccessGroupRequest {
|
|
259
259
|
*/
|
260
260
|
export interface ModifyLifeCycleRulesRequest {
|
261
261
|
/**
|
262
|
-
|
263
|
-
|
262
|
+
* 多个生命周期规则,上限为10
|
263
|
+
*/
|
264
264
|
LifeCycleRules: Array<LifeCycleRule>;
|
265
265
|
}
|
266
266
|
/**
|
@@ -268,8 +268,8 @@ export interface ModifyLifeCycleRulesRequest {
|
|
268
268
|
*/
|
269
269
|
export interface CreateRestoreTasksResponse {
|
270
270
|
/**
|
271
|
-
|
272
|
-
|
271
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
272
|
+
*/
|
273
273
|
RequestId?: string;
|
274
274
|
}
|
275
275
|
/**
|
@@ -277,8 +277,8 @@ export interface CreateRestoreTasksResponse {
|
|
277
277
|
*/
|
278
278
|
export interface DeleteFileSystemRequest {
|
279
279
|
/**
|
280
|
-
|
281
|
-
|
280
|
+
* 文件系统ID
|
281
|
+
*/
|
282
282
|
FileSystemId: string;
|
283
283
|
}
|
284
284
|
/**
|
@@ -286,17 +286,17 @@ export interface DeleteFileSystemRequest {
|
|
286
286
|
*/
|
287
287
|
export interface DescribeMountPointsRequest {
|
288
288
|
/**
|
289
|
-
|
290
|
-
|
291
|
-
|
289
|
+
* 文件系统ID
|
290
|
+
备注:入参只能指定AccessGroupId、FileSystemId和OwnerUin的其中一个
|
291
|
+
*/
|
292
292
|
FileSystemId?: string;
|
293
293
|
/**
|
294
|
-
|
295
|
-
|
294
|
+
* 权限组ID
|
295
|
+
*/
|
296
296
|
AccessGroupId?: string;
|
297
297
|
/**
|
298
|
-
|
299
|
-
|
298
|
+
* 资源所属者Uin
|
299
|
+
*/
|
300
300
|
OwnerUin?: number;
|
301
301
|
}
|
302
302
|
/**
|
@@ -304,8 +304,8 @@ export interface DescribeMountPointsRequest {
|
|
304
304
|
*/
|
305
305
|
export interface DescribeMountPointRequest {
|
306
306
|
/**
|
307
|
-
|
308
|
-
|
307
|
+
* 挂载点ID
|
308
|
+
*/
|
309
309
|
MountPointId: string;
|
310
310
|
}
|
311
311
|
/**
|
@@ -313,13 +313,13 @@ export interface DescribeMountPointRequest {
|
|
313
313
|
*/
|
314
314
|
export interface DescribeAccessGroupsRequest {
|
315
315
|
/**
|
316
|
-
|
317
|
-
|
318
|
-
|
316
|
+
* VPC网络ID
|
317
|
+
备注:入参只能指定VpcId和OwnerUin的其中一个
|
318
|
+
*/
|
319
319
|
VpcId?: string;
|
320
320
|
/**
|
321
|
-
|
322
|
-
|
321
|
+
* 资源所属者Uin
|
322
|
+
*/
|
323
323
|
OwnerUin?: number;
|
324
324
|
}
|
325
325
|
/**
|
@@ -327,8 +327,8 @@ export interface DescribeAccessGroupsRequest {
|
|
327
327
|
*/
|
328
328
|
export interface DeleteAccessGroupResponse {
|
329
329
|
/**
|
330
|
-
|
331
|
-
|
330
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
331
|
+
*/
|
332
332
|
RequestId?: string;
|
333
333
|
}
|
334
334
|
/**
|
@@ -336,8 +336,8 @@ export interface DeleteAccessGroupResponse {
|
|
336
336
|
*/
|
337
337
|
export interface ModifyLifeCycleRulesResponse {
|
338
338
|
/**
|
339
|
-
|
340
|
-
|
339
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
340
|
+
*/
|
341
341
|
RequestId?: string;
|
342
342
|
}
|
343
343
|
/**
|
@@ -345,8 +345,8 @@ export interface ModifyLifeCycleRulesResponse {
|
|
345
345
|
*/
|
346
346
|
export interface DeleteMountPointResponse {
|
347
347
|
/**
|
348
|
-
|
349
|
-
|
348
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
349
|
+
*/
|
350
350
|
RequestId?: string;
|
351
351
|
}
|
352
352
|
/**
|
@@ -354,12 +354,12 @@ export interface DeleteMountPointResponse {
|
|
354
354
|
*/
|
355
355
|
export interface CreateMountPointResponse {
|
356
356
|
/**
|
357
|
-
|
358
|
-
|
357
|
+
* 挂载点
|
358
|
+
*/
|
359
359
|
MountPoint: MountPoint;
|
360
360
|
/**
|
361
|
-
|
362
|
-
|
361
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
362
|
+
*/
|
363
363
|
RequestId?: string;
|
364
364
|
}
|
365
365
|
/**
|
@@ -367,44 +367,44 @@ export interface CreateMountPointResponse {
|
|
367
367
|
*/
|
368
368
|
export interface CreateFileSystemRequest {
|
369
369
|
/**
|
370
|
-
|
371
|
-
|
370
|
+
* 文件系统名称
|
371
|
+
*/
|
372
372
|
FileSystemName: string;
|
373
373
|
/**
|
374
|
-
|
375
|
-
|
374
|
+
* 文件系统容量(byte),下限为1GB,上限为1PB,且必须是1GB的整数倍
|
375
|
+
*/
|
376
376
|
CapacityQuota: number;
|
377
377
|
/**
|
378
|
-
|
379
|
-
|
378
|
+
* 是否校验POSIX ACL
|
379
|
+
*/
|
380
380
|
PosixAcl: boolean;
|
381
381
|
/**
|
382
|
-
|
383
|
-
|
382
|
+
* 文件系统描述,默认为空字符串
|
383
|
+
*/
|
384
384
|
Description?: string;
|
385
385
|
/**
|
386
|
-
|
387
|
-
|
386
|
+
* 超级用户名列表,默认为空数组
|
387
|
+
*/
|
388
388
|
SuperUsers?: Array<string>;
|
389
389
|
/**
|
390
|
-
|
391
|
-
|
390
|
+
* 根目录Inode用户名,默认为hadoop
|
391
|
+
*/
|
392
392
|
RootInodeUser?: string;
|
393
393
|
/**
|
394
|
-
|
395
|
-
|
394
|
+
* 根目录Inode组名,默认为supergroup
|
395
|
+
*/
|
396
396
|
RootInodeGroup?: string;
|
397
397
|
/**
|
398
|
-
|
399
|
-
|
398
|
+
* 是否打开Ranger地址校验
|
399
|
+
*/
|
400
400
|
EnableRanger?: boolean;
|
401
401
|
/**
|
402
|
-
|
403
|
-
|
402
|
+
* Ranger地址列表,默认为空数组
|
403
|
+
*/
|
404
404
|
RangerServiceAddresses?: Array<string>;
|
405
405
|
/**
|
406
|
-
|
407
|
-
|
406
|
+
* 多个资源标签,可以为空数组
|
407
|
+
*/
|
408
408
|
Tags?: Array<Tag>;
|
409
409
|
}
|
410
410
|
/**
|
@@ -412,12 +412,12 @@ export interface CreateFileSystemRequest {
|
|
412
412
|
*/
|
413
413
|
export interface DisassociateAccessGroupsRequest {
|
414
414
|
/**
|
415
|
-
|
416
|
-
|
415
|
+
* 挂载点ID
|
416
|
+
*/
|
417
417
|
MountPointId: string;
|
418
418
|
/**
|
419
|
-
|
420
|
-
|
419
|
+
* 权限组ID列表
|
420
|
+
*/
|
421
421
|
AccessGroupIds: Array<string>;
|
422
422
|
}
|
423
423
|
/**
|
@@ -425,12 +425,12 @@ export interface DisassociateAccessGroupsRequest {
|
|
425
425
|
*/
|
426
426
|
export interface DescribeResourceTagsResponse {
|
427
427
|
/**
|
428
|
-
|
429
|
-
|
428
|
+
* 资源标签列表
|
429
|
+
*/
|
430
430
|
Tags: Array<Tag>;
|
431
431
|
/**
|
432
|
-
|
433
|
-
|
432
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
433
|
+
*/
|
434
434
|
RequestId?: string;
|
435
435
|
}
|
436
436
|
/**
|
@@ -438,12 +438,12 @@ export interface DescribeResourceTagsResponse {
|
|
438
438
|
*/
|
439
439
|
export interface DescribeAccessGroupsResponse {
|
440
440
|
/**
|
441
|
-
|
442
|
-
|
441
|
+
* 权限组列表
|
442
|
+
*/
|
443
443
|
AccessGroups: Array<AccessGroup>;
|
444
444
|
/**
|
445
|
-
|
446
|
-
|
445
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
446
|
+
*/
|
447
447
|
RequestId?: string;
|
448
448
|
}
|
449
449
|
/**
|
@@ -451,8 +451,8 @@ export interface DescribeAccessGroupsResponse {
|
|
451
451
|
*/
|
452
452
|
export interface DeleteMountPointRequest {
|
453
453
|
/**
|
454
|
-
|
455
|
-
|
454
|
+
* 挂载点ID
|
455
|
+
*/
|
456
456
|
MountPointId: string;
|
457
457
|
}
|
458
458
|
/**
|
@@ -460,8 +460,8 @@ export interface DeleteMountPointRequest {
|
|
460
460
|
*/
|
461
461
|
export interface DeleteFileSystemResponse {
|
462
462
|
/**
|
463
|
-
|
464
|
-
|
463
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
464
|
+
*/
|
465
465
|
RequestId?: string;
|
466
466
|
}
|
467
467
|
/**
|
@@ -469,12 +469,12 @@ export interface DeleteFileSystemResponse {
|
|
469
469
|
*/
|
470
470
|
export interface CreateLifeCycleRulesRequest {
|
471
471
|
/**
|
472
|
-
|
473
|
-
|
472
|
+
* 文件系统ID
|
473
|
+
*/
|
474
474
|
FileSystemId: string;
|
475
475
|
/**
|
476
|
-
|
477
|
-
|
476
|
+
* 多个生命周期规则,上限为10
|
477
|
+
*/
|
478
478
|
LifeCycleRules: Array<LifeCycleRule>;
|
479
479
|
}
|
480
480
|
/**
|
@@ -482,8 +482,8 @@ export interface CreateLifeCycleRulesRequest {
|
|
482
482
|
*/
|
483
483
|
export interface CreateAccessRulesResponse {
|
484
484
|
/**
|
485
|
-
|
486
|
-
|
485
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
486
|
+
*/
|
487
487
|
RequestId?: string;
|
488
488
|
}
|
489
489
|
/**
|
@@ -491,8 +491,8 @@ export interface CreateAccessRulesResponse {
|
|
491
491
|
*/
|
492
492
|
export interface DeleteLifeCycleRulesRequest {
|
493
493
|
/**
|
494
|
-
|
495
|
-
|
494
|
+
* 多个生命周期规则ID,上限为10
|
495
|
+
*/
|
496
496
|
LifeCycleRuleIds: Array<number>;
|
497
497
|
}
|
498
498
|
/**
|
@@ -500,58 +500,58 @@ export interface DeleteLifeCycleRulesRequest {
|
|
500
500
|
*/
|
501
501
|
export interface FileSystem {
|
502
502
|
/**
|
503
|
-
|
504
|
-
|
503
|
+
* 资源所属用户AppId
|
504
|
+
*/
|
505
505
|
AppId: number;
|
506
506
|
/**
|
507
|
-
|
508
|
-
|
507
|
+
* 文件系统名称
|
508
|
+
*/
|
509
509
|
FileSystemName: string;
|
510
510
|
/**
|
511
|
-
|
512
|
-
|
511
|
+
* 文件系统描述
|
512
|
+
*/
|
513
513
|
Description: string;
|
514
514
|
/**
|
515
|
-
|
516
|
-
|
515
|
+
* 地域
|
516
|
+
*/
|
517
517
|
Region: string;
|
518
518
|
/**
|
519
|
-
|
520
|
-
|
519
|
+
* 文件系统ID
|
520
|
+
*/
|
521
521
|
FileSystemId: string;
|
522
522
|
/**
|
523
|
-
|
524
|
-
|
523
|
+
* 创建时间
|
524
|
+
*/
|
525
525
|
CreateTime: string;
|
526
526
|
/**
|
527
|
-
|
528
|
-
|
527
|
+
* 文件系统块大小(byte)
|
528
|
+
*/
|
529
529
|
BlockSize: number;
|
530
530
|
/**
|
531
|
-
|
532
|
-
|
531
|
+
* 文件系统容量(byte)
|
532
|
+
*/
|
533
533
|
CapacityQuota: number;
|
534
534
|
/**
|
535
|
-
|
536
|
-
|
535
|
+
* 文件系统状态(1:创建中;2:创建成功;3:创建失败)
|
536
|
+
*/
|
537
537
|
Status: number;
|
538
538
|
/**
|
539
|
-
|
540
|
-
|
539
|
+
* 超级用户名列表
|
540
|
+
*/
|
541
541
|
SuperUsers: Array<string>;
|
542
542
|
/**
|
543
|
-
|
544
|
-
|
543
|
+
* POSIX权限控制
|
544
|
+
*/
|
545
545
|
PosixAcl: boolean;
|
546
546
|
/**
|
547
|
-
|
548
|
-
|
549
|
-
|
547
|
+
* 是否打开Ranger地址校验
|
548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
549
|
+
*/
|
550
550
|
EnableRanger: boolean;
|
551
551
|
/**
|
552
|
-
|
553
|
-
|
554
|
-
|
552
|
+
* Ranger地址列表
|
553
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
554
|
+
*/
|
555
555
|
RangerServiceAddresses: Array<string>;
|
556
556
|
}
|
557
557
|
/**
|
@@ -559,28 +559,28 @@ export interface FileSystem {
|
|
559
559
|
*/
|
560
560
|
export interface RestoreTask {
|
561
561
|
/**
|
562
|
-
|
563
|
-
|
562
|
+
* 回热任务ID
|
563
|
+
*/
|
564
564
|
RestoreTaskId?: number;
|
565
565
|
/**
|
566
|
-
|
567
|
-
|
566
|
+
* 回热任务文件路径
|
567
|
+
*/
|
568
568
|
FilePath?: string;
|
569
569
|
/**
|
570
|
-
|
571
|
-
|
570
|
+
* 回热任务类型(1:标准;2:极速;3:批量,暂时仅支持极速)
|
571
|
+
*/
|
572
572
|
Type?: number;
|
573
573
|
/**
|
574
|
-
|
575
|
-
|
574
|
+
* 指定恢复出的临时副本的有效时长(单位天)
|
575
|
+
*/
|
576
576
|
Days?: number;
|
577
577
|
/**
|
578
|
-
|
579
|
-
|
578
|
+
* 回热任务状态(1:绑定文件中;2:绑定文件完成;3:文件回热中;4:文件回热完成)
|
579
|
+
*/
|
580
580
|
Status?: number;
|
581
581
|
/**
|
582
|
-
|
583
|
-
|
582
|
+
* 创建时间
|
583
|
+
*/
|
584
584
|
CreateTime?: string;
|
585
585
|
}
|
586
586
|
/**
|
@@ -588,16 +588,16 @@ export interface RestoreTask {
|
|
588
588
|
*/
|
589
589
|
export interface ModifyMountPointRequest {
|
590
590
|
/**
|
591
|
-
|
592
|
-
|
591
|
+
* 挂载点ID
|
592
|
+
*/
|
593
593
|
MountPointId: string;
|
594
594
|
/**
|
595
|
-
|
596
|
-
|
595
|
+
* 挂载点名称
|
596
|
+
*/
|
597
597
|
MountPointName?: string;
|
598
598
|
/**
|
599
|
-
|
600
|
-
|
599
|
+
* 挂载点状态
|
600
|
+
*/
|
601
601
|
MountPointStatus?: number;
|
602
602
|
}
|
603
603
|
/**
|
@@ -605,12 +605,12 @@ export interface ModifyMountPointRequest {
|
|
605
605
|
*/
|
606
606
|
export interface DescribeAccessRulesResponse {
|
607
607
|
/**
|
608
|
-
|
609
|
-
|
608
|
+
* 权限规则列表
|
609
|
+
*/
|
610
610
|
AccessRules: Array<AccessRule>;
|
611
611
|
/**
|
612
|
-
|
613
|
-
|
612
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
613
|
+
*/
|
614
614
|
RequestId?: string;
|
615
615
|
}
|
616
616
|
/**
|
@@ -618,8 +618,8 @@ export interface DescribeAccessRulesResponse {
|
|
618
618
|
*/
|
619
619
|
export interface DeleteLifeCycleRulesResponse {
|
620
620
|
/**
|
621
|
-
|
622
|
-
|
621
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
622
|
+
*/
|
623
623
|
RequestId?: string;
|
624
624
|
}
|
625
625
|
/**
|
@@ -627,12 +627,12 @@ export interface DeleteLifeCycleRulesResponse {
|
|
627
627
|
*/
|
628
628
|
export interface CreateRestoreTasksRequest {
|
629
629
|
/**
|
630
|
-
|
631
|
-
|
630
|
+
* 文件系统ID
|
631
|
+
*/
|
632
632
|
FileSystemId: string;
|
633
633
|
/**
|
634
|
-
|
635
|
-
|
634
|
+
* 多个回热任务,上限为10
|
635
|
+
*/
|
636
636
|
RestoreTasks: Array<RestoreTask>;
|
637
637
|
}
|
638
638
|
/**
|
@@ -640,12 +640,12 @@ export interface CreateRestoreTasksRequest {
|
|
640
640
|
*/
|
641
641
|
export interface Transition {
|
642
642
|
/**
|
643
|
-
|
644
|
-
|
643
|
+
* 触发时间(单位天)
|
644
|
+
*/
|
645
645
|
Days: number;
|
646
646
|
/**
|
647
|
-
|
648
|
-
|
647
|
+
* 转换类型(1:归档;2:删除;3:低频)
|
648
|
+
*/
|
649
649
|
Type: number;
|
650
650
|
}
|
651
651
|
/**
|
@@ -653,12 +653,12 @@ export interface Transition {
|
|
653
653
|
*/
|
654
654
|
export interface DescribeRestoreTasksResponse {
|
655
655
|
/**
|
656
|
-
|
657
|
-
|
656
|
+
* 回热任务列表
|
657
|
+
*/
|
658
658
|
RestoreTasks: Array<RestoreTask>;
|
659
659
|
/**
|
660
|
-
|
661
|
-
|
660
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
661
|
+
*/
|
662
662
|
RequestId?: string;
|
663
663
|
}
|
664
664
|
/**
|
@@ -666,12 +666,12 @@ export interface DescribeRestoreTasksResponse {
|
|
666
666
|
*/
|
667
667
|
export interface DescribeLifeCycleRulesResponse {
|
668
668
|
/**
|
669
|
-
|
670
|
-
|
669
|
+
* 生命周期规则列表
|
670
|
+
*/
|
671
671
|
LifeCycleRules: Array<LifeCycleRule>;
|
672
672
|
/**
|
673
|
-
|
674
|
-
|
673
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
674
|
+
*/
|
675
675
|
RequestId?: string;
|
676
676
|
}
|
677
677
|
/**
|
@@ -679,12 +679,12 @@ export interface DescribeLifeCycleRulesResponse {
|
|
679
679
|
*/
|
680
680
|
export interface CreateAccessGroupResponse {
|
681
681
|
/**
|
682
|
-
|
683
|
-
|
682
|
+
* 权限组
|
683
|
+
*/
|
684
684
|
AccessGroup: AccessGroup;
|
685
685
|
/**
|
686
|
-
|
687
|
-
|
686
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
687
|
+
*/
|
688
688
|
RequestId?: string;
|
689
689
|
}
|
690
690
|
/**
|
@@ -692,8 +692,8 @@ export interface CreateAccessGroupResponse {
|
|
692
692
|
*/
|
693
693
|
export interface DisassociateAccessGroupsResponse {
|
694
694
|
/**
|
695
|
-
|
696
|
-
|
695
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
696
|
+
*/
|
697
697
|
RequestId?: string;
|
698
698
|
}
|
699
699
|
/**
|
@@ -701,8 +701,8 @@ export interface DisassociateAccessGroupsResponse {
|
|
701
701
|
*/
|
702
702
|
export interface DeleteAccessRulesRequest {
|
703
703
|
/**
|
704
|
-
|
705
|
-
|
704
|
+
* 多个权限规则ID,上限为10
|
705
|
+
*/
|
706
706
|
AccessRuleIds: Array<number>;
|
707
707
|
}
|
708
708
|
/**
|
@@ -710,8 +710,8 @@ export interface DeleteAccessRulesRequest {
|
|
710
710
|
*/
|
711
711
|
export interface DeleteAccessRulesResponse {
|
712
712
|
/**
|
713
|
-
|
714
|
-
|
713
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
714
|
+
*/
|
715
715
|
RequestId?: string;
|
716
716
|
}
|
717
717
|
/**
|
@@ -723,8 +723,8 @@ export declare type DescribeFileSystemsRequest = null;
|
|
723
723
|
*/
|
724
724
|
export interface DescribeResourceTagsRequest {
|
725
725
|
/**
|
726
|
-
|
727
|
-
|
726
|
+
* 文件系统ID
|
727
|
+
*/
|
728
728
|
FileSystemId: string;
|
729
729
|
}
|
730
730
|
/**
|
@@ -732,8 +732,8 @@ export interface DescribeResourceTagsRequest {
|
|
732
732
|
*/
|
733
733
|
export interface ModifyResourceTagsResponse {
|
734
734
|
/**
|
735
|
-
|
736
|
-
|
735
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
736
|
+
*/
|
737
737
|
RequestId?: string;
|
738
738
|
}
|
739
739
|
/**
|
@@ -741,28 +741,28 @@ export interface ModifyResourceTagsResponse {
|
|
741
741
|
*/
|
742
742
|
export interface LifeCycleRule {
|
743
743
|
/**
|
744
|
-
|
745
|
-
|
744
|
+
* 生命周期规则ID
|
745
|
+
*/
|
746
746
|
LifeCycleRuleId?: number;
|
747
747
|
/**
|
748
|
-
|
749
|
-
|
748
|
+
* 生命周期规则名称
|
749
|
+
*/
|
750
750
|
LifeCycleRuleName?: string;
|
751
751
|
/**
|
752
|
-
|
753
|
-
|
752
|
+
* 生命周期规则路径(目录或文件)
|
753
|
+
*/
|
754
754
|
Path?: string;
|
755
755
|
/**
|
756
|
-
|
757
|
-
|
756
|
+
* 生命周期规则转换列表
|
757
|
+
*/
|
758
758
|
Transitions?: Array<Transition>;
|
759
759
|
/**
|
760
|
-
|
761
|
-
|
760
|
+
* 生命周期规则状态(1:打开;2:关闭)
|
761
|
+
*/
|
762
762
|
Status?: number;
|
763
763
|
/**
|
764
|
-
|
765
|
-
|
764
|
+
* 创建时间
|
765
|
+
*/
|
766
766
|
CreateTime?: string;
|
767
767
|
}
|
768
768
|
/**
|
@@ -770,12 +770,12 @@ export interface LifeCycleRule {
|
|
770
770
|
*/
|
771
771
|
export interface CreateAccessRulesRequest {
|
772
772
|
/**
|
773
|
-
|
774
|
-
|
773
|
+
* 多个权限规则,上限为10
|
774
|
+
*/
|
775
775
|
AccessRules: Array<AccessRule>;
|
776
776
|
/**
|
777
|
-
|
778
|
-
|
777
|
+
* 权限组ID
|
778
|
+
*/
|
779
779
|
AccessGroupId: string;
|
780
780
|
}
|
781
781
|
/**
|
@@ -783,12 +783,12 @@ export interface CreateAccessRulesRequest {
|
|
783
783
|
*/
|
784
784
|
export interface DescribeAccessGroupResponse {
|
785
785
|
/**
|
786
|
-
|
787
|
-
|
786
|
+
* 权限组
|
787
|
+
*/
|
788
788
|
AccessGroup: AccessGroup;
|
789
789
|
/**
|
790
|
-
|
791
|
-
|
790
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
791
|
+
*/
|
792
792
|
RequestId?: string;
|
793
793
|
}
|
794
794
|
/**
|
@@ -796,28 +796,28 @@ export interface DescribeAccessGroupResponse {
|
|
796
796
|
*/
|
797
797
|
export interface MountPoint {
|
798
798
|
/**
|
799
|
-
|
800
|
-
|
799
|
+
* 挂载点ID
|
800
|
+
*/
|
801
801
|
MountPointId: string;
|
802
802
|
/**
|
803
|
-
|
804
|
-
|
803
|
+
* 挂载点名称
|
804
|
+
*/
|
805
805
|
MountPointName?: string;
|
806
806
|
/**
|
807
|
-
|
808
|
-
|
807
|
+
* 文件系统ID
|
808
|
+
*/
|
809
809
|
FileSystemId: string;
|
810
810
|
/**
|
811
|
-
|
812
|
-
|
811
|
+
* 挂载点状态(1:打开;2:关闭)
|
812
|
+
*/
|
813
813
|
Status: number;
|
814
814
|
/**
|
815
|
-
|
816
|
-
|
815
|
+
* 创建时间
|
816
|
+
*/
|
817
817
|
CreateTime: string;
|
818
818
|
/**
|
819
|
-
|
820
|
-
|
819
|
+
* 绑定的权限组ID列表
|
820
|
+
*/
|
821
821
|
AccessGroupIds: Array<string>;
|
822
822
|
}
|
823
823
|
/**
|
@@ -825,12 +825,12 @@ export interface MountPoint {
|
|
825
825
|
*/
|
826
826
|
export interface DescribeMountPointsResponse {
|
827
827
|
/**
|
828
|
-
|
829
|
-
|
828
|
+
* 挂载点列表
|
829
|
+
*/
|
830
830
|
MountPoints: Array<MountPoint>;
|
831
831
|
/**
|
832
|
-
|
833
|
-
|
832
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
833
|
+
*/
|
834
834
|
RequestId?: string;
|
835
835
|
}
|
836
836
|
/**
|
@@ -838,8 +838,8 @@ export interface DescribeMountPointsResponse {
|
|
838
838
|
*/
|
839
839
|
export interface DescribeRestoreTasksRequest {
|
840
840
|
/**
|
841
|
-
|
842
|
-
|
841
|
+
* 文件系统ID
|
842
|
+
*/
|
843
843
|
FileSystemId: string;
|
844
844
|
}
|
845
845
|
/**
|
@@ -847,8 +847,8 @@ export interface DescribeRestoreTasksRequest {
|
|
847
847
|
*/
|
848
848
|
export interface DescribeAccessGroupRequest {
|
849
849
|
/**
|
850
|
-
|
851
|
-
|
850
|
+
* 权限组ID
|
851
|
+
*/
|
852
852
|
AccessGroupId: string;
|
853
853
|
}
|
854
854
|
/**
|
@@ -856,8 +856,8 @@ export interface DescribeAccessGroupRequest {
|
|
856
856
|
*/
|
857
857
|
export interface AssociateAccessGroupsResponse {
|
858
858
|
/**
|
859
|
-
|
860
|
-
|
859
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
860
|
+
*/
|
861
861
|
RequestId?: string;
|
862
862
|
}
|
863
863
|
/**
|
@@ -865,8 +865,8 @@ export interface AssociateAccessGroupsResponse {
|
|
865
865
|
*/
|
866
866
|
export interface ModifyAccessRulesResponse {
|
867
867
|
/**
|
868
|
-
|
869
|
-
|
868
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
869
|
+
*/
|
870
870
|
RequestId?: string;
|
871
871
|
}
|
872
872
|
/**
|
@@ -874,8 +874,8 @@ export interface ModifyAccessRulesResponse {
|
|
874
874
|
*/
|
875
875
|
export interface CreateLifeCycleRulesResponse {
|
876
876
|
/**
|
877
|
-
|
878
|
-
|
877
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
878
|
+
*/
|
879
879
|
RequestId?: string;
|
880
880
|
}
|
881
881
|
/**
|
@@ -883,8 +883,8 @@ export interface CreateLifeCycleRulesResponse {
|
|
883
883
|
*/
|
884
884
|
export interface ModifyAccessGroupResponse {
|
885
885
|
/**
|
886
|
-
|
887
|
-
|
886
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
887
|
+
*/
|
888
888
|
RequestId?: string;
|
889
889
|
}
|
890
890
|
/**
|
@@ -892,12 +892,12 @@ export interface ModifyAccessGroupResponse {
|
|
892
892
|
*/
|
893
893
|
export interface Tag {
|
894
894
|
/**
|
895
|
-
|
896
|
-
|
895
|
+
* 标签键
|
896
|
+
*/
|
897
897
|
Key: string;
|
898
898
|
/**
|
899
|
-
|
900
|
-
|
899
|
+
* 标签值
|
900
|
+
*/
|
901
901
|
Value: string;
|
902
902
|
}
|
903
903
|
/**
|
@@ -905,8 +905,8 @@ export interface Tag {
|
|
905
905
|
*/
|
906
906
|
export interface ModifyMountPointResponse {
|
907
907
|
/**
|
908
|
-
|
909
|
-
|
908
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
909
|
+
*/
|
910
910
|
RequestId?: string;
|
911
911
|
}
|
912
912
|
/**
|
@@ -914,8 +914,8 @@ export interface ModifyMountPointResponse {
|
|
914
914
|
*/
|
915
915
|
export interface ModifyAccessRulesRequest {
|
916
916
|
/**
|
917
|
-
|
918
|
-
|
917
|
+
* 多个权限规则,上限为10
|
918
|
+
*/
|
919
919
|
AccessRules: Array<AccessRule>;
|
920
920
|
}
|
921
921
|
/**
|
@@ -923,20 +923,20 @@ export interface ModifyAccessRulesRequest {
|
|
923
923
|
*/
|
924
924
|
export interface CreateAccessGroupRequest {
|
925
925
|
/**
|
926
|
-
|
927
|
-
|
926
|
+
* 权限组名称
|
927
|
+
*/
|
928
928
|
AccessGroupName: string;
|
929
929
|
/**
|
930
|
-
|
931
|
-
|
930
|
+
* VPC网络类型(1:CVM;2:黑石1.0)
|
931
|
+
*/
|
932
932
|
VpcType: number;
|
933
933
|
/**
|
934
|
-
|
935
|
-
|
934
|
+
* VPC网络ID
|
935
|
+
*/
|
936
936
|
VpcId: string;
|
937
937
|
/**
|
938
|
-
|
939
|
-
|
938
|
+
* 权限组描述,默认为空字符串
|
939
|
+
*/
|
940
940
|
Description?: string;
|
941
941
|
}
|
942
942
|
/**
|
@@ -944,11 +944,11 @@ export interface CreateAccessGroupRequest {
|
|
944
944
|
*/
|
945
945
|
export interface DescribeMountPointResponse {
|
946
946
|
/**
|
947
|
-
|
948
|
-
|
947
|
+
* 挂载点
|
948
|
+
*/
|
949
949
|
MountPoint: MountPoint;
|
950
950
|
/**
|
951
|
-
|
952
|
-
|
951
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
952
|
+
*/
|
953
953
|
RequestId?: string;
|
954
954
|
}
|