Skip to content

Commit 311a254

Browse files
authored
Enhance VolumeRuntimeInterface to support Snapshot (#1348)
1 parent 4bd651c commit 311a254

File tree

7 files changed

+1164
-163
lines changed

7 files changed

+1164
-163
lines changed

docs/proposals/12-volumesnapshots.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ service VolumeRuntime {
134134
rpc CreateVolume(CreateVolumeRequest) returns (CreateVolumeResponse) {};
135135
136136
// CreateVolumeSnapshot will be used to create a snapshot of a Volume.
137-
rpc CreateVolumeSnapshot(CreateSnapshotRequest) returns (CreateSnapshotResponse) {};
137+
rpc CreateVolumeSnapshot(CreateVolumeSnapshotRequest) returns (CreateVolumeSnapshotResponse) {};
138138
// DeleteVolumeSnapshot will be used to delete a snapshot and its associated content.
139-
rpc DeleteVolumeSnapshot(DeleteSnapshotRequest) returns (DeleteSnapshotResponse) {};
139+
rpc DeleteVolumeSnapshot(DeleteVolumeSnapshotRequest) returns (DeleteVolumeSnapshotResponse) {};
140140
// ListVolumeSnapshots will be used to list all snapshots managed by the volume provider
141-
rpc ListVolumeSnapshots(ListSnapshotsRequest) returns (ListSnapshotsResponse) {};
141+
rpc ListVolumeSnapshots(ListVolumeSnapshotsRequest) returns (ListVolumeSnapshotsResponse) {};
142142
}
143143
```
144144

0 commit comments

Comments
 (0)