Class: Google::Apis::DataflowV1b3::TransformSummary

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 type, names/ids, and input/outputs for a transform.

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) ⇒ TransformSummary

Returns a new instance of TransformSummary



1368
1369
1370
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1368

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

Instance Attribute Details

#display_dataArray<Google::Apis::DataflowV1b3::DisplayData>

Transform-specific display data. Corresponds to the JSON property displayData



1346
1347
1348
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1346

def display_data
  @display_data
end

#idString

SDK generated id of this transform instance. Corresponds to the JSON property id

Returns:

  • (String)


1341
1342
1343
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1341

def id
  @id
end

#input_collection_nameArray<String>

User names for all collection inputs to this transform. Corresponds to the JSON property inputCollectionName

Returns:

  • (Array<String>)


1361
1362
1363
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1361

def input_collection_name
  @input_collection_name
end

#kindString

Type of transform. Corresponds to the JSON property kind

Returns:

  • (String)


1356
1357
1358
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1356

def kind
  @kind
end

#nameString

User provided name for this transform instance. Corresponds to the JSON property name

Returns:

  • (String)


1366
1367
1368
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1366

def name
  @name
end

#output_collection_nameArray<String>

User names for all collection outputs to this transform. Corresponds to the JSON property outputCollectionName

Returns:

  • (Array<String>)


1351
1352
1353
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1351

def output_collection_name
  @output_collection_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1373
1374
1375
1376
1377
1378
1379
1380
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1373

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @display_data = args[:display_data] if args.key?(:display_data)
  @output_collection_name = args[:output_collection_name] if args.key?(:output_collection_name)
  @kind = args[:kind] if args.key?(:kind)
  @input_collection_name = args[:input_collection_name] if args.key?(:input_collection_name)
  @name = args[:name] if args.key?(:name)
end