diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-21 02:24:34 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-21 02:24:34 -0700 |
| commit | 70effac0d3edc95e55aa0c6d70e9d35a259ca2c8 (patch) | |
| tree | 6ba7538bbf6e47e8333edbf7f4b1f779bf7ca826 /other/java | |
| parent | 3138805b3319e02522a9394b47635b7dc0f6413a (diff) | |
| download | seaweedfs-70effac0d3edc95e55aa0c6d70e9d35a259ca2c8.tar.xz seaweedfs-70effac0d3edc95e55aa0c6d70e9d35a259ca2c8.zip | |
configure and store remote configurations
Diffstat (limited to 'other/java')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index 60c222413..803a2ce32 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -378,7 +378,8 @@ message FilerConf { message RemoteConf { string type = 1; string name = 2; - string url = 3; - string access_key = 4; - string secret_key = 5; + string s3_access_key = 4; + string s3_secret_key = 5; + string s3_region = 6; + string s3_endpoint = 7; } |
