| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 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 import "google/protobuf/duration.proto"; | 7 import "google/protobuf/duration.proto"; |
| 8 | 8 |
| 9 package swarmingV1; | 9 package swarmingV1; |
| 10 | 10 |
| 11 message Config { | 11 message Config { |
| 12 message Swarming { | 12 message Swarming { |
| 13 string host = 1; | 13 string url = 1; |
| 14 } | 14 } |
| 15 Swarming swarming = 1; | 15 Swarming swarming = 1; |
| 16 | 16 |
| 17 message Isolate { | 17 message Isolate { |
| 18 // The host of the isolate service, e.g. isolateserver.appspot.com. | 18 // The host of the isolate service, e.g. isolateserver.appspot.com. |
| 19 string host = 1; | 19 string url = 1; |
| 20 | 20 |
| 21 // The default assumed expiration period for execution results. | 21 // The default assumed expiration period for execution results. |
| 22 google.protobuf.Duration expiration = 2; | 22 google.protobuf.Duration expiration = 2; |
| 23 } | 23 } |
| 24 Isolate isolate = 2; | 24 Isolate isolate = 2; |
| 25 } | 25 } |
| OLD | NEW |