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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TransformSummary

Returns a new instance of TransformSummary.



6125
6126
6127
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6125

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



6098
6099
6100
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6098

def display_data
  @display_data
end

#idString

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

Returns:

  • (String)


6103
6104
6105
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6103

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


6108
6109
6110
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6108

def input_collection_name
  @input_collection_name
end

#kindString

Type of transform. Corresponds to the JSON property kind

Returns:

  • (String)


6113
6114
6115
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6113

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


6118
6119
6120
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6118

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


6123
6124
6125
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6123

def output_collection_name
  @output_collection_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6130
6131
6132
6133
6134
6135
6136
6137
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6130

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