blob: 8cda1a6e8fc746956c2d65195fb115d605525cd0 [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package recipe_modules.fuchsia.rbe;
message InputProperties {
// Remote execution instance.
// This takes the form of:
// projects/<gcp project name>/instances/<rbe instance name>
string instance = 1;
// Reproxy log format.
// This can be either "text" or "reducedtext" in infrastructure.
// Default is "reducedtext", override to "text" if more Information
// is needed from a builder.
string log_format = 2;
// Platform specification, including docker image.
string platform = 3;
// reclient package version in CIPD
string reclient_version = 4;
}