Show / Hide Table of Contents

Class ObjectLineageRequestDetails

Details needed by a lineage fetch request.

Inheritance
object
ObjectLineageRequestDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class ObjectLineageRequestDetails

Properties

Direction

Declaration
[JsonProperty(PropertyName = "direction")]
[JsonConverter(typeof(StringEnumConverter))]
public LineageDirection? Direction { get; set; }
Property Value
Type Description
LineageDirection?

Direction of the lineage returned.

IntraLineageObjectKey

Declaration
[JsonProperty(PropertyName = "intraLineageObjectKey")]
public string IntraLineageObjectKey { get; set; }
Property Value
Type Description
string

Unique object key for which intra-lineage needs to be fetched. Only drill-down lineage corresponding to the object whose object key is passed is returned.

IsIntraLineage

Declaration
[JsonProperty(PropertyName = "isIntraLineage")]
public bool? IsIntraLineage { get; set; }
Property Value
Type Description
bool?

Intra-lineages are drill down lineages. This field indicates whether all intra-lineages need to be expanded inline in the lineage returned.

Level

Declaration
[JsonProperty(PropertyName = "level")]
public int? Level { get; set; }
Property Value
Type Description
int?

Object level at which the lineage is returned.

In this article
Back to top