Show / Hide Table of Contents

Class BiccReadAttributes

Properties to configure reading from BICC.

Inheritance
object
AbstractReadAttribute
BiccReadAttributes
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 BiccReadAttributes : AbstractReadAttribute

Properties

ExternalStorage

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

ExtractStrategy

Declaration
[JsonProperty(PropertyName = "extractStrategy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public BiccReadAttributes.ExtractStrategyEnum? ExtractStrategy { get; set; }
Property Value
Type Description
BiccReadAttributes.ExtractStrategyEnum?

Extraction Strategy - FULL|INCREMENTAL

FetchSize

Declaration
[JsonProperty(PropertyName = "fetchSize")]
public int? FetchSize { get; set; }
Property Value
Type Description
int?

The fetch size for reading.

InitialExtractDate

Declaration
[JsonProperty(PropertyName = "initialExtractDate")]
public DateTime? InitialExtractDate { get; set; }
Property Value
Type Description
DateTime?

Date from where extract should start

LastExtractDate

Declaration
[JsonProperty(PropertyName = "lastExtractDate")]
public DateTime? LastExtractDate { get; set; }
Property Value
Type Description
DateTime?

Date last extracted

In this article
Back to top