-
Notifications
You must be signed in to change notification settings - Fork 116
Open
Description
Is this a BUG REPORT or FEATURE REQUEST?:
FEATURE
What happened:
SDK proto enums should be inside a message so that the strings are easier to comprehend. Instead of using:
Lines 2721 to 2724 in a0292eb
| enum SdkCloudBackupStatusType { | |
| // Unkonwn | |
| SdkCloudBackupStatusTypeUnknown = 0; | |
| // Not started |
Use:
Lines 3129 to 3137 in a0292eb
| message CloudMigrate { | |
| enum OperationType { | |
| InvalidType = 0; | |
| // Migrate all volumes in the cluster | |
| MigrateCluster = 1; | |
| // Migrate a single volume | |
| MigrateVolume = 2; | |
| // Migrate a group of volumes | |
| MigrateVolumeGroup = 3; |
See: #957 (comment)
Metadata
Metadata
Assignees
Labels
No labels