Class: Google::Cloud::VisionAI::V1::AnalyzerDefinition::StreamInput
- Inherits:
-
Object
- Object
- Google::Cloud::VisionAI::V1::AnalyzerDefinition::StreamInput
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/visionai/v1/lva.rb
Overview
The inputs to this analyzer.
We accept input name references of the following form:
Example:
Suppose you had an operator named "SomeOp" that has 2 output arguments, the first of which is named "foo" and the second of which is named "bar", and an operator named "MyOp" that accepts 2 inputs.
Also suppose that there is an analyzer named "some-analyzer" that is running "SomeOp" and another analyzer named "my-analyzer" running "MyOp".
To indicate that "my-analyzer" is to consume "some-analyzer"'s "foo" output as its first input and "some-analyzer"'s "bar" output as its second input, you can set this field to the following: input = ["some-analyzer:foo", "some-analyzer:bar"]
Instance Attribute Summary collapse
-
#input ⇒ ::String
The name of the stream input (as discussed above).
Instance Attribute Details
#input ⇒ ::String
Returns The name of the stream input (as discussed above).
233 234 235 236 |
# File 'proto_docs/google/cloud/visionai/v1/lva.rb', line 233 class StreamInput include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |