Interface Rpc.IngestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Rpc.Ingest, Rpc.Ingest.Builder
    Enclosing class:
    Rpc

    public static interface Rpc.IngestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getAttribute()
      * Name of the attribute.
      com.google.protobuf.ByteString getAttributeBytes()
      * Name of the attribute.
      boolean getDelete()
      * Whether to delete the attribute.
      java.lang.String getEntity()
      * Name of the entity
      com.google.protobuf.ByteString getEntityBytes()
      * Name of the entity
      java.lang.String getKey()
      * Key of the entity.
      com.google.protobuf.ByteString getKeyBytes()
      * Key of the entity.
      long getStamp()
      * Timestamp of the ingest.
      java.lang.String getTransactionId()
      * Optional transaction ID associated with the ingest.
      com.google.protobuf.ByteString getTransactionIdBytes()
      * Optional transaction ID associated with the ingest.
      java.lang.String getUuid()
      * UUID of the ingest.
      com.google.protobuf.ByteString getUuidBytes()
      * UUID of the ingest.
      com.google.protobuf.ByteString getValue()
      * Value to update.
      • 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 Detail

      • getUuid

        java.lang.String getUuid()
         *
         UUID of the ingest. This UUID is returned in status to match
         the request with the response
         
        string uuid = 1;
        Returns:
        The uuid.
      • getUuidBytes

        com.google.protobuf.ByteString getUuidBytes()
         *
         UUID of the ingest. This UUID is returned in status to match
         the request with the response
         
        string uuid = 1;
        Returns:
        The bytes for uuid.
      • getEntity

        java.lang.String getEntity()
         * Name of the entity 
         
        string entity = 2;
        Returns:
        The entity.
      • getEntityBytes

        com.google.protobuf.ByteString getEntityBytes()
         * Name of the entity 
         
        string entity = 2;
        Returns:
        The bytes for entity.
      • getAttribute

        java.lang.String getAttribute()
         * Name of the attribute.
         Might be a wildcard specified (e.g. "prefix.*" if `delete` is true, meaning to delete the whole prefix.
         
        string attribute = 3;
        Returns:
        The attribute.
      • getAttributeBytes

        com.google.protobuf.ByteString getAttributeBytes()
         * Name of the attribute.
         Might be a wildcard specified (e.g. "prefix.*" if `delete` is true, meaning to delete the whole prefix.
         
        string attribute = 3;
        Returns:
        The bytes for attribute.
      • getKey

        java.lang.String getKey()
         * Key of the entity. 
         
        string key = 4;
        Returns:
        The key.
      • getKeyBytes

        com.google.protobuf.ByteString getKeyBytes()
         * Key of the entity. 
         
        string key = 4;
        Returns:
        The bytes for key.
      • getValue

        com.google.protobuf.ByteString getValue()
         * Value to update. 
         
        bytes value = 5;
        Returns:
        The value.
      • getStamp

        long getStamp()
         * Timestamp of the ingest. If not provided, it will be replaced with actual ingest timestamp. 
         
        uint64 stamp = 7;
        Returns:
        The stamp.
      • getDelete

        boolean getDelete()
         *
         Whether to delete the attribute. You must explicitly set this
         if you want to delete an attribute.
         
        bool delete = 6;
        Returns:
        The delete.
      • getTransactionId

        java.lang.String getTransactionId()
         *
         Optional transaction ID associated with the ingest.
         
        string transactionId = 8;
        Returns:
        The transactionId.
      • getTransactionIdBytes

        com.google.protobuf.ByteString getTransactionIdBytes()
         *
         Optional transaction ID associated with the ingest.
         
        string transactionId = 8;
        Returns:
        The bytes for transactionId.