Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27243,6 +27243,14 @@ class SapOpenHubSource(TabularSource):
be retrieved. The default value is 0. Type: integer (or Expression with
resultType integer ).
:type base_request_id: object
:param custom_rfc_read_table_function_module: Specifies the custom RFC
function module that will be used to read data from SAP Table. Type:
string (or Expression with resultType string).
:type custom_rfc_read_table_function_module: object
:param sap_data_column_delimiter: 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).
:type sap_data_column_delimiter: object
"""

_validation = {
Expand All @@ -27259,12 +27267,16 @@ class SapOpenHubSource(TabularSource):
'additional_columns': {'key': 'additionalColumns', 'type': '[AdditionalColumns]'},
'exclude_last_request': {'key': 'excludeLastRequest', 'type': 'object'},
'base_request_id': {'key': 'baseRequestId', 'type': 'object'},
'custom_rfc_read_table_function_module': {'key': 'customRfcReadTableFunctionModule', 'type': 'object'},
'sap_data_column_delimiter': {'key': 'sapDataColumnDelimiter', 'type': 'object'},
}

def __init__(self, **kwargs):
super(SapOpenHubSource, self).__init__(**kwargs)
self.exclude_last_request = kwargs.get('exclude_last_request', None)
self.base_request_id = kwargs.get('base_request_id', None)
self.custom_rfc_read_table_function_module = kwargs.get('custom_rfc_read_table_function_module', None)
self.sap_data_column_delimiter = kwargs.get('sap_data_column_delimiter', None)
self.type = 'SapOpenHubSource'


Expand Down Expand Up @@ -27619,6 +27631,10 @@ class SapTableSource(TabularSource):
function module that will be used to read data from SAP Table. Type:
string (or Expression with resultType string).
:type custom_rfc_read_table_function_module: object
:param sap_data_column_delimiter: 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).
:type sap_data_column_delimiter: object
:param partition_option: The partition mechanism that will be used for SAP
table read in parallel. Possible values include: 'None', 'PartitionOnInt',
'PartitionOnCalendarYear', 'PartitionOnCalendarMonth',
Expand Down Expand Up @@ -27649,6 +27665,7 @@ class SapTableSource(TabularSource):
'rfc_table_options': {'key': 'rfcTableOptions', 'type': 'object'},
'batch_size': {'key': 'batchSize', 'type': 'object'},
'custom_rfc_read_table_function_module': {'key': 'customRfcReadTableFunctionModule', 'type': 'object'},
'sap_data_column_delimiter': {'key': 'sapDataColumnDelimiter', 'type': 'object'},
'partition_option': {'key': 'partitionOption', 'type': 'str'},
'partition_settings': {'key': 'partitionSettings', 'type': 'SapTablePartitionSettings'},
}
Expand All @@ -27661,6 +27678,7 @@ def __init__(self, **kwargs):
self.rfc_table_options = kwargs.get('rfc_table_options', None)
self.batch_size = kwargs.get('batch_size', None)
self.custom_rfc_read_table_function_module = kwargs.get('custom_rfc_read_table_function_module', None)
self.sap_data_column_delimiter = kwargs.get('sap_data_column_delimiter', None)
self.partition_option = kwargs.get('partition_option', None)
self.partition_settings = kwargs.get('partition_settings', None)
self.type = 'SapTableSource'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27243,6 +27243,14 @@ class SapOpenHubSource(TabularSource):
be retrieved. The default value is 0. Type: integer (or Expression with
resultType integer ).
:type base_request_id: object
:param custom_rfc_read_table_function_module: Specifies the custom RFC
function module that will be used to read data from SAP Table. Type:
string (or Expression with resultType string).
:type custom_rfc_read_table_function_module: object
:param sap_data_column_delimiter: 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).
:type sap_data_column_delimiter: object
"""

