Module Values.SAPODataSourcePropertiesSource

The properties that are applied when using SAPOData as a flow source.

Sourcetype nonrec t = {
  1. objectPath : Object.t option;
    (*

    The object path specified in the SAPOData flow source.

    *)
  2. parallelismConfig : SAPODataParallelismConfig.t option;
    (*

    Sets the number of concurrent processes that transfers OData records from your SAP instance.

    *)
  3. paginationConfig : SAPODataPaginationConfig.t option;
    (*

    Sets the page size for each concurrent process that transfers OData records from your SAP instance.

    *)
}
Sourceval make : ?objectPath:??? -> ?parallelismConfig:??? -> ?paginationConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Object.t | `Structure of (string * [> `Integer of SAPODataMaxParallelism.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t