@@ -109,7 +109,6 @@ service Controller {
109
109
110
110
rpc ControllerModifyVolume (ControllerModifyVolumeRequest )
111
111
returns (ControllerModifyVolumeResponse ) {
112
- option (alpha_method) = true ;
113
112
}
114
113
}
115
114
@@ -413,7 +412,7 @@ message CreateVolumeRequest {
413
412
// as if they take precedence over the parameters field.
414
413
// This field SHALL NOT be specified unless the SP has the
415
414
// MODIFY_VOLUME plugin capability.
416
- map <string , string > mutable_parameters = 8 [ (alpha_field) = true ] ;
415
+ map <string , string > mutable_parameters = 8 ;
417
416
}
418
417
419
418
// Specifies what source the volume will be created from. One of the
@@ -890,7 +889,7 @@ message ValidateVolumeCapabilitiesRequest {
890
889
891
890
// See CreateVolumeRequest.mutable_parameters.
892
891
// This field is OPTIONAL.
893
- map <string , string > mutable_parameters = 6 [ (alpha_field) = true ] ;
892
+ map <string , string > mutable_parameters = 6 ;
894
893
}
895
894
896
895
message ValidateVolumeCapabilitiesResponse {
@@ -909,7 +908,7 @@ message ValidateVolumeCapabilitiesResponse {
909
908
910
909
// The volume creation mutable_parameters validated by the plugin.
911
910
// This field is OPTIONAL.
912
- map <string , string > mutable_parameters = 4 [ (alpha_field) = true ] ;
911
+ map <string , string > mutable_parameters = 4 ;
913
912
}
914
913
915
914
// Confirmed indicates to the CO the set of capabilities that the
@@ -1021,8 +1020,6 @@ message ControllerGetVolumeResponse {
1021
1020
VolumeStatus status = 2 ;
1022
1021
}
1023
1022
message ControllerModifyVolumeRequest {
1024
- option (alpha_message) = true ;
1025
-
1026
1023
// Contains identity information for the existing volume.
1027
1024
// This field is REQUIRED.
1028
1025
string volume_id = 1 ;
@@ -1044,7 +1041,6 @@ message ControllerModifyVolumeRequest {
1044
1041
}
1045
1042
1046
1043
message ControllerModifyVolumeResponse {
1047
- option (alpha_message) = true ;
1048
1044
}
1049
1045
1050
1046
message GetCapacityRequest {
@@ -1189,7 +1185,7 @@ message ControllerServiceCapability {
1189
1185
1190
1186
// Indicates the SP supports modifying volume with mutable
1191
1187
// parameters. See ControllerModifyVolume for details.
1192
- MODIFY_VOLUME = 14 [ (alpha_enum_value) = true ] ;
1188
+ MODIFY_VOLUME = 14 ;
1193
1189
1194
1190
// Indicates the SP supports the GetSnapshot RPC.
1195
1191
// This enables COs to fetch an existing snapshot.
0 commit comments