class Google::Apis::DataflowV1b3::StageSource
Description of an input or output of 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]
size_bytes[RW]
Size of the source, if measurable. Corresponds to the JSON property `sizeBytes` @return [Fixnum]
user_name[RW]
Human-readable name for this source; 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 4963 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 4968 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) @size_bytes = args[:size_bytes] if args.key?(:size_bytes) @user_name = args[:user_name] if args.key?(:user_name) end