class Google::Apis::DataflowV1b3::TemplateMetadata
Metadata describing a template.
Attributes
description[RW]
Optional. A description of the template. Corresponds to the JSON property `description` @return [String]
name[RW]
Required. The name of the template. Corresponds to the JSON property `name` @return [String]
parameters[RW]
The parameters for the template. Corresponds to the JSON property `parameters` @return [Array<Google::Apis::DataflowV1b3::ParameterMetadata>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5665 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 5670 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