blob: 879e736df6f75438eaa7e393454d7d0e05b8df6c [file] [log] [blame]
// Copyright 2023 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.tzres_roller;
message InputProperties {
// Name of the tzdata repository to check out.
// e.g. "sso://fuchsia/third_party/github.com/unicode-org/icu-data"
string repo = 1;
// The name of the CIPD package containing the timfezone data.
// E.g. "fuchsia/third_party/zoneinfo"
string tzdata_cipd_package_name = 2;
// The ICU data version(s) to copy.
// E.g. "44".
string icu_data_version = 3;
// The version endianness.
// E.g. "le" (that's lowercase "LE"), practically always.
string endianness = 4;
}