aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-07-29 02:08:55 -0700
committerChris Lu <chris.lu@gmail.com>2021-07-29 02:08:55 -0700
commit899963ac20556f6a48aad431eec8ec995e982dd3 (patch)
treebdf72887191ad2e9139c3fd9375575f0d8bfdfa0 /other/java
parentc090d6bb254b7d5666d0158fc8d7d54c10161c11 (diff)
downloadseaweedfs-899963ac20556f6a48aad431eec8ec995e982dd3.tar.xz
seaweedfs-899963ac20556f6a48aad431eec8ec995e982dd3.zip
remote storage location changed to struct
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto7
1 files changed, 6 insertions, 1 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index efecc4e97..1a5cfe79b 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -393,5 +393,10 @@ message RemoteConf {
}
message RemoteStorageMapping {
- map<string,string> mappings = 1;
+ map<string,RemoteStorageLocation> mappings = 1;
+}
+message RemoteStorageLocation {
+ string name = 1;
+ string bucket = 2;
+ string path = 3;
}