Class: Google::Cloud::DataCatalog::Lineage::V1::Origin
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::Lineage::V1::Origin
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/lineage/v1/lineage.rb
Overview
Origin of a process.
Defined Under Namespace
Modules: SourceType
Instance Attribute Summary collapse
-
#name ⇒ ::String
If the source_type isn't CUSTOM, the value of this field should be a GCP resource name of the system, which reports lineage.
-
#source_type ⇒ ::Google::Cloud::DataCatalog::Lineage::V1::Origin::SourceType
Type of the source.
Instance Attribute Details
#name ⇒ ::String
Returns If the source_type isn't CUSTOM, the value of this field should be a GCP resource name of the system, which reports lineage. The project and location parts of the resource name must match the project and location of the lineage resource being created. Examples:
{source_type: COMPOSER, name: "projects/foo/locations/us/environments/bar"}{source_type: BIGQUERY, name: "projects/foo/locations/eu"}{source_type: CUSTOM, name: "myCustomIntegration"}.
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
# File 'proto_docs/google/cloud/datacatalog/lineage/v1/lineage.rb', line 678 class Origin include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of the source of a process. module SourceType # Source is Unspecified SOURCE_TYPE_UNSPECIFIED = 0 # A custom source CUSTOM = 1 # BigQuery BIGQUERY = 2 # Data Fusion DATA_FUSION = 3 # Composer COMPOSER = 4 # Looker Studio LOOKER_STUDIO = 5 end end |
#source_type ⇒ ::Google::Cloud::DataCatalog::Lineage::V1::Origin::SourceType
Returns Type of the source.
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
# File 'proto_docs/google/cloud/datacatalog/lineage/v1/lineage.rb', line 678 class Origin include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Type of the source of a process. module SourceType # Source is Unspecified SOURCE_TYPE_UNSPECIFIED = 0 # A custom source CUSTOM = 1 # BigQuery BIGQUERY = 2 # Data Fusion DATA_FUSION = 3 # Composer COMPOSER = 4 # Looker Studio LOOKER_STUDIO = 5 end end |