Class: Google::Apis::DataflowV1b3::TemplateMetadata

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

Metadata describing a template.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TemplateMetadata

Returns a new instance of TemplateMetadata.



5777
5778
5779
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5777

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

Instance Attribute Details

#descriptionString

Optional. A description of the template. Corresponds to the JSON property description

Returns:

  • (String)


5765
5766
5767
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5765

def description
  @description
end

#nameString

Required. The name of the template. Corresponds to the JSON property name

Returns:

  • (String)


5770
5771
5772
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5770

def name
  @name
end

#parametersArray<Google::Apis::DataflowV1b3::ParameterMetadata>

The parameters for the template. Corresponds to the JSON property parameters



5775
5776
5777
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5775

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5782
5783
5784
5785
5786
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 5782

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