Skip to content

Commit

Permalink
Add PublishedNodes field to ListVolumes Response
Browse files Browse the repository at this point in the history
  • Loading branch information
davidz627 committed Jul 25, 2019
1 parent c3707a6 commit f91bed5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,14 @@ message ListVolumesRequest {
message ListVolumesResponse {
message Entry {
Volume volume = 1;
// A list of all `node_id` of nodes that the volume in this entry
// is controller published on.
// This is a REQUIRED field if the SP has the
// LIST_VOLUMES_PUBLISHED_NODES controller capability. If the SP
// does not have the LIST_VOLUMES_PUBLISHED_NODES capability this
// field MUST be empty.
repeated string published_nodes = 2;
}
repeated Entry entries = 1;
Expand Down Expand Up @@ -1515,6 +1523,10 @@ message ControllerServiceCapability {
// See VolumeExpansion for details.
EXPAND_VOLUME = 9;
// Indicates the SP supports the
// ListVolumesResponse.entry.published_nodes field
LIST_VOLUMES_PUBLISHED_NODES = 10;
}
Type type = 1;
Expand Down

0 comments on commit f91bed5

Please sign in to comment.