class Google::Apis::DataflowV1b3::ComponentTransform

Description of a transform executed as part of an execution stage.

Attributes

name[RW]

Dataflow service generated name for this source. Corresponds to the JSON property `name` @return [String]

original_transform[RW]

User name for the original user transform with which this transform is most closely associated. Corresponds to the JSON property `originalTransform` @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 365
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 370
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @original_transform = args[:original_transform] if args.key?(:original_transform)
  @user_name = args[:user_name] if args.key?(:user_name)
end