File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
syntax = "proto3" ;
2
2
package depot.core.v1 ;
3
3
4
+ import "google/protobuf/struct.proto" ;
4
5
import "google/protobuf/timestamp.proto" ;
5
6
6
7
service ProjectService {
@@ -74,6 +75,7 @@ message CreateProjectRequest {
74
75
string region_id = 3 ;
75
76
optional CachePolicy cache_policy = 4 ;
76
77
optional Hardware hardware = 5 ;
78
+ optional NullableInt32 max_build_duration_minutes = 6 ;
77
79
}
78
80
79
81
message CreateProjectResponse {
@@ -86,6 +88,7 @@ message UpdateProjectRequest {
86
88
optional string region_id = 3 ;
87
89
optional CachePolicy cache_policy = 4 ;
88
90
optional Hardware hardware = 5 ;
91
+ optional NullableInt32 max_build_duration_minutes = 6 ;
89
92
}
90
93
91
94
message UpdateProjectResponse {
@@ -218,3 +221,10 @@ message DeleteTokenRequest {
218
221
}
219
222
220
223
message DeleteTokenResponse {}
224
+
225
+ message NullableInt32 {
226
+ oneof kind {
227
+ google.protobuf.NullValue null = 1 ;
228
+ int32 value = 2 ;
229
+ }
230
+ }
You can’t perform that action at this time.
0 commit comments