aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto19
1 files changed, 14 insertions, 5 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 8829062f4..f75caec4e 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -350,9 +350,18 @@ message KvPutResponse {
}
// path-based configurations
-message FilerPathConfiguration {
- string location = 1;
- string collection = 2;
- string replication = 3;
- string ttl = 4;
+message FilerConf {
+ int32 version = 1;
+ message PathConf {
+ string location_prefix = 1;
+ string collection = 2;
+ string replication = 3;
+ string ttl = 4;
+ enum DiskType {
+ HDD = 0;
+ SSD = 1;
+ }
+ DiskType disk_type = 5;
+ }
+ repeated PathConf locations = 2;
}