Class: Google::Cloud::DataCatalog::V1::VertexDatasetSpec

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#data_item_count::Integer

Returns The number of DataItems in this Dataset. Only apply for non-structured Dataset.

Returns:

  • (::Integer)

    The number of DataItems in this Dataset. Only apply for non-structured Dataset.



944
945
946
947
948
949
950
951
952
953
954
955
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
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 944

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.



944
945
946
947
948
949
950
951
952
953
954
955
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
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 944

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