Class: Google::Apis::DataflowV1b3::ExecutionStageSummary

Inherits:
Object
  • Object
show all
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

Description of the composing transforms, names/ids, and input/outputs of a stage of execution. Some composing transforms and sources may have been generated by the Dataflow service during execution planning.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ExecutionStageSummary

Returns a new instance of ExecutionStageSummary



4072
4073
4074
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4072

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#component_sourceArray<Google::Apis::DataflowV1b3::ComponentSource>

Collections produced and consumed by component transforms of this stage. Corresponds to the JSON property componentSource



4055
4056
4057
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4055

def component_source
  @component_source
end

#component_transformArray<Google::Apis::DataflowV1b3::ComponentTransform>

Transforms that comprise this execution stage. Corresponds to the JSON property componentTransform



4050
4051
4052
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4050

def component_transform
  @component_transform
end

#idString

Dataflow service generated id for this stage. Corresponds to the JSON property id

Returns:

  • (String)


4045
4046
4047
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4045

def id
  @id
end

#input_sourceArray<Google::Apis::DataflowV1b3::StageSource>

Input sources for this stage. Corresponds to the JSON property inputSource



4040
4041
4042
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4040

def input_source
  @input_source
end

#kindString

Type of tranform this stage is executing. Corresponds to the JSON property kind

Returns:

  • (String)


4060
4061
4062
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4060

def kind
  @kind
end

#nameString

Dataflow service generated name for this stage. Corresponds to the JSON property name

Returns:

  • (String)


4070
4071
4072
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4070

def name
  @name
end

#output_sourceArray<Google::Apis::DataflowV1b3::StageSource>

Output sources for this stage. Corresponds to the JSON property outputSource



4065
4066
4067
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4065

def output_source
  @output_source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4077
4078
4079
4080
4081
4082
4083
4084
4085
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 4077

def update!(**args)
  @input_source = args[:input_source] if args.key?(:input_source)
  @id = args[:id] if args.key?(:id)
  @component_transform = args[:component_transform] if args.key?(:component_transform)
  @component_source = args[:component_source] if args.key?(:component_source)
  @kind = args[:kind] if args.key?(:kind)
  @output_source = args[:output_source] if args.key?(:output_source)
  @name = args[:name] if args.key?(:name)
end