• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2022 The ChromiumOS 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
11import "google/protobuf/timestamp.proto";
12
13// UsbDrive describes details of the USB drive.
14message UsbDrive {
15  // serial provides the serial number of the USB drive.
16  string serial = 1;
17  // manufacturer provides the manufacturer name of the USB drive.
18  string manufacturer = 2;
19  // first_seen_time provides the time when the USB drive was first seen
20  // in lab or test systems. This is used as an optional heuristic to track
21  // the lifetime of USB drives and failure rates.
22  google.protobuf.Timestamp first_seen_time = 3;
23}