Interface InstanceUpdateConfigEntryRequestOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceUpdateConfigEntryRequest, InstanceUpdateConfigEntryRequest.Builder
@Generated
public interface InstanceUpdateConfigEntryRequestOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetId()The unique identifier (UUID) of the instance to update.com.google.protobuf.ByteStringThe unique identifier (UUID) of the instance to update.getKey()The key of the setting within the namespace.com.google.protobuf.ByteStringThe key of the setting within the namespace.The namespace of the setting (e.g., "bot", "account", plugin ID).com.google.protobuf.ByteStringThe namespace of the setting (e.g., "bot", "account", plugin ID).com.google.protobuf.ValuegetValue()The new value for the setting.com.google.protobuf.ValueOrBuilderThe new value for the setting.booleanhasValue()The new value for the setting.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getId
String getId()The unique identifier (UUID) of the instance to update.
string id = 1;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()The unique identifier (UUID) of the instance to update.
string id = 1;- Returns:
- The bytes for id.
-
getNamespace
String getNamespace()The namespace of the setting (e.g., "bot", "account", plugin ID).
string namespace = 2;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()The namespace of the setting (e.g., "bot", "account", plugin ID).
string namespace = 2;- Returns:
- The bytes for namespace.
-
getKey
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()The key of the setting within the namespace.
string key = 3;- Returns:
- The bytes for key.
-
hasValue
boolean hasValue()The new value for the setting. Supports JSON value types (string, number, boolean, null, array, object).
.google.protobuf.Value value = 4;- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.Value getValue()The new value for the setting. Supports JSON value types (string, number, boolean, null, array, object).
.google.protobuf.Value value = 4;- Returns:
- The value.
-
getValueOrBuilder
com.google.protobuf.ValueOrBuilder getValueOrBuilder()The new value for the setting. Supports JSON value types (string, number, boolean, null, array, object).
.google.protobuf.Value value = 4;
-