Package com.atlan.model.lineage
Class OpenLineageRun
java.lang.Object
com.atlan.model.core.AtlanObject
com.atlan.model.lineage.OpenLineageRun
- All Implemented Interfaces:
Serializable
Atlan wrapper for abstracting OpenLineage runs.
A run is an instance of a job that represents one of its occurrences in time.
Each run will have a uniquely identifiable
For more details, see OpenLineage docs.
A run is an instance of a job that represents one of its occurrences in time.
Each run will have a uniquely identifiable
runId
that is generated by the client as a UUID. The client is responsible for maintaining the runId
across different states in the same run.
For more details, see OpenLineage docs.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
OpenLineageRun.OpenLineageRunBuilder<C extends OpenLineageRun,
B extends OpenLineageRun.OpenLineageRunBuilder<C, B>> Nested classes/interfaces inherited from class com.atlan.model.core.AtlanObject
AtlanObject.AtlanObjectBuilder<C extends AtlanObject,
B extends AtlanObject.AtlanObjectBuilder<C, B>> -
Field Summary
Fields inherited from class com.atlan.model.core.AtlanObject
rawJsonObject
-
Constructor Summary
ModifierConstructorDescriptionprotected
OpenLineageRun
(io.openlineage.client.OpenLineage.Run run) Pass-through constructor for an Atlan wrapping of an existing OpenLineage run. -
Method Summary
Modifier and TypeMethodDescriptionstatic OpenLineageRun.OpenLineageRunBuilder<?,
?> protected boolean
static OpenLineageRun.OpenLineageRunBuilder<?,
?> creator
(OpenLineageJob job) Builds the minimal object necessary to create an OpenLineage run.boolean
getJob()
Complete details about the OpenLineage job.int
hashCode()
toJson
(AtlanClient client) Serialize the object to a JSON string.toString()
Methods inherited from class com.atlan.model.core.AtlanObject
getRawJsonObject, setRawJsonObject
-
Constructor Details
-
OpenLineageRun
public OpenLineageRun(io.openlineage.client.OpenLineage.Run run) Pass-through constructor for an Atlan wrapping of an existing OpenLineage run.- Parameters:
run
- an OpenLinage run object that already exists
-
OpenLineageRun
-
-
Method Details
-
creator
Builds the minimal object necessary to create an OpenLineage run.- Parameters:
job
- the OpenLineage job for which to create a new run- Returns:
- the minimal request necessary to create the run, as a builder
-
toJson
Serialize the object to a JSON string.- Overrides:
toJson
in classAtlanObject
- Parameters:
client
- the client through which to serialize the object- Returns:
- the serialized JSON string
-
_internal
-
toBuilder
-
equals
- Overrides:
equals
in classAtlanObject
-
canEqual
- Overrides:
canEqual
in classAtlanObject
-
hashCode
public int hashCode()- Overrides:
hashCode
in classAtlanObject
-
toString
Description copied from class:AtlanObject
- Overrides:
toString
in classAtlanObject
-
getJob
Complete details about the OpenLineage job.
-