_validation = {
Expand All @@ -27259,12 +27267,16 @@ class SapOpenHubSource(TabularSource):
'additional_columns': {'key': 'additionalColumns', 'type': '[AdditionalColumns]'},
'exclude_last_request': {'key': 'excludeLastRequest', 'type': 'object'},
'base_request_id': {'key': 'baseRequestId', 'type': 'object'},
'custom_rfc_read_table_function_module': {'key': 'customRfcReadTableFunctionModule', 'type': 'object'},
'sap_data_column_delimiter': {'key': 'sapDataColumnDelimiter', 'type': 'object'},
}

def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, query_timeout=None, additional_columns=None, exclude_last_request=None, base_request_id=None, **kwargs) -> None:
def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, query_timeout=None, additional_columns=None, exclude_last_request=None, base_request_id=None, custom_rfc_read_table_function_module=None, sap_data_column_delimiter=None, **kwargs) -> None:
super(SapOpenHubSource, self).__init__(additional_properties=additional_properties, source_retry_count=source_retry_count, source_retry_wait=source_retry_wait, max_concurrent_connections=max_concurrent_connections, query_timeout=query_timeout, additional_columns=additional_columns, **kwargs)
self.exclude_last_request = exclude_last_request
self.base_request_id = base_request_id
self.custom_rfc_read_table_function_module = custom_rfc_read_table_function_module
self.sap_data_column_delimiter = sap_data_column_delimiter
self.type = 'SapOpenHubSource'


Expand Down Expand Up @@ -27619,6 +27631,10 @@ class SapTableSource(TabularSource):
function module that will be used to read data from SAP Table. Type:
string (or Expression with resultType string).
:type custom_rfc_read_table_function_module: object
:param sap_data_column_delimiter: 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).
:type sap_data_column_delimiter: object
:param partition_option: The partition mechanism that will be used for SAP
table read in parallel. Possible values include: 'None', 'PartitionOnInt',
'PartitionOnCalendarYear', 'PartitionOnCalendarMonth',
Expand Down Expand Up @@ -27649,18 +27665,20 @@ class SapTableSource(TabularSource):
'rfc_table_options': {'key': 'rfcTableOptions', 'type': 'object'},
'batch_size': {'key': 'batchSize', 'type': 'object'},
'custom_rfc_read_table_function_module': {'key': 'customRfcReadTableFunctionModule', 'type': 'object'},
'sap_data_column_delimiter': {'key': 'sapDataColumnDelimiter', 'type': 'object'},
'partition_option': {'key': 'partitionOption', 'type': 'str'},
'partition_settings': {'key': 'partitionSettings', 'type': 'SapTablePartitionSettings'},
}

def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, query_timeout=None, additional_columns=None, row_count=None, row_skips=None, rfc_table_fields=None, rfc_table_options=None, batch_size=None, custom_rfc_read_table_function_module=None, partition_option=None, partition_settings=None, **kwargs) -> None:
def __init__(self, *, additional_properties=None, source_retry_count=None, source_retry_wait=None, max_concurrent_connections=None, query_timeout=None, additional_columns=None, row_count=None, row_skips=None, rfc_table_fields=None, rfc_table_options=None, batch_size=None, custom_rfc_read_table_function_module=None, sap_data_column_delimiter=None, partition_option=None, partition_settings=None, **kwargs) -> None:
super(SapTableSource, self).__init__(additional_properties=additional_properties, source_retry_count=source_retry_count, source_retry_wait=source_retry_wait, max_concurrent_connections=max_concurrent_connections, query_timeout=query_timeout, additional_columns=additional_columns, **kwargs)
self.row_count = row_count
self.row_skips = row_skips
self.rfc_table_fields = rfc_table_fields
self.rfc_table_options = rfc_table_options
self.batch_size = batch_size
self.custom_rfc_read_table_function_module = custom_rfc_read_table_function_module
self.sap_data_column_delimiter = sap_data_column_delimiter
self.partition_option = partition_option
self.partition_settings = partition_settings
self.type = 'SapTableSource'
Expand Down