Class: Google::Apis::DatabasecenterV1beta::Lineage
- Inherits:
-
Object
- Object
- Google::Apis::DatabasecenterV1beta::Lineage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/databasecenter_v1beta/classes.rb,
lib/google/apis/databasecenter_v1beta/representations.rb,
lib/google/apis/databasecenter_v1beta/representations.rb
Overview
lineage information of the affiliated resources This captures source, target and process which created the lineage.
Instance Attribute Summary collapse
-
#process_fqn ⇒ String
Optional.
-
#process_type ⇒ String
Optional.
-
#source_fqn ⇒ String
Optional.
-
#target_fqn ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Lineage
constructor
A new instance of Lineage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Lineage
Returns a new instance of Lineage.
1191 1192 1193 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#process_fqn ⇒ String
Optional. FQN of process which created the lineage i.e. dataplex, datastream
etc.
Corresponds to the JSON property processFqn
1174 1175 1176 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1174 def process_fqn @process_fqn end |
#process_type ⇒ String
Optional. Type of process which created the lineage.
Corresponds to the JSON property processType
1179 1180 1181 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1179 def process_type @process_type end |
#source_fqn ⇒ String
Optional. FQN of source table / column
Corresponds to the JSON property sourceFqn
1184 1185 1186 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1184 def source_fqn @source_fqn end |
#target_fqn ⇒ String
Optional. FQN of target table / column
Corresponds to the JSON property targetFqn
1189 1190 1191 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1189 def target_fqn @target_fqn end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1196 1197 1198 1199 1200 1201 |
# File 'lib/google/apis/databasecenter_v1beta/classes.rb', line 1196 def update!(**args) @process_fqn = args[:process_fqn] if args.key?(:process_fqn) @process_type = args[:process_type] if args.key?(:process_type) @source_fqn = args[:source_fqn] if args.key?(:source_fqn) @target_fqn = args[:target_fqn] if args.key?(:target_fqn) end |