Source code for azure.mgmt.datafactory.models.sap_table_partition_settings_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class SapTablePartitionSettings(Model): """The settings that will be leveraged for SAP table source partitioning. :param partition_column_name: The name of the column that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). :type partition_column_name: object :param partition_upper_bound: The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). :type partition_upper_bound: object :param partition_lower_bound: The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). :type partition_lower_bound: object :param max_partitions_number: The maximum value of partitions the table will be split into. Type: integer (or Expression with resultType string). :type max_partitions_number: object """ _attribute_map = { 'partition_column_name': {'key': 'partitionColumnName', 'type': 'object'}, 'partition_upper_bound': {'key': 'partitionUpperBound', 'type': 'object'}, 'partition_lower_bound': {'key': 'partitionLowerBound', 'type': 'object'}, 'max_partitions_number': {'key': 'maxPartitionsNumber', 'type': 'object'}, } def __init__(self, *, partition_column_name=None, partition_upper_bound=None, partition_lower_bound=None, max_partitions_number=None, **kwargs) -> None: super(SapTablePartitionSettings, self).__init__(**kwargs) self.partition_column_name = partition_column_name self.partition_upper_bound = partition_upper_bound self.partition_lower_bound = partition_lower_bound self.max_partitions_number = max_partitions_number