1// Copyright 2021 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 recipes.crosvm.build_baguette_image; 8 9message BuildBaguetteImageProperties { 10 // Destination gs bucket where the VM image will be copied. 11 // Optional, maybe ignored 12 string destination_gs_bucket = 1; 13 14 // Destination gs path where the VM image will be copied. 15 // Optional, maybe ignored 16 string destination_gs_path = 2; 17} 18