Class ObjectMetadata
A summary type containing information about the object including its key, name and when/who created/updated it.
Inheritance
ObjectMetadata
Assembly: OCI.DotNetSDK.Dataintegration.dll
public class ObjectMetadata
Properties
Declaration
[JsonProperty(PropertyName = "aggregator")]
public AggregatorSummary Aggregator { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "aggregatorKey")]
public string AggregatorKey { get; set; }
Property Value
Type |
Description |
string |
The owning object key for this object.
|
Declaration
[JsonProperty(PropertyName = "countStatistics")]
public CountStatistic CountStatistics { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "createdBy")]
public string CreatedBy { get; set; }
Property Value
Type |
Description |
string |
The user that created the object.
|
Declaration
[JsonProperty(PropertyName = "createdByName")]
public string CreatedByName { get; set; }
Property Value
Type |
Description |
string |
The user that created the object.
|
Declaration
[JsonProperty(PropertyName = "identifierPath")]
public string IdentifierPath { get; set; }
Property Value
Type |
Description |
string |
The full path to identify this object.
|
Declaration
[JsonProperty(PropertyName = "infoFields")]
public Dictionary<string, string> InfoFields { get; set; }
Property Value
Declaration
[JsonProperty(PropertyName = "isFavorite")]
public bool? IsFavorite { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether this object is a favorite or not.
|
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.
|
Declaration
[JsonProperty(PropertyName = "registryVersion")]
public int? RegistryVersion { get; set; }
Property Value
Type |
Description |
int? |
The registry version of the object.
|
Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type |
Description |
DateTime? |
The date and time that the object was created.
|
Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type |
Description |
DateTime? |
The date and time that the object was updated.
|
Declaration
[JsonProperty(PropertyName = "updatedBy")]
public string UpdatedBy { get; set; }
Property Value
Type |
Description |
string |
The user that updated the object.
|
Declaration
[JsonProperty(PropertyName = "updatedByName")]
public string UpdatedByName { get; set; }
Property Value
Type |
Description |
string |
The user that updated the object.
|