public interface TemplateMetadataOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getDefaultStreamingMode()
public abstract String getDefaultStreamingMode()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
string default_streaming_mode = 8;
| Returns | |
|---|---|
| Type | Description |
String |
The defaultStreamingMode. |
getDefaultStreamingModeBytes()
public abstract ByteString getDefaultStreamingModeBytes()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
string default_streaming_mode = 8;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for defaultStreamingMode. |
getDescription()
public abstract String getDescription()Optional. A description of the template.
string description = 2;
| Returns | |
|---|---|
| Type | Description |
String |
The description. |
getDescriptionBytes()
public abstract ByteString getDescriptionBytes()Optional. A description of the template.
string description = 2;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for description. |
getName()
public abstract String getName()Required. The name of the template.
string name = 1;
| Returns | |
|---|---|
| Type | Description |
String |
The name. |
getNameBytes()
public abstract ByteString getNameBytes()Required. The name of the template.
string name = 1;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for name. |
getParameters(int index)
public abstract ParameterMetadata getParameters(int index)The parameters for the template.
repeated .google.dataflow.v1beta3.ParameterMetadata parameters = 3;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ParameterMetadata |
|
getParametersCount()
public abstract int getParametersCount()The parameters for the template.
repeated .google.dataflow.v1beta3.ParameterMetadata parameters = 3;
| Returns | |
|---|---|
| Type | Description |
int |
|
getParametersList()
public abstract List<ParameterMetadata> getParametersList()The parameters for the template.
repeated .google.dataflow.v1beta3.ParameterMetadata parameters = 3;
| Returns | |
|---|---|
| Type | Description |
List<ParameterMetadata> |
|
getParametersOrBuilder(int index)
public abstract ParameterMetadataOrBuilder getParametersOrBuilder(int index)The parameters for the template.
repeated .google.dataflow.v1beta3.ParameterMetadata parameters = 3;
| Parameter | |
|---|---|
| Name | Description |
index |
int |
| Returns | |
|---|---|
| Type | Description |
ParameterMetadataOrBuilder |
|
getParametersOrBuilderList()
public abstract List<? extends ParameterMetadataOrBuilder> getParametersOrBuilderList()The parameters for the template.
repeated .google.dataflow.v1beta3.ParameterMetadata parameters = 3;
| Returns | |
|---|---|
| Type | Description |
List<? extends com.google.dataflow.v1beta3.ParameterMetadataOrBuilder> |
|
getStreaming()
public abstract boolean getStreaming()Optional. Indicates if the template is streaming or not.
bool streaming = 5;
| Returns | |
|---|---|
| Type | Description |
boolean |
The streaming. |
getSupportsAtLeastOnce()
public abstract boolean getSupportsAtLeastOnce()Optional. Indicates if the streaming template supports at least once mode.
bool supports_at_least_once = 6;
| Returns | |
|---|---|
| Type | Description |
boolean |
The supportsAtLeastOnce. |
getSupportsExactlyOnce()
public abstract boolean getSupportsExactlyOnce()Optional. Indicates if the streaming template supports exactly once mode.
bool supports_exactly_once = 7;
| Returns | |
|---|---|
| Type | Description |
boolean |
The supportsExactlyOnce. |