Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EventLink
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EventLink
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datalineage_v1/classes.rb,
lib/google/apis/datalineage_v1/representations.rb,
lib/google/apis/datalineage_v1/representations.rb
Overview
A lineage between source and target entities.
Instance Attribute Summary collapse
-
#source ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
-
#target ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1EventLink
constructor
A new instance of GoogleCloudDatacatalogLineageV1EventLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1EventLink
Returns a new instance of GoogleCloudDatacatalogLineageV1EventLink.
123 124 125 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 123 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Corresponds to the JSON property source
116 117 118 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 116 def source @source end |
#target ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Corresponds to the JSON property target
121 122 123 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 121 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
128 129 130 131 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 128 def update!(**args) @source = args[:source] if args.key?(:source) @target = args[:target] if args.key?(:target) end |