Show / Hide Table of Contents

Class RegistryMetadata

Information about the object and its parent.

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

Properties

AggregatorKey

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

The owning object's key for this object.

IsFavorite

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

Specifies whether this object is a favorite or not.

Key

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

The identifying key for the object.

Labels

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

Labels are keywords or labels that you can add to data assets, dataflows etc. 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.

In this article
Back to top