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.
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 956 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.
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 956 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 |