// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/resources.proto
package com.clarifai.grpc.api;
public interface BulkOperationOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.BulkOperation)
com.google.protobuf.MessageOrBuilder {
/**
*
* id of the Bulk Operation task
*
*
* string id = 1;
* @return The id.
*/
java.lang.String getId();
/**
*
* id of the Bulk Operation task
*
*
* string id = 1;
* @return The bytes for id.
*/
com.google.protobuf.ByteString
getIdBytes();
/**
* .clarifai.api.InputIDs input_ids = 2;
* @return Whether the inputIds field is set.
*/
boolean hasInputIds();
/**
* .clarifai.api.InputIDs input_ids = 2;
* @return The inputIds.
*/
com.clarifai.grpc.api.InputIDs getInputIds();
/**
* .clarifai.api.InputIDs input_ids = 2;
*/
com.clarifai.grpc.api.InputIDsOrBuilder getInputIdsOrBuilder();
/**
* .clarifai.api.Search search = 10;
* @return Whether the search field is set.
*/
boolean hasSearch();
/**
* .clarifai.api.Search search = 10;
* @return The search.
*/
com.clarifai.grpc.api.Search getSearch();
/**
* .clarifai.api.Search search = 10;
*/
com.clarifai.grpc.api.SearchOrBuilder getSearchOrBuilder();
/**
* .clarifai.api.Dataset dataset = 11;
* @return Whether the dataset field is set.
*/
boolean hasDataset();
/**
* .clarifai.api.Dataset dataset = 11;
* @return The dataset.
*/
com.clarifai.grpc.api.Dataset getDataset();
/**
* .clarifai.api.Dataset dataset = 11;
*/
com.clarifai.grpc.api.DatasetOrBuilder getDatasetOrBuilder();
/**
*
* Operation to perform
*
*
* .clarifai.api.Operation operation = 3;
* @return Whether the operation field is set.
*/
boolean hasOperation();
/**
*
* Operation to perform
*
*
* .clarifai.api.Operation operation = 3;
* @return The operation.
*/
com.clarifai.grpc.api.Operation getOperation();
/**
*
* Operation to perform
*
*
* .clarifai.api.Operation operation = 3;
*/
com.clarifai.grpc.api.OperationOrBuilder getOperationOrBuilder();
/**
*
* Application ID that this Operation was created from
*
*
* string app_id = 4;
* @return The appId.
*/
java.lang.String getAppId();
/**
*
* Application ID that this Operation was created from
*
*
* string app_id = 4;
* @return The bytes for appId.
*/
com.google.protobuf.ByteString
getAppIdBytes();
/**
*
* Status (pending, in-progress, completed, failed) of the operation
*
*
* .clarifai.api.status.Status status = 5;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
*
* Status (pending, in-progress, completed, failed) of the operation
*
*
* .clarifai.api.status.Status status = 5;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
*
* Status (pending, in-progress, completed, failed) of the operation
*
*
* .clarifai.api.status.Status status = 5;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
*
* Progress of an on-going Bulk Operation task
*
*
* .clarifai.api.Progress progress = 6;
* @return Whether the progress field is set.
*/
boolean hasProgress();
/**
*
* Progress of an on-going Bulk Operation task
*
*
* .clarifai.api.Progress progress = 6;
* @return The progress.
*/
com.clarifai.grpc.api.Progress getProgress();
/**
*
* Progress of an on-going Bulk Operation task
*
*
* .clarifai.api.Progress progress = 6;
*/
com.clarifai.grpc.api.ProgressOrBuilder getProgressOrBuilder();
/**
*
* User id that created this operation
*
*
* string created_by = 7;
* @return The createdBy.
*/
java.lang.String getCreatedBy();
/**
*
* User id that created this operation
*
*
* string created_by = 7;
* @return The bytes for createdBy.
*/
com.google.protobuf.ByteString
getCreatedByBytes();
/**
*
* When the operation was created. We follow the XXXX timestamp
* format. We use https://www.ietf.org/rfc/rfc3339.txt format:
* "2006-01-02T15:04:05.999999Z" so you can expect results like
* the following from the API:
* "2017-04-11T21:50:50.223962Z"
*
*
* .google.protobuf.Timestamp created_at = 8;
* @return Whether the createdAt field is set.
*/
boolean hasCreatedAt();
/**
*
* When the operation was created. We follow the XXXX timestamp
* format. We use https://www.ietf.org/rfc/rfc3339.txt format:
* "2006-01-02T15:04:05.999999Z" so you can expect results like
* the following from the API:
* "2017-04-11T21:50:50.223962Z"
*
*
* .google.protobuf.Timestamp created_at = 8;
* @return The createdAt.
*/
com.google.protobuf.Timestamp getCreatedAt();
/**
*
* When the operation was created. We follow the XXXX timestamp
* format. We use https://www.ietf.org/rfc/rfc3339.txt format:
* "2006-01-02T15:04:05.999999Z" so you can expect results like
* the following from the API:
* "2017-04-11T21:50:50.223962Z"
*
*
* .google.protobuf.Timestamp created_at = 8;
*/
com.google.protobuf.TimestampOrBuilder getCreatedAtOrBuilder();
/**
*
* Last time the status got updated
*
*
* .google.protobuf.Timestamp last_modified_at = 9;
* @return Whether the lastModifiedAt field is set.
*/
boolean hasLastModifiedAt();
/**
*
* Last time the status got updated
*
*
* .google.protobuf.Timestamp last_modified_at = 9;
* @return The lastModifiedAt.
*/
com.google.protobuf.Timestamp getLastModifiedAt();
/**
*
* Last time the status got updated
*
*
* .google.protobuf.Timestamp last_modified_at = 9;
*/
com.google.protobuf.TimestampOrBuilder getLastModifiedAtOrBuilder();
public com.clarifai.grpc.api.BulkOperation.InputSourceCase getInputSourceCase();
}