Class: Google::Apis::DataflowV1b3::ComponentSource
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::ComponentSource
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Description of an interstitial value between transforms in an execution stage.
Instance Attribute Summary collapse
-
#name ⇒ String
Dataflow service generated name for this source.
-
#original_transform_or_collection ⇒ String
User name for the original user transform or collection with which this source is most closely associated.
-
#user_name ⇒ String
Human-readable name for this transform; may be user or system generated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ComponentSource
constructor
A new instance of ComponentSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ComponentSource
Returns a new instance of ComponentSource.
449 450 451 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 449 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Dataflow service generated name for this source.
Corresponds to the JSON property name
436 437 438 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 436 def name @name end |
#original_transform_or_collection ⇒ String
User name for the original user transform or collection with which this source
is most closely associated.
Corresponds to the JSON property originalTransformOrCollection
442 443 444 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 442 def original_transform_or_collection @original_transform_or_collection end |
#user_name ⇒ String
Human-readable name for this transform; may be user or system generated.
Corresponds to the JSON property userName
447 448 449 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 447 def user_name @user_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
454 455 456 457 458 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 454 def update!(**args) @name = args[:name] if args.key?(:name) @original_transform_or_collection = args[:original_transform_or_collection] if args.key?(:original_transform_or_collection) @user_name = args[:user_name] if args.key?(:user_name) end |