Interface ServerUpdateConfigEntryRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
ServerUpdateConfigEntryRequest, ServerUpdateConfigEntryRequest.Builder

@Generated public interface ServerUpdateConfigEntryRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    The key identifying the specific setting within the namespace.
    com.google.protobuf.ByteString
    The key identifying the specific setting within the namespace.
    The namespace of the setting to update.
    com.google.protobuf.ByteString
    The namespace of the setting to update.
    com.google.protobuf.Value
    The new value for the setting.
    com.google.protobuf.ValueOrBuilder
    The new value for the setting.
    boolean
    The new value for the setting.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getNamespace

      String getNamespace()
      The namespace of the setting to update.
      Namespaces group related settings together (e.g., "dev" for developer settings).
      Must match an existing namespace or a new namespace will be created.
      
      string namespace = 1;
      Returns:
      The namespace.
    • getNamespaceBytes

      com.google.protobuf.ByteString getNamespaceBytes()
      The namespace of the setting to update.
      Namespaces group related settings together (e.g., "dev" for developer settings).
      Must match an existing namespace or a new namespace will be created.
      
      string namespace = 1;
      Returns:
      The bytes for namespace.
    • getKey

      String getKey()
      The key identifying the specific setting within the namespace.
      Combined with namespace, this uniquely identifies the setting.
      Example: namespace="dev", key="soulfire-debug" for the SoulFire debug setting.
      
      string key = 2;
      Returns:
      The key.
    • getKeyBytes

      com.google.protobuf.ByteString getKeyBytes()
      The key identifying the specific setting within the namespace.
      Combined with namespace, this uniquely identifies the setting.
      Example: namespace="dev", key="soulfire-debug" for the SoulFire debug setting.
      
      string key = 2;
      Returns:
      The bytes for key.
    • hasValue

      boolean hasValue()
      The new value for the setting.
      Uses google.protobuf.Value to support various JSON types:
      - string_value for text settings
      - number_value for int/double settings
      - bool_value for boolean settings
      - list_value for string list settings
      - struct_value for complex settings like min/max ranges
      
      .google.protobuf.Value value = 3;
      Returns:
      Whether the value field is set.
    • getValue

      com.google.protobuf.Value getValue()
      The new value for the setting.
      Uses google.protobuf.Value to support various JSON types:
      - string_value for text settings
      - number_value for int/double settings
      - bool_value for boolean settings
      - list_value for string list settings
      - struct_value for complex settings like min/max ranges
      
      .google.protobuf.Value value = 3;
      Returns:
      The value.
    • getValueOrBuilder

      com.google.protobuf.ValueOrBuilder getValueOrBuilder()
      The new value for the setting.
      Uses google.protobuf.Value to support various JSON types:
      - string_value for text settings
      - number_value for int/double settings
      - bool_value for boolean settings
      - list_value for string list settings
      - struct_value for complex settings like min/max ranges
      
      .google.protobuf.Value value = 3;