blob: e81a0c297f1a246d72c18bcfb5b86009b3fa246e [file] [log] [blame]
// Copyright 2016 The LUCI Authors. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
syntax = "proto3";
option go_package = "go.chromium.org/luci/dm/api/template;dmTemplate";
import "go.chromium.org/luci/common/data/text/templateproto/template.proto";
import "go.chromium.org/luci/dm/api/service/v1/graph_data.proto";
package dmTemplate;
// File represents a file full of DM template definitions.
message File {
// Template defines a single template.
message Template {
string distributor_config_name = 1;
templateproto.File.Template parameters = 2;
templateproto.File.Template distributor_parameters = 3;
dm.Quest.Desc.Meta meta = 4;
}
map<string, Template> template = 1;
}