Class: Google::Cloud::DataCatalog::V1::VertexDatasetSpec
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::VertexDatasetSpec
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
Specification for vertex dataset resources.
Defined Under Namespace
Modules: DataType
Instance Attribute Summary collapse
-
#data_item_count ⇒ ::Integer
The number of DataItems in this Dataset.
-
#data_type ⇒ ::Google::Cloud::DataCatalog::V1::VertexDatasetSpec::DataType
Type of the dataset.
Instance Attribute Details
#data_item_count ⇒ ::Integer
Returns The number of DataItems in this Dataset. Only apply for non-structured Dataset.
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1002 class VertexDatasetSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of data stored in the dataset. module DataType # Should not be used. DATA_TYPE_UNSPECIFIED = 0 # Structured data dataset. TABLE = 1 # Image dataset which supports ImageClassification, ImageObjectDetection # and ImageSegmentation problems. IMAGE = 2 # Document dataset which supports TextClassification, TextExtraction and # TextSentiment problems. TEXT = 3 # Video dataset which supports VideoClassification, VideoObjectTracking and # VideoActionRecognition problems. VIDEO = 4 # Conversation dataset which supports conversation problems. CONVERSATION = 5 # TimeSeries dataset. TIME_SERIES = 6 # Document dataset which supports DocumentAnnotation problems. DOCUMENT = 7 # TextToSpeech dataset which supports TextToSpeech problems. TEXT_TO_SPEECH = 8 # Translation dataset which supports Translation problems. TRANSLATION = 9 # Store Vision dataset which is used for HITL integration. STORE_VISION = 10 # Enterprise Knowledge Graph dataset which is used for HITL labeling # integration. ENTERPRISE_KNOWLEDGE_GRAPH = 11 # Text prompt dataset which supports Large Language Models. TEXT_PROMPT = 12 end end |
#data_type ⇒ ::Google::Cloud::DataCatalog::V1::VertexDatasetSpec::DataType
Returns Type of the dataset.
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1002 class VertexDatasetSpec include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of data stored in the dataset. module DataType # Should not be used. DATA_TYPE_UNSPECIFIED = 0 # Structured data dataset. TABLE = 1 # Image dataset which supports ImageClassification, ImageObjectDetection # and ImageSegmentation problems. IMAGE = 2 # Document dataset which supports TextClassification, TextExtraction and # TextSentiment problems. TEXT = 3 # Video dataset which supports VideoClassification, VideoObjectTracking and # VideoActionRecognition problems. VIDEO = 4 # Conversation dataset which supports conversation problems. CONVERSATION = 5 # TimeSeries dataset. TIME_SERIES = 6 # Document dataset which supports DocumentAnnotation problems. DOCUMENT = 7 # TextToSpeech dataset which supports TextToSpeech problems. TEXT_TO_SPEECH = 8 # Translation dataset which supports Translation problems. TRANSLATION = 9 # Store Vision dataset which is used for HITL integration. STORE_VISION = 10 # Enterprise Knowledge Graph dataset which is used for HITL labeling # integration. ENTERPRISE_KNOWLEDGE_GRAPH = 11 # Text prompt dataset which supports Large Language Models. TEXT_PROMPT = 12 end end |