GoogleApi.Dataflow.V1b3.Model.TemplateMetadata (google_api_dataflow v0.53.0)
View SourceMetadata describing a template.
Attributes
-
defaultStreamingMode
(type:String.t
, default:nil
) - 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 -
description
(type:String.t
, default:nil
) - Optional. A description of the template. -
name
(type:String.t
, default:nil
) - Required. The name of the template. -
parameters
(type:list(GoogleApi.Dataflow.V1b3.Model.ParameterMetadata.t)
, default:nil
) - The parameters for the template. -
streaming
(type:boolean()
, default:nil
) - Optional. Indicates if the template is streaming or not. -
supportsAtLeastOnce
(type:boolean()
, default:nil
) - Optional. Indicates if the streaming template supports at least once mode. -
supportsExactlyOnce
(type:boolean()
, default:nil
) - Optional. Indicates if the streaming template supports exactly once mode. -
yamlDefinition
(type:String.t
, default:nil
) - Optional. For future use.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Dataflow.V1b3.Model.TemplateMetadata{ defaultStreamingMode: String.t() | nil, description: String.t() | nil, name: String.t() | nil, parameters: [GoogleApi.Dataflow.V1b3.Model.ParameterMetadata.t()] | nil, streaming: boolean() | nil, supportsAtLeastOnce: boolean() | nil, supportsExactlyOnce: boolean() | nil, yamlDefinition: String.t() | nil }