File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
6061message 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
106110message GetDownloadUrlRequest {
@@ -109,4 +113,7 @@ message GetDownloadUrlRequest {
109113
110114message 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}
You can’t perform that action at this time.
0 commit comments