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

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

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

package com.clarifai.grpc.api;

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

  /**
   * 
   * Id of this version.
   * 
* * string id = 1; * @return The id. */ java.lang.String getId(); /** *
   * Id of this version.
   * 
* * string id = 1; * @return The bytes for id. */ com.google.protobuf.ByteString getIdBytes(); /** *
   * Workflow id for this version.
   * 
* * string workflow_id = 2; * @return The workflowId. */ java.lang.String getWorkflowId(); /** *
   * Workflow id for this version.
   * 
* * string workflow_id = 2; * @return The bytes for workflowId. */ com.google.protobuf.ByteString getWorkflowIdBytes(); /** *
   * When the version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return Whether the createdAt field is set. */ boolean hasCreatedAt(); /** *
   * When the version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 3; * @return The createdAt. */ com.google.protobuf.Timestamp getCreatedAt(); /** *
   * When the version was created.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp created_at = 3; */ com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder(); /** *
   * Most recent time when the version was updated.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 4; * @return Whether the modifiedAt field is set. */ boolean hasModifiedAt(); /** *
   * Most recent time when the version was updated.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 4; * @return The modifiedAt. */ com.google.protobuf.Timestamp getModifiedAt(); /** *
   * Most recent time when the version was updated.
   * The format is https://www.ietf.org/rfc/rfc3339.txt.
   * Example: "2006-01-02T15:04:05.999999Z".
   * 
* * .google.protobuf.Timestamp modified_at = 4; */ com.google.protobuf.TimestampOrBuilder getModifiedAtOrBuilder(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 5; * @return Whether the visibility field is set. */ boolean hasVisibility(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 5; * @return The visibility. */ com.clarifai.grpc.api.Visibility getVisibility(); /** *
   * The visibility field represents whether this message is privately/publicly visible.
   * To be visible to the public the App that contains it AND the User that contains the App must
   * also be publicly visible.
   * 
* * .clarifai.api.Visibility visibility = 5; */ com.clarifai.grpc.api.VisibilityOrBuilder getVisibilityOrBuilder(); /** *
   * The list of nodes that make up the workflow version. Each node can specify an input node
   * that it connects to in order to define the graph.
   * 
* * repeated .clarifai.api.WorkflowNode nodes = 6; */ java.util.List getNodesList(); /** *
   * The list of nodes that make up the workflow version. Each node can specify an input node
   * that it connects to in order to define the graph.
   * 
* * repeated .clarifai.api.WorkflowNode nodes = 6; */ com.clarifai.grpc.api.WorkflowNode getNodes(int index); /** *
   * The list of nodes that make up the workflow version. Each node can specify an input node
   * that it connects to in order to define the graph.
   * 
* * repeated .clarifai.api.WorkflowNode nodes = 6; */ int getNodesCount(); /** *
   * The list of nodes that make up the workflow version. Each node can specify an input node
   * that it connects to in order to define the graph.
   * 
* * repeated .clarifai.api.WorkflowNode nodes = 6; */ java.util.List getNodesOrBuilderList(); /** *
   * The list of nodes that make up the workflow version. Each node can specify an input node
   * that it connects to in order to define the graph.
   * 
* * repeated .clarifai.api.WorkflowNode nodes = 6; */ com.clarifai.grpc.api.WorkflowNodeOrBuilder getNodesOrBuilder( int index); /** *
   * To handle arbitrary json metadata you can use a struct field:
   * https://github.com/google/protobuf/blob/master/src/google/protobuf/struct.proto
   * 
* * .google.protobuf.Struct metadata = 7; * @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
   * 
* * .google.protobuf.Struct metadata = 7; * @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
   * 
* * .google.protobuf.Struct metadata = 7; */ com.google.protobuf.StructOrBuilder getMetadataOrBuilder(); /** *
   * The app the workflow version belongs to.
   * 
* * string app_id = 8; * @return The appId. */ java.lang.String getAppId(); /** *
   * The app the workflow version belongs to.
   * 
* * string app_id = 8; * @return The bytes for appId. */ com.google.protobuf.ByteString getAppIdBytes(); /** *
   * The user the workflow version belongs to.
   * 
* * string user_id = 9; * @return The userId. */ java.lang.String getUserId(); /** *
   * The user the workflow version belongs to.
   * 
* * string user_id = 9; * @return The bytes for userId. */ com.google.protobuf.ByteString getUserIdBytes(); /** *
   * Short description about this workflow version
   * 
* * string description = 10; * @return The description. */ java.lang.String getDescription(); /** *
   * Short description about this workflow version
   * 
* * string description = 10; * @return The bytes for description. */ com.google.protobuf.ByteString getDescriptionBytes(); /** *
   * License associated to this workflow version
   * 
* * string license = 11; * @return The license. */ java.lang.String getLicense(); /** *
   * License associated to this workflow version
   * 
* * string license = 11; * @return The bytes for license. */ com.google.protobuf.ByteString getLicenseBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy