Show / Hide Table of Contents

Class CopyObjectMetadataSummary

Details of copied objects.

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

Properties

AggregatorKey

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

Aggregator key

Identifier

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

Object identifier.

Name

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

Name of the object.

NamePath

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

Object name path.

NewKey

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

New key of the object to identify the copied object. For example the new dataflow key.

ObjectType

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

Object type.

ObjectVersion

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

Object version.

OldKey

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

Old key of the object from where the object was copied. For example a dataflow key within the project being copied.

ResolutionAction

Declaration
[JsonProperty(PropertyName = "resolutionAction")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CopyObjectMetadataSummary.ResolutionActionEnum? ResolutionAction { get; set; }
Property Value
Type Description
CopyObjectMetadataSummary.ResolutionActionEnum?

Object resolution action.

TimeUpdatedInMillis

Declaration
[JsonProperty(PropertyName = "timeUpdatedInMillis")]
public long? TimeUpdatedInMillis { get; set; }
Property Value
Type Description
long?

time at which this object was last updated.

In this article
Back to top