| OLD | NEW |
| 1 // Copyright (c) 2015 The LUCI Authors. All rights reserved. | 1 // Copyright (c) 2015 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 syntax = "proto3"; | 5 syntax = "proto3"; |
| 6 | 6 |
| 7 package milo; | 7 package milo; |
| 8 | 8 |
| 9 import "google/protobuf/timestamp.proto"; | 9 import "google/protobuf/timestamp.proto"; |
| 10 | 10 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 // assumed to be identical. If the sha256 doesn't match the data at the URL, | 152 // assumed to be identical. If the sha256 doesn't match the data at the URL, |
| 153 // Milo may render this build with the wrong manifest. | 153 // Milo may render this build with the wrong manifest. |
| 154 // | 154 // |
| 155 // This is the raw sha256, so it should be exactly 32 bytes. | 155 // This is the raw sha256, so it should be exactly 32 bytes. |
| 156 bytes sha256 = 2; | 156 bytes sha256 = 2; |
| 157 } | 157 } |
| 158 | 158 |
| 159 // Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the | 159 // Maps the name of the Manifest, e.g. UNPATCHED, INFRA, etc. to the |
| 160 // ManifestLink. This name will be used in the milo console definition to | 160 // ManifestLink. This name will be used in the milo console definition to |
| 161 // indicate which manifest data to sort the console view by. | 161 // indicate which manifest data to sort the console view by. |
| 162 map<string, ManifestLink> deployment_manifests = 25; | 162 map<string, ManifestLink> source_manifests = 25; |
| 163 } | 163 } |
| 164 | 164 |
| 165 // A Link is an optional label followed by a typed link to an external | 165 // A Link is an optional label followed by a typed link to an external |
| 166 // resource. | 166 // resource. |
| 167 message Link { | 167 message Link { |
| 168 // An optional display label for the link. | 168 // An optional display label for the link. |
| 169 string label = 1; | 169 string label = 1; |
| 170 // If present, this link is an alias for another link with this name, and | 170 // If present, this link is an alias for another link with this name, and |
| 171 // should be rendered in relation to that link. | 171 // should be rendered in relation to that link. |
| 172 string alias_label = 2; | 172 string alias_label = 2; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 212 |
| 213 // The quest name. | 213 // The quest name. |
| 214 string quest = 2; | 214 string quest = 2; |
| 215 | 215 |
| 216 // The attempt number. | 216 // The attempt number. |
| 217 int64 attempt = 3; | 217 int64 attempt = 3; |
| 218 | 218 |
| 219 // The execution number. | 219 // The execution number. |
| 220 int64 execution = 4; | 220 int64 execution = 4; |
| 221 } | 221 } |
| OLD | NEW |