Show / Hide Table of Contents

Class CreateCopyObjectRequestDetails

Details of copy object.

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

Properties

CopyConflictResolution

Declaration
[Required(ErrorMessage = "CopyConflictResolution is required.")]
[JsonProperty(PropertyName = "copyConflictResolution")]
public CopyConflictResolution CopyConflictResolution { get; set; }
Property Value
Type Description
CopyConflictResolution
Remarks

Required

ObjectKeys

Declaration
[Required(ErrorMessage = "ObjectKeys is required.")]
[JsonProperty(PropertyName = "objectKeys")]
public List<string> ObjectKeys { get; set; }
Property Value
Type Description
List<string>

The list of the objects to be copied.

Remarks

Required

SourceWorkspaceId

Declaration
[Required(ErrorMessage = "SourceWorkspaceId is required.")]
[JsonProperty(PropertyName = "sourceWorkspaceId")]
public string SourceWorkspaceId { get; set; }
Property Value
Type Description
string

The workspace id of the source from where we need to copy object.

Remarks

Required

In this article
Back to top