Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse
- 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
Response message for ProcessOpenLineageRunEvent.
Instance Attribute Summary collapse
-
#lineage_events ⇒ Array<String>
Created lineage event names.
-
#process ⇒ String
Created process name.
-
#run ⇒ String
Created run name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse
constructor
A new instance of GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse
Returns a new instance of GoogleCloudDatacatalogLineageV1ProcessOpenLineageRunEventResponse.
647 648 649 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 647 def initialize(**args) update!(**args) end |
Instance Attribute Details
#lineage_events ⇒ Array<String>
Created lineage event names. Format: projects/project/locations/location/
processes/process/runs/run/lineageEvents/lineage_event`.
Corresponds to the JSON propertylineageEvents`
633 634 635 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 633 def lineage_events @lineage_events end |
#process ⇒ String
Created process name. Format: projects/project/locations/location/
processes/process`.
Corresponds to the JSON propertyprocess`
639 640 641 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 639 def process @process end |
#run ⇒ String
Created run name. Format: projects/project/locations/location/processes/
process/runs/run`.
Corresponds to the JSON propertyrun`
645 646 647 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 645 def run @run end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
652 653 654 655 656 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 652 def update!(**args) @lineage_events = args[:lineage_events] if args.key?(:lineage_events) @process = args[:process] if args.key?(:process) @run = args[:run] if args.key?(:run) end |