Interface StreamingAnnotateVideoResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StreamingAnnotateVideoResponse
,StreamingAnnotateVideoResponse.Builder
public interface StreamingAnnotateVideoResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StreamingVideoAnnotationResults
getAnnotationResults()
Streaming annotation results.StreamingVideoAnnotationResultsOrBuilder
getAnnotationResultsOrBuilder()
Streaming annotation results.String
getAnnotationResultsUri()
Google Cloud Storage(GCS) URI that stores annotation results of one streaming session in JSON format.com.google.protobuf.ByteString
getAnnotationResultsUriBytes()
Google Cloud Storage(GCS) URI that stores annotation results of one streaming session in JSON format.com.google.rpc.Status
getError()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.com.google.rpc.StatusOrBuilder
getErrorOrBuilder()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.boolean
hasAnnotationResults()
Streaming annotation results.boolean
hasError()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasError
boolean hasError()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.
.google.rpc.Status error = 1;
- Returns:
- Whether the error field is set.
-
getError
com.google.rpc.Status getError()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.
.google.rpc.Status error = 1;
- Returns:
- The error.
-
getErrorOrBuilder
com.google.rpc.StatusOrBuilder getErrorOrBuilder()
If set, returns a [google.rpc.Status][google.rpc.Status] message that specifies the error for the operation.
.google.rpc.Status error = 1;
-
hasAnnotationResults
boolean hasAnnotationResults()
Streaming annotation results.
.google.cloud.videointelligence.v1p3beta1.StreamingVideoAnnotationResults annotation_results = 2;
- Returns:
- Whether the annotationResults field is set.
-
getAnnotationResults
StreamingVideoAnnotationResults getAnnotationResults()
Streaming annotation results.
.google.cloud.videointelligence.v1p3beta1.StreamingVideoAnnotationResults annotation_results = 2;
- Returns:
- The annotationResults.
-
getAnnotationResultsOrBuilder
StreamingVideoAnnotationResultsOrBuilder getAnnotationResultsOrBuilder()
Streaming annotation results.
.google.cloud.videointelligence.v1p3beta1.StreamingVideoAnnotationResults annotation_results = 2;
-
getAnnotationResultsUri
String getAnnotationResultsUri()
Google Cloud Storage(GCS) URI that stores annotation results of one streaming session in JSON format. It is the annotation_result_storage_directory from the request followed by '/cloud_project_number-session_id'.
string annotation_results_uri = 3;
- Returns:
- The annotationResultsUri.
-
getAnnotationResultsUriBytes
com.google.protobuf.ByteString getAnnotationResultsUriBytes()
Google Cloud Storage(GCS) URI that stores annotation results of one streaming session in JSON format. It is the annotation_result_storage_directory from the request followed by '/cloud_project_number-session_id'.
string annotation_results_uri = 3;
- Returns:
- The bytes for annotationResultsUri.
-
-