@@ -97,9 +97,7 @@ service Controller {
97
97
returns (ControllerExpandVolumeResponse ) {}
98
98
99
99
rpc ControllerGetVolume (ControllerGetVolumeRequest )
100
- returns (ControllerGetVolumeResponse ) {
101
- option (alpha_method) = true ;
102
- }
100
+ returns (ControllerGetVolumeResponse ) {}
103
101
}
104
102
105
103
service Node {
@@ -884,7 +882,7 @@ message ListVolumesResponse {
884
882
// This field is OPTIONAL.
885
883
// This field MUST be specified if the
886
884
// VOLUME_CONDITION controller capability is supported.
887
- VolumeCondition volume_condition = 2 [ (alpha_field) = true ] ;
885
+ VolumeCondition volume_condition = 2 ;
888
886
}
889
887
890
888
message Entry {
@@ -908,16 +906,12 @@ message ListVolumesResponse {
908
906
string next_token = 2 ;
909
907
}
910
908
message ControllerGetVolumeRequest {
911
- option (alpha_message) = true ;
912
-
913
909
// The ID of the volume to fetch current volume information for.
914
910
// This field is REQUIRED.
915
911
string volume_id = 1 ;
916
912
}
917
913
918
914
message ControllerGetVolumeResponse {
919
- option (alpha_message) = true ;
920
-
921
915
message VolumeStatus {
922
916
// A list of all the `node_id` of nodes that this volume is
923
917
// controller published on.
@@ -1062,14 +1056,12 @@ message ControllerServiceCapability {
1062
1056
// If for some reason Controller and Node Plugins report
1063
1057
// misaligned volume conditions, CO SHALL assume the worst case
1064
1058
// is the truth.
1065
- // Note that, for alpha, `VolumeCondition` is intended be
1066
- // informative for humans only, not for automation.
1067
- VOLUME_CONDITION = 11 [(alpha_enum_value) = true ];
1059
+ VOLUME_CONDITION = 11 ;
1068
1060
1069
1061
// Indicates the SP supports the ControllerGetVolume RPC.
1070
1062
// This enables COs to, for example, fetch per volume
1071
1063
// condition after a volume is provisioned.
1072
- GET_VOLUME = 12 [ (alpha_enum_value) = true ] ;
1064
+ GET_VOLUME = 12 ;
1073
1065
1074
1066
// Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or
1075
1067
// SINGLE_NODE_MULTI_WRITER access modes.
@@ -1440,7 +1432,7 @@ message NodeGetVolumeStatsResponse {
1440
1432
// This field is OPTIONAL.
1441
1433
// This field MUST be specified if the VOLUME_CONDITION node
1442
1434
// capability is supported.
1443
- VolumeCondition volume_condition = 2 [ (alpha_field) = true ] ;
1435
+ VolumeCondition volume_condition = 2 ;
1444
1436
}
1445
1437
1446
1438
message VolumeUsage {
@@ -1467,8 +1459,6 @@ message VolumeUsage {
1467
1459
1468
1460
// VolumeCondition represents the current condition of a volume.
1469
1461
message VolumeCondition {
1470
- option (alpha_message) = true ;
1471
-
1472
1462
// Normal volumes are available for use and operating optimally.
1473
1463
// An abnormal volume does not meet these criteria.
1474
1464
// This field is REQUIRED.
@@ -1509,9 +1499,7 @@ message NodeServiceCapability {
1509
1499
// If for some reason Node and Controller Plugins report
1510
1500
// misaligned volume conditions, CO SHALL assume the worst case
1511
1501
// is the truth.
1512
- // Note that, for alpha, `VolumeCondition` is intended to be
1513
- // informative for humans only, not for automation.
1514
- VOLUME_CONDITION = 4 [(alpha_enum_value) = true ];
1502
+ VOLUME_CONDITION = 4 ;
1515
1503
1516
1504
// Indicates the SP supports the SINGLE_NODE_SINGLE_WRITER and/or
1517
1505
// SINGLE_NODE_MULTI_WRITER access modes.
0 commit comments