Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Run
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Run
- 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 run represents an execution of a process that creates lineage events.
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,Object>
Optional.
-
#display_name ⇒ String
Optional.
-
#end_time ⇒ String
Optional.
-
#name ⇒ String
Immutable.
-
#start_time ⇒ String
Required.
-
#state ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1Run
constructor
A new instance of GoogleCloudDatacatalogLineageV1Run.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1Run
Returns a new instance of GoogleCloudDatacatalogLineageV1Run.
569 570 571 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 569 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributes ⇒ Hash<String,Object>
Optional. The attributes of the run. Should only be used for the purpose of
non-semantic management (classifying, describing or labeling the run). Up to
100 attributes are allowed.
Corresponds to the JSON property attributes
537 538 539 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 537 def attributes @attributes end |
#display_name ⇒ String
Optional. A human-readable name you can set to display in a user interface.
Must be not longer than 1024 characters and only contain UTF-8 letters or
numbers, spaces or characters like _-:&.
Corresponds to the JSON property displayName
544 545 546 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 544 def display_name @display_name end |
#end_time ⇒ String
Optional. The timestamp of the end of the run.
Corresponds to the JSON property endTime
549 550 551 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 549 def end_time @end_time end |
#name ⇒ String
Immutable. The resource name of the run. Format: projects/
project/locations/
location/processes/
process/runs/
run`. Can be specified or auto-assigned.
runmust be not longer than 200 characters and only contain characters in a
set:
a-zA-Z0-9_-:.
Corresponds to the JSON property
name`
557 558 559 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 557 def name @name end |
#start_time ⇒ String
Required. The timestamp of the start of the run.
Corresponds to the JSON property startTime
562 563 564 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 562 def start_time @start_time end |
#state ⇒ String
Required. The state of the run.
Corresponds to the JSON property state
567 568 569 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 567 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
574 575 576 577 578 579 580 581 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 574 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @display_name = args[:display_name] if args.key?(:display_name) @end_time = args[:end_time] if args.key?(:end_time) @name = args[:name] if args.key?(:name) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end |