com.clarifai.grpc.api.SingleDeploymentResponseOrBuilder Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/clarifai/api/service.proto
package com.clarifai.grpc.api;
public interface SingleDeploymentResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:clarifai.api.SingleDeploymentResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .clarifai.api.status.Status status = 1;
* @return Whether the status field is set.
*/
boolean hasStatus();
/**
* .clarifai.api.status.Status status = 1;
* @return The status.
*/
com.clarifai.grpc.api.status.Status getStatus();
/**
* .clarifai.api.status.Status status = 1;
*/
com.clarifai.grpc.api.status.StatusOrBuilder getStatusOrBuilder();
/**
* .clarifai.api.Deployment deployment = 2;
* @return Whether the deployment field is set.
*/
boolean hasDeployment();
/**
* .clarifai.api.Deployment deployment = 2;
* @return The deployment.
*/
com.clarifai.grpc.api.Deployment getDeployment();
/**
* .clarifai.api.Deployment deployment = 2;
*/
com.clarifai.grpc.api.DeploymentOrBuilder getDeploymentOrBuilder();
}