Class: Google::Apis::DataflowV1b3::TransformSummary
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::TransformSummary
- 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
-
#display_data ⇒ Array<Google::Apis::DataflowV1b3::DisplayData>
Transform-specific display data.
-
#id ⇒ String
SDK generated id of this transform instance.
-
#input_collection_name ⇒ Array<String>
User names for all collection inputs to this transform.
-
#kind ⇒ String
Type of transform.
-
#name ⇒ String
User provided name for this transform instance.
-
#output_collection_name ⇒ Array<String>
User names for all collection outputs to this transform.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TransformSummary
constructor
A new instance of TransformSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TransformSummary
Returns a new instance of TransformSummary
2562 2563 2564 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2562 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_data ⇒ Array<Google::Apis::DataflowV1b3::DisplayData>
Transform-specific display data.
Corresponds to the JSON property displayData
2555 2556 2557 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2555 def display_data @display_data end |
#id ⇒ String
SDK generated id of this transform instance.
Corresponds to the JSON property id
2550 2551 2552 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2550 def id @id end |
#input_collection_name ⇒ Array<String>
User names for all collection inputs to this transform.
Corresponds to the JSON property inputCollectionName
2540 2541 2542 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2540 def input_collection_name @input_collection_name end |
#kind ⇒ String
Type of transform.
Corresponds to the JSON property kind
2535 2536 2537 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2535 def kind @kind end |
#name ⇒ String
User provided name for this transform instance.
Corresponds to the JSON property name
2545 2546 2547 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2545 def name @name end |
#output_collection_name ⇒ Array<String>
User names for all collection outputs to this transform.
Corresponds to the JSON property outputCollectionName
2560 2561 2562 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2560 def output_collection_name @output_collection_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2567 2568 2569 2570 2571 2572 2573 2574 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2567 def update!(**args) @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) @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) end |