@@ -30,12 +30,14 @@ class _ExportOutputFormatEnumTypeWrapper(google.protobuf.internal.enum_type_wrap
3030 EXPORT_OUTPUT_FORMAT_UNSPECIFIED : _ExportOutputFormat .ValueType # 0
3131 EXPORT_OUTPUT_FORMAT_CSV : _ExportOutputFormat .ValueType # 1
3232 EXPORT_OUTPUT_FORMAT_SUN : _ExportOutputFormat .ValueType # 2
33+ EXPORT_OUTPUT_FORMAT_PARQUET : _ExportOutputFormat .ValueType # 3
3334
3435class ExportOutputFormat (_ExportOutputFormat , metaclass = _ExportOutputFormatEnumTypeWrapper ): ...
3536
3637EXPORT_OUTPUT_FORMAT_UNSPECIFIED : ExportOutputFormat .ValueType # 0
3738EXPORT_OUTPUT_FORMAT_CSV : ExportOutputFormat .ValueType # 1
3839EXPORT_OUTPUT_FORMAT_SUN : ExportOutputFormat .ValueType # 2
40+ EXPORT_OUTPUT_FORMAT_PARQUET : ExportOutputFormat .ValueType # 3
3941global___ExportOutputFormat = ExportOutputFormat
4042
4143@typing .final
@@ -225,19 +227,23 @@ class ExportDataResponse(google.protobuf.message.Message):
225227
226228 PRESIGNED_URL_FIELD_NUMBER : builtins .int
227229 JOB_ID_FIELD_NUMBER : builtins .int
230+ SERVICE_MESSAGE_FIELD_NUMBER : builtins .int
228231 presigned_url : builtins .str
229232 """Pre-signed URL of exported zip containing export files. This will be blank if
230233 the job is processed as a background job, in which case `job_id` will be non-empty.
231234 """
232235 job_id : builtins .str
233236 """This will be non-empty if the export is being processed asynchronously in a background job."""
237+ service_message : builtins .str
238+ """Optional message for the client to display in success or error notification (e.g. exclusions or 403 reason)."""
234239 def __init__ (
235240 self ,
236241 * ,
237242 presigned_url : builtins .str = ...,
238243 job_id : builtins .str = ...,
244+ service_message : builtins .str = ...,
239245 ) -> None : ...
240- def ClearField (self , field_name : typing .Literal ["job_id" , b"job_id" , "presigned_url" , b"presigned_url" ]) -> None : ...
246+ def ClearField (self , field_name : typing .Literal ["job_id" , b"job_id" , "presigned_url" , b"presigned_url" , "service_message" , b"service_message" ]) -> None : ...
241247
242248global___ExportDataResponse = ExportDataResponse
243249
@@ -261,12 +267,16 @@ class GetDownloadUrlResponse(google.protobuf.message.Message):
261267 DESCRIPTOR : google .protobuf .descriptor .Descriptor
262268
263269 PRESIGNED_URL_FIELD_NUMBER : builtins .int
270+ SERVICE_MESSAGE_FIELD_NUMBER : builtins .int
264271 presigned_url : builtins .str
272+ service_message : builtins .str
273+ """Optional message for the client to display in success or error notification."""
265274 def __init__ (
266275 self ,
267276 * ,
268277 presigned_url : builtins .str = ...,
278+ service_message : builtins .str = ...,
269279 ) -> None : ...
270- def ClearField (self , field_name : typing .Literal ["presigned_url" , b"presigned_url" ]) -> None : ...
280+ def ClearField (self , field_name : typing .Literal ["presigned_url" , b"presigned_url" , "service_message" , b"service_message" ]) -> None : ...
271281
272282global___GetDownloadUrlResponse = GetDownloadUrlResponse
0 commit comments