diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-02-24 22:28:45 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-02-24 22:28:45 -0800 |
| commit | 6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8 (patch) | |
| tree | 636d3d9cecfb44f71133c2387d01125fa75bc4a3 /other/java/client/src | |
| parent | 5bcb44eda9b1dba57abf8cd9ce3b2d18518bd100 (diff) | |
| download | seaweedfs-6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8.tar.xz seaweedfs-6ab7368ef2556ef086d13c6d0d4454f1e98a5cd8.zip | |
filer: dynamically create bucket under /buckets folder
Diffstat (limited to 'other/java/client/src')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index 909458daf..6892effe8 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -165,6 +165,7 @@ message AssignVolumeRequest { string replication = 3; int32 ttl_sec = 4; string data_center = 5; + string parent_path = 6; } message AssignVolumeResponse { @@ -173,6 +174,8 @@ message AssignVolumeResponse { string public_url = 3; int32 count = 4; string auth = 5; + string collection = 6; + string replication = 7; } message LookupVolumeRequest { |
