blob: 6fe788aff96f3392a2891696b185b4faabc56c36 [file] [log] [blame]
// Copyright 2020 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package chromiumos.config.api.test.results.v1;
option go_package = "go.chromium.org/chromiumos/config/go/api/test/results/v1;results";
import "google/protobuf/timestamp.proto";
import "chromiumos/config/api/test/results/v1/machine_id.proto";
// Next Tag: 5
message Machine {
// Global unique machine identifier.
MachineId name = 1;
google.protobuf.Timestamp create_time = 2;
// Identity of owner.
// Format:
// - lab/LABNAME
// - user/USERNAME
string owner = 3;
// Hardware identification.
string hwid = 4;
}