class Google::Apis::DataflowV1b3::ComponentSource
Description of an interstitial value between transforms in an execution stage.
Attributes
name[RW]
Dataflow service generated name for this source. Corresponds to the JSON property `name` @return [String]
original_transform_or_collection[RW]
User name for the original user transform or collection with which this source is most closely associated. Corresponds to the JSON property `originalTransformOrCollection` @return [String]
user_name[RW]
Human-readable name for this transform; may be user or system generated. Corresponds to the JSON property `userName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 333 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 338 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