SapOpenHubSource.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/** A copy activity source for SAP Business Warehouse Open Hub Destination source. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("SapOpenHubSource")
@Fluent
public final class SapOpenHubSource extends TabularSource {
/*
* Whether to exclude the records of the last request. The default value is
* true. Type: boolean (or Expression with resultType boolean).
*/
@JsonProperty(value = "excludeLastRequest")
private Object excludeLastRequest;
/*
* The ID of request for delta loading. Once it is set, only data with
* requestId larger than the value of this property will be retrieved. The
* default value is 0. Type: integer (or Expression with resultType integer
* ).
*/
@JsonProperty(value = "baseRequestId")
private Object baseRequestId;
/*
* Specifies the custom RFC function module that will be used to read data
* from SAP Table. Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "customRfcReadTableFunctionModule")
private Object customRfcReadTableFunctionModule;
/*
* The single character that will be used as delimiter passed to SAP RFC as
* well as splitting the output data retrieved. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "sapDataColumnDelimiter")
private Object sapDataColumnDelimiter;
/**
* Get the excludeLastRequest property: Whether to exclude the records of the last request. The default value is
* true. Type: boolean (or Expression with resultType boolean).
*
* @return the excludeLastRequest value.
*/
public Object getExcludeLastRequest() {
return this.excludeLastRequest;
}
/**
* Set the excludeLastRequest property: Whether to exclude the records of the last request. The default value is
* true. Type: boolean (or Expression with resultType boolean).
*
* @param excludeLastRequest the excludeLastRequest value to set.
* @return the SapOpenHubSource object itself.
*/
public SapOpenHubSource setExcludeLastRequest(Object excludeLastRequest) {
this.excludeLastRequest = excludeLastRequest;
return this;
}
/**
* Get the baseRequestId property: The ID of request for delta loading. Once it is set, only data with requestId
* larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression
* with resultType integer ).
*
* @return the baseRequestId value.
*/
public Object getBaseRequestId() {
return this.baseRequestId;
}
/**
* Set the baseRequestId property: The ID of request for delta loading. Once it is set, only data with requestId
* larger than the value of this property will be retrieved. The default value is 0. Type: integer (or Expression
* with resultType integer ).
*
* @param baseRequestId the baseRequestId value to set.
* @return the SapOpenHubSource object itself.
*/
public SapOpenHubSource setBaseRequestId(Object baseRequestId) {
this.baseRequestId = baseRequestId;
return this;
}
/**
* Get the customRfcReadTableFunctionModule property: Specifies the custom RFC function module that will be used to
* read data from SAP Table. Type: string (or Expression with resultType string).
*
* @return the customRfcReadTableFunctionModule value.
*/
public Object getCustomRfcReadTableFunctionModule() {
return this.customRfcReadTableFunctionModule;
}
/**
* Set the customRfcReadTableFunctionModule property: Specifies the custom RFC function module that will be used to
* read data from SAP Table. Type: string (or Expression with resultType string).
*
* @param customRfcReadTableFunctionModule the customRfcReadTableFunctionModule value to set.
* @return the SapOpenHubSource object itself.
*/
public SapOpenHubSource setCustomRfcReadTableFunctionModule(Object customRfcReadTableFunctionModule) {
this.customRfcReadTableFunctionModule = customRfcReadTableFunctionModule;
return this;
}
/**
* Get the sapDataColumnDelimiter property: The single character that will be used as delimiter passed to SAP RFC as
* well as splitting the output data retrieved. Type: string (or Expression with resultType string).
*
* @return the sapDataColumnDelimiter value.
*/
public Object getSapDataColumnDelimiter() {
return this.sapDataColumnDelimiter;
}
/**
* Set the sapDataColumnDelimiter property: The single character that will be used as delimiter passed to SAP RFC as
* well as splitting the output data retrieved. Type: string (or Expression with resultType string).
*
* @param sapDataColumnDelimiter the sapDataColumnDelimiter value to set.
* @return the SapOpenHubSource object itself.
*/
public SapOpenHubSource setSapDataColumnDelimiter(Object sapDataColumnDelimiter) {
this.sapDataColumnDelimiter = sapDataColumnDelimiter;
return this;
}
}