diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-29 02:08:55 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-29 02:08:55 -0700 |
| commit | 899963ac20556f6a48aad431eec8ec995e982dd3 (patch) | |
| tree | bdf72887191ad2e9139c3fd9375575f0d8bfdfa0 /other/java | |
| parent | c090d6bb254b7d5666d0158fc8d7d54c10161c11 (diff) | |
| download | seaweedfs-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.proto | 7 |
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; } |
