Class CopyConflictResolution
Copy Object Conflict resolution.
Inherited Members
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