@@ -251,14 +251,14 @@ message VolumeContentSource {
251
251
// This field is REQUIRED. Plugin is REQUIRED to support creating
252
252
// volume from snapshot if it supports the capability
253
253
// CREATE_DELETE_SNAPSHOT.
254
- string id = 1 ;
254
+ string snapshot_id = 1 ;
255
255
}
256
256
257
257
message VolumeSource {
258
258
// Contains identity information for the existing source volume.
259
259
// This field is REQUIRED. Plugins reporting CLONE_VOLUME
260
260
// capability MUST support creating a volume from another volume.
261
- string id = 1 ;
261
+ string volume_id = 1 ;
262
262
}
263
263
264
264
oneof type {
@@ -361,7 +361,7 @@ message Volume {
361
361
// Contains identity information for the created volume. This field is
362
362
// REQUIRED. The identity information will be used by the CO in
363
363
// subsequent calls to refer to the provisioned volume.
364
- string id = 2 ;
364
+ string volume_id = 2 ;
365
365
366
366
// Opaque static properties of the volume. SP MAY use this field to
367
367
// ensure subsequent volume validation and publishing calls have
@@ -372,10 +372,10 @@ message Volume {
372
372
// The contents of this field SHOULD NOT contain sensitive
373
373
// information.
374
374
// The contents of this field SHOULD NOT be used for uniquely
375
- // identifying a volume. The `id ` alone should be sufficient to
375
+ // identifying a volume. The `volume_id ` alone should be sufficient to
376
376
// identify the volume.
377
- // A volume uniquely identified by `id ` SHALL always report the same
378
- // volume_context.
377
+ // A volume uniquely identified by `volume_id ` SHALL always report the
378
+ // same volume_context.
379
379
// This field is OPTIONAL and when present MUST be passed to volume
380
380
// validation and publishing calls.
381
381
map <string , string > volume_context = 3 ;
@@ -875,7 +875,7 @@ message Snapshot {
875
875
// will not change over time. This field is REQUIRED. The identity
876
876
// information will be used by the CO in subsequent calls to refer to
877
877
// the provisioned snapshot.
878
- string id = 2 ;
878
+ string snapshot_id = 2 ;
879
879
880
880
// Identity information for the source volume. Note that creating a
881
881
// snapshot from a snapshot is not supported here so the source has to
0 commit comments