1// Copyright 2024 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.scheduling; 8 9import "chromiumos/test/scheduling/os_type.proto"; 10import "chromiumos/test/scheduling/swarming_dimensions.proto"; 11 12option go_package = "./proto"; 13 14message DeviceEvent { 15 int64 event_time = 1; 16 string device_id = 2; 17 uint32 pod_id = 3 [deprecated = true]; 18 SwarmingDimensions device_dimensions = 5; 19 bool device_ready = 4; 20 string device_name = 6; 21 OsType os_type = 7; 22} 23 24message DeviceEvents { 25 repeated DeviceEvent events = 1; 26}