ksyun-sdk-node 1.5.38 → 1.5.40
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.
|
@@ -61,7 +61,8 @@ module.exports = class Client extends BaseClient {
|
|
|
61
61
|
FileSystemId: "String",
|
|
62
62
|
StartTime: "String",
|
|
63
63
|
EndTime: "String",
|
|
64
|
-
Interval: "String"
|
|
64
|
+
Interval: "String",
|
|
65
|
+
DirPath: "String"
|
|
65
66
|
}
|
|
66
67
|
},
|
|
67
68
|
GetInodeCount: {
|
|
@@ -80,7 +81,8 @@ module.exports = class Client extends BaseClient {
|
|
|
80
81
|
FileSystemId: "String",
|
|
81
82
|
StartTime: "String",
|
|
82
83
|
EndTime: "String",
|
|
83
|
-
Interval: "String"
|
|
84
|
+
Interval: "String",
|
|
85
|
+
DirPath: "String"
|
|
84
86
|
}
|
|
85
87
|
},
|
|
86
88
|
GetCapacityAvailable: {
|
|
@@ -308,7 +310,10 @@ module.exports = class Client extends BaseClient {
|
|
|
308
310
|
ClusterName: "String",
|
|
309
311
|
FileSystemName: "String",
|
|
310
312
|
DirPath: "String",
|
|
311
|
-
|
|
313
|
+
LogicalCapacityType: "String",
|
|
314
|
+
LogicalHardThreshold: "Long",
|
|
315
|
+
LogicalInodesType: "String",
|
|
316
|
+
LogicalHardInodes: "Long"
|
|
312
317
|
}
|
|
313
318
|
},
|
|
314
319
|
CreateDirQuota: {
|
|
@@ -329,7 +334,10 @@ module.exports = class Client extends BaseClient {
|
|
|
329
334
|
ClusterName: "String",
|
|
330
335
|
FileSystemName: "String",
|
|
331
336
|
DirPath: "String",
|
|
332
|
-
|
|
337
|
+
LogicalCapacityType: "String",
|
|
338
|
+
LogicalHardThreshold: "Long",
|
|
339
|
+
LogicalInodesType: "String",
|
|
340
|
+
LogicalHardInodes: "Long"
|
|
333
341
|
}
|
|
334
342
|
},
|
|
335
343
|
DescribeSubDirList: {
|
package/package.json
CHANGED
|
@@ -55,6 +55,7 @@ module.exports = class Client extends BaseClient {
|
|
|
55
55
|
StartTime: "String",
|
|
56
56
|
EndTime: "String",
|
|
57
57
|
Interval: "String",
|
|
58
|
+
DirPath: "String",
|
|
58
59
|
},
|
|
59
60
|
},
|
|
60
61
|
GetInodeCount: {
|
|
@@ -74,6 +75,7 @@ module.exports = class Client extends BaseClient {
|
|
|
74
75
|
StartTime: "String",
|
|
75
76
|
EndTime: "String",
|
|
76
77
|
Interval: "String",
|
|
78
|
+
DirPath: "String",
|
|
77
79
|
},
|
|
78
80
|
},
|
|
79
81
|
GetCapacityAvailable: {
|
|
@@ -301,7 +303,10 @@ module.exports = class Client extends BaseClient {
|
|
|
301
303
|
ClusterName: "String",
|
|
302
304
|
FileSystemName: "String",
|
|
303
305
|
DirPath: "String",
|
|
306
|
+
LogicalCapacityType: "String",
|
|
304
307
|
LogicalHardThreshold: "Long",
|
|
308
|
+
LogicalInodesType: "String",
|
|
309
|
+
LogicalHardInodes: "Long",
|
|
305
310
|
},
|
|
306
311
|
},
|
|
307
312
|
CreateDirQuota: {
|
|
@@ -322,7 +327,10 @@ module.exports = class Client extends BaseClient {
|
|
|
322
327
|
ClusterName: "String",
|
|
323
328
|
FileSystemName: "String",
|
|
324
329
|
DirPath: "String",
|
|
330
|
+
LogicalCapacityType: "String",
|
|
325
331
|
LogicalHardThreshold: "Long",
|
|
332
|
+
LogicalInodesType: "String",
|
|
333
|
+
LogicalHardInodes: "Long",
|
|
326
334
|
},
|
|
327
335
|
},
|
|
328
336
|
DescribeSubDirList: {
|