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

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

Constructor Details

#initialize(**args) ⇒ ExecutionStageSummary

Returns a new instance of ExecutionStageSummary.



1374
1375
1376
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1374

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



1337
1338
1339
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1337

def component_source
  @component_source
end

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

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



1342
1343
1344
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1342

def component_transform
  @component_transform
end

#idString

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

Returns:

  • (String)


1347
1348
1349
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1347

def id
  @id
end

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

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



1352
1353
1354
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1352

def input_source
  @input_source
end

#kindString

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

Returns:

  • (String)


1357
1358
1359
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1357

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


1362
1363
1364
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1362

def name
  @name
end

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

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



1367
1368
1369
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1367

def output_source
  @output_source
end

#prerequisite_stageArray<String>

Other stages that must complete before this stage can run. Corresponds to the JSON property prerequisiteStage

Returns:

  • (Array<String>)


1372
1373
1374
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1372

def prerequisite_stage
  @prerequisite_stage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 1379

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