Show / Hide Table of Contents

Class DependentObjectSummary

Details of the dependent object.

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

Properties

Aggregator

Declaration
[JsonProperty(PropertyName = "aggregator")]
public AggregatorSummary Aggregator { get; set; }
Property Value
Type Description
AggregatorSummary

AggregatorKey

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

The owning object key for this object.

CountStatistics

Declaration
[JsonProperty(PropertyName = "countStatistics")]
public CountStatistic CountStatistics { get; set; }
Property Value
Type Description
CountStatistic

CreatedBy

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

The user that created the object.

CreatedByName

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

The user that created the object.

IdentifierPath

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

The full path to identify this object.

InfoFields

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

Information property fields.

IsFavorite

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

Specifies whether this object is a favorite or not.

Labels

Declaration
[JsonProperty(PropertyName = "labels")]
public List<string> Labels { get; set; }
Property Value
Type Description
List<string>

Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.

RegistryVersion

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

The registry version of the object.

TimeCreated

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

The date and time that the object was created.

TimeUpdated

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

The date and time that the object was updated.

UpdatedBy

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

The user that updated the object.

UpdatedByName

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

The user that updated the object.

In this article
Back to top