Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion csi.proto
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ message PluginCapability {
// attempt to invoke the REQUIRED GroupController service RPCs, as
// well as specific RPCs as indicated by
// GroupControllerGetCapabilities.
GROUP_CONTROLLER_SERVICE = 3;
GROUP_CONTROLLER_SERVICE = 3 [(alpha_enum_value) = true];
}
Type type = 1;
}
Expand Down Expand Up @@ -1683,17 +1683,23 @@ message NodeExpandVolumeResponse {
int64 capacity_bytes = 1;
}
message GroupControllerGetCapabilitiesRequest {
option (alpha_message) = true;

// Intentionally empty.
}

message GroupControllerGetCapabilitiesResponse {
option (alpha_message) = true;

// All the capabilities that the group controller service supports.
// This field is OPTIONAL.
repeated GroupControllerServiceCapability capabilities = 1;
}

// Specifies a capability of the group controller service.
message GroupControllerServiceCapability {
option (alpha_message) = true;

message RPC {
enum Type {
UNKNOWN = 0;
Expand Down
Loading