Source code for azure.servicefabric.models.application_type_health_policy_map_item_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 ApplicationTypeHealthPolicyMapItem(Model): """Defines an item in ApplicationTypeHealthPolicyMap. All required parameters must be populated in order to send to Azure. :param key: Required. The key of the application type health policy map item. This is the name of the application type. :type key: str :param value: Required. The value of the application type health policy map item. The max percent unhealthy applications allowed for the application type. Must be between zero and 100. :type value: int """ _validation = { 'key': {'required': True}, 'value': {'required': True}, } _attribute_map = { 'key': {'key': 'Key', 'type': 'str'}, 'value': {'key': 'Value', 'type': 'int'}, } def __init__(self, *, key: str, value: int, **kwargs) -> None: super(ApplicationTypeHealthPolicyMapItem, self).__init__(**kwargs) self.key = key self.value = value