blob: a6fd4c0d028907a0c51daa335ef2357aba26691d [file] [log] [blame]
// Copyright 2022 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 recipes.fuchsia.contrib.upload_yaml_bigquery;
message InputProperties {
// Repository to checkout.
string repo = 1;
// Path of the YAML to upload.
string yaml_path = 2;
// BigQuery cloud project.
string bq_project = 3;
// BigQuery dataset.
string bq_dataset = 4;
// BigQuery table.
string bq_table = 5;
}