Show / Hide Table of Contents

Class CreateImportRequestDetails

Details of import object.

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

Properties

AreDataAssetReferencesIncluded

Declaration
[JsonProperty(PropertyName = "areDataAssetReferencesIncluded")]
public bool? AreDataAssetReferencesIncluded { get; set; }
Property Value
Type Description
bool?

This field controls if the data asset references will be included during import.

BucketName

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

Name of the Object Storage bucket where the object will be imported from.

Remarks

Required

FileName

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

Name of the zip file to be imported.

Remarks

Required

ImportConflictResolution

Declaration
[JsonProperty(PropertyName = "importConflictResolution")]
public ImportConflictResolution ImportConflictResolution { get; set; }
Property Value
Type Description
ImportConflictResolution

ObjectKeyForImport

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

Key of the object inside which all the objects will be imported

ObjectStorageRegion

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

Region of the object storage (if using object storage of different region)

ObjectStorageTenancyId

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

Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)

In this article
Back to top