aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-07-19 02:47:27 -0700
committerChris Lu <chris.lu@gmail.com>2021-07-19 02:47:27 -0700
commit450222dd64727caaa958ec99988e5352d3cad54c (patch)
tree133cbd5e1c3cf123bd327685eb901969a5926fb9 /other/java
parent8dc5def435826dcbe1e97098f55394ed42529ea9 (diff)
downloadseaweedfs-450222dd64727caaa958ec99988e5352d3cad54c.tar.xz
seaweedfs-450222dd64727caaa958ec99988e5352d3cad54c.zip
add remote to filer.Entry and filer_pb entry, add RemoteConf
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto8
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;
+}