public sealed class Package : IMessage<Package>, IEquatable<Package>, IDeepCloneable<Package>, IBufferMessage, IMessage
Reference documentation and code samples for the Dataflow v1beta3 API class Package.
The packages that must be installed in order for a worker to run the
steps of the Cloud Dataflow job that will be assigned to its worker
pool.
This is the mechanism by which the Cloud Dataflow SDK causes code to
be loaded onto the workers. For example, the Cloud Dataflow Java SDK
might use this to install jars containing the user's code and all of the
various dependencies (libraries, data files, etc.) required in order
for that code to run.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The `Package` class in the Dataflow v1beta3 API is used to define the packages that need to be installed on a worker for a Cloud Dataflow job to run."],["This class acts as a method for the Cloud Dataflow SDK to load code and dependencies onto worker nodes, allowing for the execution of user code and its required components."],["The `Package` class inherits from `object` and implements interfaces like `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, providing functionalities for message handling and object manipulation."],["The `Package` class has properties `Location` and `Name`, which are strings and allow you to specify where to retrieve a package, such as from Google Cloud Storage, and what to call that package, respectively."]]],[]]