Show / Hide Table of Contents

Class TemplateMetadata

Metadata describing a template.

Inheritance
object
TemplateMetadata
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class TemplateMetadata : IDirectResponseSchema

Properties

DefaultStreamingMode

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

Declaration
[JsonProperty("defaultStreamingMode")]
public virtual string DefaultStreamingMode { get; set; }
Property Value
Type Description
string

Description

Optional. A description of the template.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Name

Required. The name of the template.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Parameters

The parameters for the template.

Declaration
[JsonProperty("parameters")]
public virtual IList<ParameterMetadata> Parameters { get; set; }
Property Value
Type Description
IList<ParameterMetadata>

Streaming

Optional. Indicates if the template is streaming or not.

Declaration
[JsonProperty("streaming")]
public virtual bool? Streaming { get; set; }
Property Value
Type Description
bool?

SupportsAtLeastOnce

Optional. Indicates if the streaming template supports at least once mode.

Declaration
[JsonProperty("supportsAtLeastOnce")]
public virtual bool? SupportsAtLeastOnce { get; set; }
Property Value
Type Description
bool?

SupportsExactlyOnce

Optional. Indicates if the streaming template supports exactly once mode.

Declaration
[JsonProperty("supportsExactlyOnce")]
public virtual bool? SupportsExactlyOnce { get; set; }
Property Value
Type Description
bool?

YamlDefinition

Optional. For future use.

Declaration
[JsonProperty("yamlDefinition")]
public virtual string YamlDefinition { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX