Skip to content

Commit da6ca37

Browse files
committed
python(feat): updated exports.proto to support parquet
1 parent 19c6241 commit da6ca37

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

protos/sift/exports/v1/exports.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ enum ExportOutputFormat {
5555
EXPORT_OUTPUT_FORMAT_UNSPECIFIED = 0;
5656
EXPORT_OUTPUT_FORMAT_CSV = 1;
5757
EXPORT_OUTPUT_FORMAT_SUN = 2;
58+
EXPORT_OUTPUT_FORMAT_PARQUET = 3;
5859
}
5960

6061
message TimeRange {
@@ -101,6 +102,9 @@ message ExportDataResponse {
101102

102103
// This will be non-empty if the export is being processed asynchronously in a background job.
103104
string job_id = 2 [(google.api.field_behavior) = OPTIONAL];
105+
106+
// Optional message for the client to display in success or error notification (e.g. exclusions or 403 reason).
107+
string service_message = 3 [(google.api.field_behavior) = OPTIONAL];
104108
}
105109

106110
message GetDownloadUrlRequest {
@@ -109,4 +113,7 @@ message GetDownloadUrlRequest {
109113

110114
message GetDownloadUrlResponse {
111115
string presigned_url = 1 [(google.api.field_behavior) = REQUIRED];
116+
117+
// Optional message for the client to display in success or error notification.
118+
string service_message = 2 [(google.api.field_behavior) = OPTIONAL];
112119
}

0 commit comments

Comments
 (0)