From 19c902c524226d956de5cab335deaf31f40a1536 Mon Sep 17 00:00:00 2001 From: Tarun Annapareddy Date: Tue, 19 May 2026 10:04:16 -0700 Subject: [PATCH] Update Dataflow Proto --- .../internal/clients/dataflow/dataflow_v1b3_messages.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdks/python/apache_beam/runners/dataflow/internal/clients/dataflow/dataflow_v1b3_messages.py b/sdks/python/apache_beam/runners/dataflow/internal/clients/dataflow/dataflow_v1b3_messages.py index 582fb30b57b1..19822d4428b0 100644 --- a/sdks/python/apache_beam/runners/dataflow/internal/clients/dataflow/dataflow_v1b3_messages.py +++ b/sdks/python/apache_beam/runners/dataflow/internal/clients/dataflow/dataflow_v1b3_messages.py @@ -4477,10 +4477,15 @@ class Package(_messages.Message): type is: Google Cloud Storage: storage.googleapis.com/{bucket} bucket.storage.googleapis.com/ name: The name of the package. + sha256: Optional. The hex-encoded SHA256 checksum of the package. If the + checksum is provided, the worker will verify the checksum of the package + before using it. If the checksum does not match, the worker will fail to + start. """ location = _messages.StringField(1) name = _messages.StringField(2) + sha256 = _messages.StringField(3) class ParDoInstruction(_messages.Message):