Package com.google.dataflow.v1beta3
Interface StreamLocationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamLocation
,StreamLocation.Builder
public interface StreamLocationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CustomSourceLocation
getCustomSourceLocation()
The stream is a custom source.CustomSourceLocationOrBuilder
getCustomSourceLocationOrBuilder()
The stream is a custom source.StreamLocation.LocationCase
getLocationCase()
PubsubLocation
getPubsubLocation()
The stream is a pubsub stream.PubsubLocationOrBuilder
getPubsubLocationOrBuilder()
The stream is a pubsub stream.StreamingSideInputLocation
getSideInputLocation()
The stream is a streaming side input.StreamingSideInputLocationOrBuilder
getSideInputLocationOrBuilder()
The stream is a streaming side input.StreamingStageLocation
getStreamingStageLocation()
The stream is part of another computation within the current streaming Dataflow job.StreamingStageLocationOrBuilder
getStreamingStageLocationOrBuilder()
The stream is part of another computation within the current streaming Dataflow job.boolean
hasCustomSourceLocation()
The stream is a custom source.boolean
hasPubsubLocation()
The stream is a pubsub stream.boolean
hasSideInputLocation()
The stream is a streaming side input.boolean
hasStreamingStageLocation()
The stream is part of another computation within the current streaming Dataflow job.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStreamingStageLocation
boolean hasStreamingStageLocation()
The stream is part of another computation within the current streaming Dataflow job.
.google.dataflow.v1beta3.StreamingStageLocation streaming_stage_location = 1;
- Returns:
- Whether the streamingStageLocation field is set.
-
getStreamingStageLocation
StreamingStageLocation getStreamingStageLocation()
The stream is part of another computation within the current streaming Dataflow job.
.google.dataflow.v1beta3.StreamingStageLocation streaming_stage_location = 1;
- Returns:
- The streamingStageLocation.
-
getStreamingStageLocationOrBuilder
StreamingStageLocationOrBuilder getStreamingStageLocationOrBuilder()
The stream is part of another computation within the current streaming Dataflow job.
.google.dataflow.v1beta3.StreamingStageLocation streaming_stage_location = 1;
-
hasPubsubLocation
boolean hasPubsubLocation()
The stream is a pubsub stream.
.google.dataflow.v1beta3.PubsubLocation pubsub_location = 2;
- Returns:
- Whether the pubsubLocation field is set.
-
getPubsubLocation
PubsubLocation getPubsubLocation()
The stream is a pubsub stream.
.google.dataflow.v1beta3.PubsubLocation pubsub_location = 2;
- Returns:
- The pubsubLocation.
-
getPubsubLocationOrBuilder
PubsubLocationOrBuilder getPubsubLocationOrBuilder()
The stream is a pubsub stream.
.google.dataflow.v1beta3.PubsubLocation pubsub_location = 2;
-
hasSideInputLocation
boolean hasSideInputLocation()
The stream is a streaming side input.
.google.dataflow.v1beta3.StreamingSideInputLocation side_input_location = 3;
- Returns:
- Whether the sideInputLocation field is set.
-
getSideInputLocation
StreamingSideInputLocation getSideInputLocation()
The stream is a streaming side input.
.google.dataflow.v1beta3.StreamingSideInputLocation side_input_location = 3;
- Returns:
- The sideInputLocation.
-
getSideInputLocationOrBuilder
StreamingSideInputLocationOrBuilder getSideInputLocationOrBuilder()
The stream is a streaming side input.
.google.dataflow.v1beta3.StreamingSideInputLocation side_input_location = 3;
-
hasCustomSourceLocation
boolean hasCustomSourceLocation()
The stream is a custom source.
.google.dataflow.v1beta3.CustomSourceLocation custom_source_location = 4;
- Returns:
- Whether the customSourceLocation field is set.
-
getCustomSourceLocation
CustomSourceLocation getCustomSourceLocation()
The stream is a custom source.
.google.dataflow.v1beta3.CustomSourceLocation custom_source_location = 4;
- Returns:
- The customSourceLocation.
-
getCustomSourceLocationOrBuilder
CustomSourceLocationOrBuilder getCustomSourceLocationOrBuilder()
The stream is a custom source.
.google.dataflow.v1beta3.CustomSourceLocation custom_source_location = 4;
-
getLocationCase
StreamLocation.LocationCase getLocationCase()
-
-