Class: Google::Apis::DataflowV1b3::SourceFork
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::SourceFork
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
DEPRECATED in favor of DynamicSourceSplit.
Instance Attribute Summary collapse
-
#primary ⇒ Google::Apis::DataflowV1b3::SourceSplitShard
DEPRECATED in favor of DerivedSource.
-
#primary_source ⇒ 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.
-
#residual ⇒ Google::Apis::DataflowV1b3::SourceSplitShard
DEPRECATED in favor of DerivedSource.
-
#residual_source ⇒ 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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SourceFork
constructor
A new instance of SourceFork.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SourceFork
Returns a new instance of SourceFork
3759 3760 3761 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3759 def initialize(**args) update!(**args) end |
Instance Attribute Details
#primary ⇒ Google::Apis::DataflowV1b3::SourceSplitShard
DEPRECATED in favor of DerivedSource.
Corresponds to the JSON property primary
3736 3737 3738 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3736 def primary @primary end |
#primary_source ⇒ 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.
Corresponds to the JSON property primarySource
3744 3745 3746 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3744 def primary_source @primary_source end |
#residual ⇒ Google::Apis::DataflowV1b3::SourceSplitShard
DEPRECATED in favor of DerivedSource.
Corresponds to the JSON property residual
3749 3750 3751 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3749 def residual @residual end |
#residual_source ⇒ 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.
Corresponds to the JSON property residualSource
3757 3758 3759 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3757 def residual_source @residual_source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3764 3765 3766 3767 3768 3769 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3764 def update!(**args) @primary = args[:primary] if args.key?(:primary) @primary_source = args[:primary_source] if args.key?(:primary_source) @residual = args[:residual] if args.key?(:residual) @residual_source = args[:residual_source] if args.key?(:residual_source) end |