diff --git a/src/main/proto/wfa/measurement/api/v2alpha/BUILD.bazel b/src/main/proto/wfa/measurement/api/v2alpha/BUILD.bazel index 574544f5..fc63d642 100644 --- a/src/main/proto/wfa/measurement/api/v2alpha/BUILD.bazel +++ b/src/main/proto/wfa/measurement/api/v2alpha/BUILD.bazel @@ -221,6 +221,7 @@ proto_library( "@com_google_googleapis//google/api:resource_proto", "@com_google_protobuf//:any_proto", "@com_google_protobuf//:duration_proto", + "@com_google_protobuf//:timestamp_proto", ], ) diff --git a/src/main/proto/wfa/measurement/api/v2alpha/measurement.proto b/src/main/proto/wfa/measurement/api/v2alpha/measurement.proto index 6d9b59d3..272f00b5 100644 --- a/src/main/proto/wfa/measurement/api/v2alpha/measurement.proto +++ b/src/main/proto/wfa/measurement/api/v2alpha/measurement.proto @@ -20,6 +20,7 @@ import "google/api/field_behavior.proto"; import "google/api/resource.proto"; import "google/protobuf/any.proto"; import "google/protobuf/duration.proto"; +import "google/protobuf/timestamp.proto"; import "wfa/measurement/api/v2alpha/crypto.proto"; import "wfa/measurement/api/v2alpha/direct_computation.proto"; import "wfa/measurement/api/v2alpha/multi_party_computation.proto"; @@ -356,4 +357,12 @@ message Measurement { // Information about the failure of this `Measurement`. Set when the `state` // is set to `FAILED`. Failure failure = 10 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // When the `Measurement` was created. + google.protobuf.Timestamp create_time = 11 + [(google.api.field_behavior) = OUTPUT_ONLY]; + + // When the 'Measurement' was last updated. + google.protobuf.Timestamp update_time = 12 + [(google.api.field_behavior) = OUTPUT_ONLY]; }