diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-19 02:47:27 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-19 02:47:27 -0700 |
| commit | 450222dd64727caaa958ec99988e5352d3cad54c (patch) | |
| tree | 133cbd5e1c3cf123bd327685eb901969a5926fb9 /other | |
| parent | 8dc5def435826dcbe1e97098f55394ed42529ea9 (diff) | |
| download | seaweedfs-450222dd64727caaa958ec99988e5352d3cad54c.tar.xz seaweedfs-450222dd64727caaa958ec99988e5352d3cad54c.zip | |
add remote to filer.Entry and filer_pb entry, add RemoteConf
Diffstat (limited to 'other')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index dd88bc005..60c222413 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -374,3 +374,11 @@ message FilerConf { } repeated PathConf locations = 2; } + +message RemoteConf { + string type = 1; + string name = 2; + string url = 3; + string access_key = 4; + string secret_key = 5; +} |
