Package s2.v1alpha
Interface ReconfigureBasinRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReconfigureBasinRequest
,ReconfigureBasinRequest.Builder
public interface ReconfigureBasinRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getBasin()
Basin name.com.google.protobuf.ByteString
getBasinBytes()
Basin name.BasinConfig
getConfig()
Basin configuration.BasinConfigOrBuilder
getConfigOrBuilder()
Basin configuration.com.google.protobuf.FieldMask
getMask()
Specifies the pieces of configuration being updated.com.google.protobuf.FieldMaskOrBuilder
getMaskOrBuilder()
Specifies the pieces of configuration being updated.boolean
hasConfig()
Basin configuration.boolean
hasMask()
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
-
getBasin
java.lang.String getBasin()
Basin name.
string basin = 1;
- Returns:
- The basin.
-
getBasinBytes
com.google.protobuf.ByteString getBasinBytes()
Basin name.
string basin = 1;
- Returns:
- The bytes for basin.
-
hasConfig
boolean hasConfig()
Basin configuration.
.s2.v1alpha.BasinConfig config = 2;
- Returns:
- Whether the config field is set.
-
getConfig
BasinConfig getConfig()
Basin configuration.
.s2.v1alpha.BasinConfig config = 2;
- Returns:
- The config.
-
getConfigOrBuilder
BasinConfigOrBuilder getConfigOrBuilder()
Basin configuration.
.s2.v1alpha.BasinConfig 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;
-
-