Class InstanceInfoRequest.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder
com.google.protobuf.AbstractMessage.Builder<InstanceInfoRequest.Builder>
com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder>
com.soulfiremc.grpc.generated.InstanceInfoRequest.Builder
All Implemented Interfaces:
com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, InstanceInfoRequestOrBuilder, Cloneable
Enclosing class:
InstanceInfoRequest

public static final class InstanceInfoRequest.Builder extends com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder> implements InstanceInfoRequestOrBuilder
Request to get detailed information about a specific instance.
Protobuf type soulfire.v1.InstanceInfoRequest
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder>
    • clear

      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clear in class com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder>
    • getDescriptorForType

      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder>
    • getDefaultInstanceForType

      public InstanceInfoRequest getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
    • build

      public InstanceInfoRequest build()
      Specified by:
      build in interface com.google.protobuf.Message.Builder
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
    • buildPartial

      public InstanceInfoRequest buildPartial()
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
    • mergeFrom

      public InstanceInfoRequest.Builder mergeFrom(com.google.protobuf.Message other)
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<InstanceInfoRequest.Builder>
    • mergeFrom

    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessage.Builder<InstanceInfoRequest.Builder>
    • mergeFrom

      public InstanceInfoRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<InstanceInfoRequest.Builder>
      Throws:
      IOException
    • getId

      public String getId()
      The unique identifier (UUID) of the instance.
      
      string id = 1;
      Specified by:
      getId in interface InstanceInfoRequestOrBuilder
      Returns:
      The id.
    • getIdBytes

      public com.google.protobuf.ByteString getIdBytes()
      The unique identifier (UUID) of the instance.
      
      string id = 1;
      Specified by:
      getIdBytes in interface InstanceInfoRequestOrBuilder
      Returns:
      The bytes for id.
    • setId

      public InstanceInfoRequest.Builder setId(String value)
      The unique identifier (UUID) of the instance.
      
      string id = 1;
      Parameters:
      value - The id to set.
      Returns:
      This builder for chaining.
    • clearId

      public InstanceInfoRequest.Builder clearId()
      The unique identifier (UUID) of the instance.
      
      string id = 1;
      Returns:
      This builder for chaining.
    • setIdBytes

      public InstanceInfoRequest.Builder setIdBytes(com.google.protobuf.ByteString value)
      The unique identifier (UUID) of the instance.
      
      string id = 1;
      Parameters:
      value - The bytes for id to set.
      Returns:
      This builder for chaining.
    • hasIfModifiedSince

      public boolean hasIfModifiedSince()
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
      Specified by:
      hasIfModifiedSince in interface InstanceInfoRequestOrBuilder
      Returns:
      Whether the ifModifiedSince field is set.
    • getIfModifiedSince

      public com.google.protobuf.Timestamp getIfModifiedSince()
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
      Specified by:
      getIfModifiedSince in interface InstanceInfoRequestOrBuilder
      Returns:
      The ifModifiedSince.
    • setIfModifiedSince

      public InstanceInfoRequest.Builder setIfModifiedSince(com.google.protobuf.Timestamp value)
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
    • setIfModifiedSince

      public InstanceInfoRequest.Builder setIfModifiedSince(com.google.protobuf.Timestamp.Builder builderForValue)
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
    • mergeIfModifiedSince

      public InstanceInfoRequest.Builder mergeIfModifiedSince(com.google.protobuf.Timestamp value)
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
    • clearIfModifiedSince

      public InstanceInfoRequest.Builder clearIfModifiedSince()
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
    • getIfModifiedSinceBuilder

      public com.google.protobuf.Timestamp.Builder getIfModifiedSinceBuilder()
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
    • getIfModifiedSinceOrBuilder

      public com.google.protobuf.TimestampOrBuilder getIfModifiedSinceOrBuilder()
      Optional timestamp for conditional requests. If provided and the instance
      configuration has not been modified since this timestamp, the server returns
      InstanceNotModified instead of the full InstanceInfo. This helps reduce
      bandwidth for polling clients.
      
      optional .google.protobuf.Timestamp if_modified_since = 2;
      Specified by:
      getIfModifiedSinceOrBuilder in interface InstanceInfoRequestOrBuilder