1// Copyright 2025 The Chromium Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7package chromiumos.test.lab.api; 8 9option go_package = "go.chromium.org/chromiumos/config/go/test/lab/api"; 10 11enum StorageType { 12 UNSPECIFIED = 0; 13 UNRECOGNIZED = 1; 14 SSD = 2; 15 HDD = 3; 16 MMC = 4; 17 NVME = 5; 18 UFS = 6; 19}