Show / Hide Table of Contents

Class ImportConflictResolution

Import Objects Conflict resolution.

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

Properties

DuplicatePrefix

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

In case of DUPLICATE mode, 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, suffix will be used to disambiguate the object.

ImportConflictResolutionType

Declaration
[Required(ErrorMessage = "ImportConflictResolutionType is required.")]
[JsonProperty(PropertyName = "importConflictResolutionType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ImportConflictResolution.ImportConflictResolutionTypeEnum? ImportConflictResolutionType { get; set; }
Property Value
Type Description
ImportConflictResolution.ImportConflictResolutionTypeEnum?

Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).

Remarks

Required

In this article
Back to top