Class: Google::Cloud::VisionAI::V1::SearchCapability
- Inherits:
-
Object
- Object
- Google::Cloud::VisionAI::V1::SearchCapability
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/visionai/v1/warehouse.rb
Overview
The capability and metadata of search capability.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#type ⇒ ::Google::Cloud::VisionAI::V1::SearchCapability::Type
The search capability to enable.
Instance Attribute Details
#type ⇒ ::Google::Cloud::VisionAI::V1::SearchCapability::Type
Returns The search capability to enable.
486 487 488 489 490 491 492 493 494 495 496 497 498 |
# File 'proto_docs/google/cloud/visionai/v1/warehouse.rb', line 486 class SearchCapability include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Capability to perform different search on assets. module Type # Unspecified search capability, should never be used. TYPE_UNSPECIFIED = 0 # Embedding search. EMBEDDING_SEARCH = 1 end end |