Show / Hide Table of Contents

Class LineageObject

Object describing an individual element of object lineage.

Inheritance
object
LineageObject
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 LineageObject

Properties

Description

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

Detailed description of the object.

DisplayName

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

Display name of the object.

IsIntraLineageAvailable

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

Indicates if intra-lineage is available for this given object. If yes, drill-down can be requested for this object.

ObjectKey

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

Key of the object, such as an entity, about which this lineage applies.

ParentKey

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

Key of the parent object for this object.

ParentPath

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

Full path of the parent object.

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public Dictionary<string, Dictionary<string, string>> Properties { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, string>>

A map of maps that contains the properties which are specific to the entity type. Each entity type definition defines it's set of required and optional properties. The map keys are category names and the values are maps of property name to property value. Every property is contained inside of a category. Most data entities have required properties within the "default" category. Example: {"properties": { "default": { "key1": "value1"}}}

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time that this object was created. An RFC3339 formatted datetime string.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The time that this object was updated. An RFC3339 formatted datetime string.

TypeKey

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

Type key of the object. Type keys can be found via the '/types' endpoint.

TypeName

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

Type name of the object. Type keys can be found via the '/types' endpoint.

In this article
Back to top