File tree 3 files changed +15
-6
lines changed
3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,12 @@ message CheckResponse {
38
38
// Index of the request this response is associated with
39
39
int64 request_index = 1 ;
40
40
41
+ // The attributes to use for this response
42
+ Attributes attribute_update = 2 ;
43
+
41
44
// Indicates whether or not the preconditions succeeded
42
- google.rpc.Status result = 2 [(gogoproto.nullable ) = false ];
45
+ google.rpc.Status result = 3 [(gogoproto.nullable ) = false ];
43
46
44
47
// The amount of time for which this result can be considered valid, given the same inputs
45
- google.protobuf.Duration expiration = 3 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
48
+ google.protobuf.Duration expiration = 4 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
46
49
}
Original file line number Diff line number Diff line change @@ -53,12 +53,15 @@ message QuotaResponse {
53
53
// Index of the request this response is associated with.
54
54
int64 request_index = 1 ;
55
55
56
+ // The attributes to use for this response
57
+ Attributes attribute_update = 2 ;
58
+
56
59
// Indicates whether the quota request was successfully processed.
57
- google.rpc.Status result = 2 [(gogoproto.nullable ) = false ];
60
+ google.rpc.Status result = 3 [(gogoproto.nullable ) = false ];
58
61
59
62
// The amount of time the returned quota can be considered valid, this is 0 for non-expiring quotas.
60
- google.protobuf.Duration expiration = 3 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
63
+ google.protobuf.Duration expiration = 4 [(gogoproto.nullable ) = false , (gogoproto.stdduration ) = true ];
61
64
62
65
// The total amount of quota returned, may be less than requested.
63
- int64 amount = 4 ;
66
+ int64 amount = 5 ;
64
67
}
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ message ReportResponse {
37
37
// Index of the request this response is associated with
38
38
int64 request_index = 1 ;
39
39
40
+ // The attributes to use for this response
41
+ Attributes attribute_update = 2 ;
42
+
40
43
// Indicates whether the report was processed or not
41
- google.rpc.Status result = 2 [(gogoproto.nullable ) = false ];
44
+ google.rpc.Status result = 3 [(gogoproto.nullable ) = false ];
42
45
}
You can’t perform that action at this time.
0 commit comments