class Google::Apis::DataflowV1b3::DerivedSource
Specification of one of the bundles produced as a result of splitting a Source
(e.g. when executing a SourceSplitRequest
, or when splitting an active task using WorkItemStatus.dynamic_source_split
), relative to the source being split.
Attributes
derivation_mode[RW]
What source to base the produced source on (if any). Corresponds to the JSON property `derivationMode` @return [String]
source[RW]
A source that records can be read and decoded from. Corresponds to the JSON property `source` @return [Google::Apis::DataflowV1b3::Source]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 916 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 921 def update!(**args) @derivation_mode = args[:derivation_mode] if args.key?(:derivation_mode) @source = args[:source] if args.key?(:source) end