Show / Hide Table of Contents

Class BipReadAttributes

Properties to configure reading from a FUSION_APP BIP data asset / connection.

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

Properties

BucketSchema

Declaration
[JsonProperty(PropertyName = "bucketSchema")]
public Schema BucketSchema { get; set; }
Property Value
Type Description
Schema

CustomParameters

Declaration
[JsonProperty(PropertyName = "customParameters")]
public List<BipReportParameterValue> CustomParameters { get; set; }
Property Value
Type Description
List<BipReportParameterValue>

An array of custom BIP report parameters and their values.

FetchNextRowsParameter

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

Name of BIP report parameter to control the start of the chunk

FetchSize

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

The fetch size for reading.

OffsetParameter

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

Name of BIP report parameter to control the start of the chunk

RowLimit

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

The maximum number of rows to read.

StagingConnection

Declaration
[JsonProperty(PropertyName = "stagingConnection")]
public ConnectionSummaryFromObjectStorage StagingConnection { get; set; }
Property Value
Type Description
ConnectionSummaryFromObjectStorage

StagingDataAsset

Declaration
[JsonProperty(PropertyName = "stagingDataAsset")]
public DataAssetSummaryFromObjectStorage StagingDataAsset { get; set; }
Property Value
Type Description
DataAssetSummaryFromObjectStorage
In this article
Back to top