Skip to content

Commit

Permalink
Add alpha annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
xing-yang committed Mar 4, 2023
1 parent 47a0fa4 commit 3084acc
Show file tree
Hide file tree
Showing 3 changed files with 273 additions and 260 deletions.
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

0 comments on commit 3084acc

Please sign in to comment.