Show / Hide Table of Contents

Class GoogleCloudVideointelligenceV1AnnotateVideoRequest

Video annotation request.

Inheritance
object
GoogleCloudVideointelligenceV1AnnotateVideoRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudVideoIntelligence.v1.Data
Assembly: Google.Apis.CloudVideoIntelligence.v1.dll
Syntax
public class GoogleCloudVideointelligenceV1AnnotateVideoRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Features

Required. Requested video annotation features.

Declaration
[JsonProperty("features")]
public virtual IList<string> Features { get; set; }
Property Value
Type Description
IList<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
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
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
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
string

VideoContext

Additional video context and/or feature-specific parameters.

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

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX