Skip to content

Commit

Permalink
feature(rwx): add FilesystemResize method and request
Browse files Browse the repository at this point in the history
Signed-off-by: James Munson <[email protected]>
  • Loading branch information
james-munson committed Nov 3, 2024
1 parent 9e90122 commit 1c245e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions protobuf/smrpc/smrpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,16 @@ option go_package = "github.com/longhorn/types/pkg/generated/smrpc";
import "google/protobuf/empty.proto";

service ShareManagerService {
rpc FilesystemResize(FilesystemResizeRequest) returns (google.protobuf.Empty) {}
rpc FilesystemTrim(FilesystemTrimRequest) returns (google.protobuf.Empty) {}
rpc Unmount(google.protobuf.Empty) returns (google.protobuf.Empty) {}
rpc Mount(google.protobuf.Empty) returns (google.protobuf.Empty) {}
}

message FilesystemResizeRequest {
bool encrypted_device = 1;
}

message FilesystemTrimRequest {
bool encrypted_device = 1;
}

0 comments on commit 1c245e9

Please sign in to comment.