All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.clarifai.grpc.api.RunnerOrBuilder Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

public interface RunnerOrBuilder extends
    // @@protoc_insertion_point(interface_extends:clarifai.api.Runner)
    com.google.protobuf.MessageOrBuilder {

  /**
   * 
   * A unique ID for this app module.
   * 
* * string id = 1; * @return The id. */ java.lang.String getId(); /** *
   * A unique ID for this app module.
   * 
* * string id = 1; * @return The bytes for id. */ com.google.protobuf.ByteString getIdBytes(); /** *
   * A short description for this app module to be used in grids of modules.
   * 
* * string description = 2; * @return The description. */ java.lang.String getDescription(); /** *
   * A short description for this app module to be used in grids of modules.
   * 
* * string description = 2; * @return The bytes for description. */ com.google.protobuf.ByteString getDescriptionBytes(); /** *
   * When the app module was created.
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return Whether the createdAt field is set. */ boolean hasCreatedAt(); /** *
   * When the app module was created.
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return The createdAt. */ com.google.protobuf.Timestamp getCreatedAt(); /** *
   * When the app module was created.
   * 
* * .google.protobuf.Timestamp created_at = 3; */ com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder(); /** *
   * When the app module was last modified.
   * 
* * .google.protobuf.Timestamp modified_at = 4; * @return Whether the modifiedAt field is set. */ boolean hasModifiedAt(); /** *
   * When the app module was last modified.
   * 
* * .google.protobuf.Timestamp modified_at = 4; * @return The modifiedAt. */ com.google.protobuf.Timestamp getModifiedAt(); /** *
   * When the app module was last modified.
   * 
* * .google.protobuf.Timestamp modified_at = 4; */ com.google.protobuf.TimestampOrBuilder getModifiedAtOrBuilder(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * This is an optional arg.
   * 
* * .google.protobuf.Struct metadata = 5; * @return Whether the metadata field is set. */ boolean hasMetadata(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * This is an optional arg.
   * 
* * .google.protobuf.Struct metadata = 5; * @return The metadata. */ com.google.protobuf.Struct getMetadata(); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * This is an optional arg.
   * 
* * .google.protobuf.Struct metadata = 5; */ com.google.protobuf.StructOrBuilder getMetadataOrBuilder(); /** *
   * The creator of the app module.
   * 
* * string user_id = 6; * @return The userId. */ java.lang.String getUserId(); /** *
   * The creator of the app module.
   * 
* * string user_id = 6; * @return The bytes for userId. */ com.google.protobuf.ByteString getUserIdBytes(); /** *
   * Labels to match.
   * 
* * repeated string labels = 7; * @return A list containing the labels. */ java.util.List getLabelsList(); /** *
   * Labels to match.
   * 
* * repeated string labels = 7; * @return The count of labels. */ int getLabelsCount(); /** *
   * Labels to match.
   * 
* * repeated string labels = 7; * @param index The index of the element to return. * @return The labels at the given index. */ java.lang.String getLabels(int index); /** *
   * Labels to match.
   * 
* * repeated string labels = 7; * @param index The index of the value to return. * @return The bytes of the labels at the given index. */ com.google.protobuf.ByteString getLabelsBytes(int index); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy