Source code for azure.servicefabric.models.int64_range_partition_information_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 .partition_information_py3 import PartitionInformation


[docs]class Int64RangePartitionInformation(PartitionInformation): """Describes the partition information for the integer range that is based on partition schemes. All required parameters must be populated in order to send to Azure. :param id: An internal ID used by Service Fabric to uniquely identify a partition. This is a randomly generated GUID when the service was created. The partition ID is unique and does not change for the lifetime of the service. If the same service was deleted and recreated the IDs of its partitions would be different. :type id: str :param service_partition_kind: Required. Constant filled by server. :type service_partition_kind: str :param low_key: Specifies the minimum key value handled by this partition. :type low_key: str :param high_key: Specifies the maximum key value handled by this partition. :type high_key: str """ _validation = { 'service_partition_kind': {'required': True}, } _attribute_map = { 'id': {'key': 'Id', 'type': 'str'}, 'service_partition_kind': {'key': 'ServicePartitionKind', 'type': 'str'}, 'low_key': {'key': 'LowKey', 'type': 'str'}, 'high_key': {'key': 'HighKey', 'type': 'str'}, } def __init__(self, *, id: str=None, low_key: str=None, high_key: str=None, **kwargs) -> None: super(Int64RangePartitionInformation, self).__init__(id=id, **kwargs) self.low_key = low_key self.high_key = high_key self.service_partition_kind = 'Int64Range'