Package s2.v1alpha
Interface CreateStreamRequestOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 CreateStreamRequest,CreateStreamRequest.Builder
public interface CreateStreamRequestOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamConfiggetConfig()Configuration for the new stream.StreamConfigOrBuildergetConfigOrBuilder()Configuration for the new stream.java.lang.StringgetStream()Stream name, which must be unique within the basin.com.google.protobuf.ByteStringgetStreamBytes()Stream name, which must be unique within the basin.booleanhasConfig()Configuration for the new stream.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getStream
java.lang.String getStream()
Stream name, which must be unique within the basin. It can be an arbitrary string upto 512 characters. Backslash (`/`) is recommended as a delimiter for hierarchical naming.
string stream = 1;- Returns:
 - The stream.
 
 
- 
getStreamBytes
com.google.protobuf.ByteString getStreamBytes()
Stream name, which must be unique within the basin. It can be an arbitrary string upto 512 characters. Backslash (`/`) is recommended as a delimiter for hierarchical naming.
string stream = 1;- Returns:
 - The bytes for stream.
 
 
- 
hasConfig
boolean hasConfig()
Configuration for the new stream.
.s2.v1alpha.StreamConfig config = 2;- Returns:
 - Whether the config field is set.
 
 
- 
getConfig
StreamConfig getConfig()
Configuration for the new stream.
.s2.v1alpha.StreamConfig config = 2;- Returns:
 - The config.
 
 
- 
getConfigOrBuilder
StreamConfigOrBuilder getConfigOrBuilder()
Configuration for the new stream.
.s2.v1alpha.StreamConfig config = 2; 
 - 
 
 -