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
-
#default_streaming_mode ⇒ String
Optional.
-
#description ⇒ String
Optional.
-
#name ⇒ String
Required.
-
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
-
#streaming ⇒ Boolean
(also: #streaming?)
Optional.
-
#supports_at_least_once ⇒ Boolean
(also: #supports_at_least_once?)
Optional.
-
#supports_exactly_once ⇒ Boolean
(also: #supports_exactly_once?)
Optional.
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.
6731 6732 6733 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6731 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default_streaming_mode ⇒ String
Optional. Indicates the default streaming mode for a streaming template. Only
valid if both supports_at_least_once and supports_exactly_once are true.
Possible values: UNSPECIFIED, EXACTLY_ONCE and AT_LEAST_ONCE
Corresponds to the JSON property defaultStreamingMode
6696 6697 6698 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6696 def default_streaming_mode @default_streaming_mode end |
#description ⇒ String
Optional. A description of the template.
Corresponds to the JSON property description
6701 6702 6703 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6701 def description @description end |
#name ⇒ String
Required. The name of the template.
Corresponds to the JSON property name
6706 6707 6708 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6706 def name @name end |
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
Corresponds to the JSON property parameters
6711 6712 6713 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6711 def parameters @parameters end |
#streaming ⇒ Boolean Also known as: streaming?
Optional. Indicates if the template is streaming or not.
Corresponds to the JSON property streaming
6716 6717 6718 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6716 def streaming @streaming end |
#supports_at_least_once ⇒ Boolean Also known as: supports_at_least_once?
Optional. Indicates if the streaming template supports at least once mode.
Corresponds to the JSON property supportsAtLeastOnce
6722 6723 6724 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6722 def supports_at_least_once @supports_at_least_once end |
#supports_exactly_once ⇒ Boolean Also known as: supports_exactly_once?
Optional. Indicates if the streaming template supports exactly once mode.
Corresponds to the JSON property supportsExactlyOnce
6728 6729 6730 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6728 def supports_exactly_once @supports_exactly_once end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6736 6737 6738 6739 6740 6741 6742 6743 6744 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 6736 def update!(**args) @default_streaming_mode = args[:default_streaming_mode] if args.key?(:default_streaming_mode) @description = args[:description] if args.key?(:description) @name = args[:name] if args.key?(:name) @parameters = args[:parameters] if args.key?(:parameters) @streaming = args[:streaming] if args.key?(:streaming) @supports_at_least_once = args[:supports_at_least_once] if args.key?(:supports_at_least_once) @supports_exactly_once = args[:supports_exactly_once] if args.key?(:supports_exactly_once) end |