Source code for azure.servicefabric.models.wait_for_inbuild_replica_safety_check_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_safety_check_py3 import PartitionSafetyCheck


[docs]class WaitForInbuildReplicaSafetyCheck(PartitionSafetyCheck): """Safety check that waits for the replica build operation to finish. This indicates that there is a replica that is going through the copy or is providing data for building another replica. Bring the node down will abort this copy operation which are typically expensive involving data movements. All required parameters must be populated in order to send to Azure. :param kind: Required. Constant filled by server. :type kind: str :param partition_id: Id of the partition which is undergoing the safety check. :type partition_id: str """ _validation = { 'kind': {'required': True}, } _attribute_map = { 'kind': {'key': 'Kind', 'type': 'str'}, 'partition_id': {'key': 'PartitionId', 'type': 'str'}, } def __init__(self, *, partition_id: str=None, **kwargs) -> None: super(WaitForInbuildReplicaSafetyCheck, self).__init__(partition_id=partition_id, **kwargs) self.kind = 'WaitForInbuildReplica'