# 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 .safety_check_py3 import SafetyCheck
[docs]class PartitionSafetyCheck(SafetyCheck):
"""Represents a safety check for the service partition being performed by
service fabric before continuing with operations.
You probably want to use the sub-classes and not this class directly. Known
sub-classes are: EnsureAvailabilitySafetyCheck,
EnsurePartitionQurumSafetyCheck, WaitForInbuildReplicaSafetyCheck,
WaitForPrimaryPlacementSafetyCheck, WaitForPrimarySwapSafetyCheck,
WaitForReconfigurationSafetyCheck
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'},
}
_subtype_map = {
'kind': {'EnsureAvailability': 'EnsureAvailabilitySafetyCheck', 'EnsurePartitionQuorum': 'EnsurePartitionQurumSafetyCheck', 'WaitForInbuildReplica': 'WaitForInbuildReplicaSafetyCheck', 'WaitForPrimaryPlacement': 'WaitForPrimaryPlacementSafetyCheck', 'WaitForPrimarySwap': 'WaitForPrimarySwapSafetyCheck', 'WaitForReconfiguration': 'WaitForReconfigurationSafetyCheck'}
}
def __init__(self, *, partition_id: str=None, **kwargs) -> None:
super(PartitionSafetyCheck, self).__init__(**kwargs)
self.partition_id = partition_id
self.kind = 'PartitionSafetyCheck'