Show / Hide Table of Contents

Class CopyConflictResolution

Copy Object Conflict resolution.

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

Properties

DuplicatePrefix

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

In case of DUPLICATE mode, this prefix will be used to disambiguate the object.

DuplicateSuffix

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

In case of DUPLICATE mode, this suffix will be used to disambiguate the object.

RequestType

Declaration
[Required(ErrorMessage = "RequestType is required.")]
[JsonProperty(PropertyName = "requestType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CopyConflictResolution.RequestTypeEnum? RequestType { get; set; }
Property Value
Type Description
CopyConflictResolution.RequestTypeEnum?

Copy Object Conflict Resolution Type (RETAIN/DUPLICATE/REPLACE).

Remarks

Required

In this article
Back to top