• 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.api;
8
9option go_package = "go.chromium.org/chromiumos/config/go/test/api";
10
11import "chromiumos/test/api/android_provision_metadata.proto";
12import "chromiumos/test/api/provision_service.proto";
13import "chromiumos/test/lab/api/dut.proto";
14
15// Next Tag: 5
16message AndroidProvisionCLIResponse {
17  // Required. The DUT Id.
18  chromiumos.test.lab.api.Dut.Id id = 1;
19  // Required. Outcome represents the result of performing provisioning on the DUT.
20  oneof outcome {
21    InstallSuccess success = 2;
22    InstallFailure failure = 3;
23  }
24  // List of the provisioned Android packages.
25  repeated InstalledAndroidPackage android_packages = 4;
26  InstalledAndroidOS installed_android_os = 5;
27}
28