com.google.cloud.videointelligence.v1p3beta1.AnnotateVideoRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-video-intelligence-v1p3beta1 Show documentation
Show all versions of proto-google-cloud-video-intelligence-v1p3beta1 Show documentation
PROTO library for proto-google-cloud-video-intelligence-v1p3beta1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/videointelligence/v1p3beta1/video_intelligence.proto
package com.google.cloud.videointelligence.v1p3beta1;
public interface AnnotateVideoRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.videointelligence.v1p3beta1.AnnotateVideoRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Input video location. Currently, only
* [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
* supported, which must be specified in the following format:
* `gs://bucket-id/object-id` (other URI formats return
* [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For
* more information, see [Request URIs](/storage/docs/reference-uris). A video
* URI may include wildcards in `object-id`, and thus identify multiple
* videos. Supported wildcards: '*' to match 0 or more characters;
* '?' to match 1 character. If unset, the input video should be embedded
* in the request as `input_content`. If set, `input_content` should be unset.
*
*
* string input_uri = 1;
*/
java.lang.String getInputUri();
/**
*
*
*
* Input video location. Currently, only
* [Google Cloud Storage](https://cloud.google.com/storage/) URIs are
* supported, which must be specified in the following format:
* `gs://bucket-id/object-id` (other URI formats return
* [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For
* more information, see [Request URIs](/storage/docs/reference-uris). A video
* URI may include wildcards in `object-id`, and thus identify multiple
* videos. Supported wildcards: '*' to match 0 or more characters;
* '?' to match 1 character. If unset, the input video should be embedded
* in the request as `input_content`. If set, `input_content` should be unset.
*
*
* string input_uri = 1;
*/
com.google.protobuf.ByteString getInputUriBytes();
/**
*
*
*
* The video data bytes.
* If unset, the input video(s) should be specified via `input_uri`.
* If set, `input_uri` should be unset.
*
*
* bytes input_content = 6;
*/
com.google.protobuf.ByteString getInputContent();
/**
*
*
*
* Requested video annotation features.
*
*
* repeated .google.cloud.videointelligence.v1p3beta1.Feature features = 2;
*/
java.util.List getFeaturesList();
/**
*
*
*
* Requested video annotation features.
*
*
* repeated .google.cloud.videointelligence.v1p3beta1.Feature features = 2;
*/
int getFeaturesCount();
/**
*
*
*
* Requested video annotation features.
*
*
* repeated .google.cloud.videointelligence.v1p3beta1.Feature features = 2;
*/
com.google.cloud.videointelligence.v1p3beta1.Feature getFeatures(int index);
/**
*
*
*
* Requested video annotation features.
*
*
* repeated .google.cloud.videointelligence.v1p3beta1.Feature features = 2;
*/
java.util.List getFeaturesValueList();
/**
*
*
*
* Requested video annotation features.
*
*
* repeated .google.cloud.videointelligence.v1p3beta1.Feature features = 2;
*/
int getFeaturesValue(int index);
/**
*
*
*
* Additional video context and/or feature-specific parameters.
*
*
* .google.cloud.videointelligence.v1p3beta1.VideoContext video_context = 3;
*/
boolean hasVideoContext();
/**
*
*
*
* Additional video context and/or feature-specific parameters.
*
*
* .google.cloud.videointelligence.v1p3beta1.VideoContext video_context = 3;
*/
com.google.cloud.videointelligence.v1p3beta1.VideoContext getVideoContext();
/**
*
*
*
* Additional video context and/or feature-specific parameters.
*
*
* .google.cloud.videointelligence.v1p3beta1.VideoContext video_context = 3;
*/
com.google.cloud.videointelligence.v1p3beta1.VideoContextOrBuilder getVideoContextOrBuilder();
/**
*
*
*
* Optional location where the output (in JSON format) should be stored.
* Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
* URIs are supported, which must be specified in the following format:
* `gs://bucket-id/object-id` (other URI formats return
* [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For
* more information, see [Request URIs](/storage/docs/reference-uris).
*
*
* string output_uri = 4;
*/
java.lang.String getOutputUri();
/**
*
*
*
* Optional location where the output (in JSON format) should be stored.
* Currently, only [Google Cloud Storage](https://cloud.google.com/storage/)
* URIs are supported, which must be specified in the following format:
* `gs://bucket-id/object-id` (other URI formats return
* [google.rpc.Code.INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]). For
* more information, see [Request URIs](/storage/docs/reference-uris).
*
*
* string output_uri = 4;
*/
com.google.protobuf.ByteString getOutputUriBytes();
/**
*
*
*
* Optional cloud region where annotation should take place. Supported cloud
* regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
* is specified, a region will be determined based on video file location.
*
*
* string location_id = 5;
*/
java.lang.String getLocationId();
/**
*
*
*
* Optional cloud region where annotation should take place. Supported cloud
* regions: `us-east1`, `us-west1`, `europe-west1`, `asia-east1`. If no region
* is specified, a region will be determined based on video file location.
*
*
* string location_id = 5;
*/
com.google.protobuf.ByteString getLocationIdBytes();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy