Package s2.v1alpha
Interface ReconfigureStreamRequestOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 ReconfigureStreamRequest,ReconfigureStreamRequest.Builder
public interface ReconfigureStreamRequestOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamConfiggetConfig()Stream configuration with updated values.StreamConfigOrBuildergetConfigOrBuilder()Stream configuration with updated values.com.google.protobuf.FieldMaskgetMask()Specifies the pieces of configuration being updated.com.google.protobuf.FieldMaskOrBuildergetMaskOrBuilder()Specifies the pieces of configuration being updated.java.lang.StringgetStream()Stream name.com.google.protobuf.ByteStringgetStreamBytes()Stream name.booleanhasConfig()Stream configuration with updated values.booleanhasMask()Specifies the pieces of configuration being updated.- 
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.
string stream = 1;- Returns:
 - The stream.
 
 
- 
getStreamBytes
com.google.protobuf.ByteString getStreamBytes()
Stream name.
string stream = 1;- Returns:
 - The bytes for stream.
 
 
- 
hasConfig
boolean hasConfig()
Stream configuration with updated values.
.s2.v1alpha.StreamConfig config = 2;- Returns:
 - Whether the config field is set.
 
 
- 
getConfig
StreamConfig getConfig()
Stream configuration with updated values.
.s2.v1alpha.StreamConfig config = 2;- Returns:
 - The config.
 
 
- 
getConfigOrBuilder
StreamConfigOrBuilder getConfigOrBuilder()
Stream configuration with updated values.
.s2.v1alpha.StreamConfig config = 2; 
- 
hasMask
boolean hasMask()
Specifies the pieces of configuration being updated. See https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask
.google.protobuf.FieldMask mask = 3;- Returns:
 - Whether the mask field is set.
 
 
- 
getMask
com.google.protobuf.FieldMask getMask()
Specifies the pieces of configuration being updated. See https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask
.google.protobuf.FieldMask mask = 3;- Returns:
 - The mask.
 
 
- 
getMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getMaskOrBuilder()
Specifies the pieces of configuration being updated. See https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask
.google.protobuf.FieldMask mask = 3; 
 - 
 
 -