Show / Hide Table of Contents

Class GoogleCloudVideointelligenceV1beta2AnnotateVideoRequest

Video annotation request.

Inheritance
System.Object
GoogleCloudVideointelligenceV1beta2AnnotateVideoRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudVideoIntelligence.v1beta2.Data
Assembly: Google.Apis.CloudVideoIntelligence.v1beta2.dll
Syntax
public class GoogleCloudVideointelligenceV1beta2AnnotateVideoRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Features

Required. Requested video annotation features.

Declaration
[JsonProperty("features")]
public virtual IList<string> Features { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

InputContent

The video data bytes. If unset, the input video(s) should be specified via the input_uri. If set, input_uri must be unset.

Declaration
[JsonProperty("inputContent")]
public virtual string InputContent { get; set; }
Property Value
Type Description
System.String

InputUri

Input video location. Currently, only Cloud Storage URIs are supported. URIs must be specified in the following format: gs://bucket-id/object-id (other URI formats return google.rpc.Code.INVALID_ARGUMENT). For more information, see Request URIs. To identify multiple videos, a video URI may include wildcards in the object-id. 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 must be unset.

Declaration
[JsonProperty("inputUri")]
public virtual string InputUri { get; set; }
Property Value
Type Description
System.String

LocationId

Optional. Cloud region where annotation should take place. Supported cloud regions are: us-east1, us-west1, europe-west1, asia-east1. If no region is specified, the region will be determined based on video file location.

Declaration
[JsonProperty("locationId")]
public virtual string LocationId { get; set; }
Property Value
Type Description
System.String

OutputUri

Optional. Location where the output (in JSON format) should be stored. Currently, only Cloud Storage URIs are supported. These must be specified in the following format: gs://bucket-id/object-id (other URI formats return google.rpc.Code.INVALID_ARGUMENT). For more information, see Request URIs.

Declaration
[JsonProperty("outputUri")]
public virtual string OutputUri { get; set; }
Property Value
Type Description
System.String

VideoContext

Additional video context and/or feature-specific parameters.

Declaration
[JsonProperty("videoContext")]
public virtual GoogleCloudVideointelligenceV1beta2VideoContext VideoContext { get; set; }
Property Value
Type Description
GoogleCloudVideointelligenceV1beta2VideoContext

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top