Vision AI v1 API - Class ProcessorIOSpec.Types.GraphInputChannelSpec (1.0.0-beta01)

public sealed class ProcessorIOSpec.Types.GraphInputChannelSpec : IMessage<ProcessorIOSpec.Types.GraphInputChannelSpec>, IEquatable<ProcessorIOSpec.Types.GraphInputChannelSpec>, IDeepCloneable<ProcessorIOSpec.Types.GraphInputChannelSpec>, IBufferMessage, IMessage

Reference documentation and code samples for the Vision AI v1 API class ProcessorIOSpec.Types.GraphInputChannelSpec.

Message for input channel specification.

Inheritance

object > ProcessorIOSpec.Types.GraphInputChannelSpec

Namespace

Google.Cloud.VisionAI.V1

Assembly

Google.Cloud.VisionAI.V1.dll

Constructors

GraphInputChannelSpec()

public GraphInputChannelSpec()

GraphInputChannelSpec(GraphInputChannelSpec)

public GraphInputChannelSpec(ProcessorIOSpec.Types.GraphInputChannelSpec other)
Parameter
Name Description
other ProcessorIOSpecTypesGraphInputChannelSpec

Properties

AcceptedDataTypeUris

public RepeatedField<string> AcceptedDataTypeUris { get; }

If specified, only those detailed data types can be connected to the processor. For example, jpeg stream for MEDIA, or PredictionResult proto for PROTO type. If unspecified, then any proto is accepted.

Property Value
Type Description
RepeatedFieldstring

DataType

public DataType DataType { get; set; }

The data types of the current input channel. When this field has more than 1 value, it means this input channel can be connected to either of these different data types.

Property Value
Type Description
DataType

MaxConnectionAllowed

public long MaxConnectionAllowed { get; set; }

How many input edges can be connected to this input channel. 0 means unlimited.

Property Value
Type Description
long

Name

public string Name { get; set; }

The name of the current input channel.

Property Value
Type Description
string

Required

public bool Required { get; set; }

Whether the current input channel is required by the processor. For example, for a processor with required video input and optional audio input, if video input is missing, the application will be rejected while the audio input can be missing as long as the video input exists.

Property Value
Type Description
bool