Class: Google::Apis::DataflowV1b3::TemplateMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::TemplateMetadata
- 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
Metadata describing a template.
Instance Attribute Summary collapse
-
#description ⇒ String
Optional.
-
#name ⇒ String
Required.
-
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TemplateMetadata
constructor
A new instance of TemplateMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TemplateMetadata
Returns a new instance of TemplateMetadata.
6035 6036 6037 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6035 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Optional. A description of the template.
Corresponds to the JSON property description
6023 6024 6025 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6023 def description @description end |
#name ⇒ String
Required. The name of the template.
Corresponds to the JSON property name
6028 6029 6030 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6028 def name @name end |
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
Corresponds to the JSON property parameters
6033 6034 6035 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6033 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6040 6041 6042 6043 6044 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6040 def update!(**args) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @parameters = args[:parameters] if args.key?(:parameters) end |