Source code for azure.mgmt.web.models.recommendation_rule

# 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 RecommendationRule(Model): """Represents a recommendation rule that the recommendation engine can perform. :param name: Unique name of the rule :type name: str :param display_name: UI friendly name of the rule :type display_name: str :param message: Localized name of the rule (Good for UI) :type message: str :param recommendation_id: Recommendation ID of an associated recommendation object tied to the rule, if exists. If such an object doesn't exist, it is set to null. :type recommendation_id: str :param description: Localized detailed description of the rule :type description: str :param action_name: Name of action that is recommended by this rule in string :type action_name: str :param enabled: On/off flag indicating the rule is currently enabled or disabled. :type enabled: int :param level: Level of impact indicating how critical this rule is. Possible values include: 'Critical', 'Warning', 'Information', 'NonUrgentSuggestion' :type level: str or :class:`NotificationLevel <azure.mgmt.web.models.NotificationLevel>` :param channels: List of available channels that this rule applies. Possible values include: 'Notification', 'Api', 'Email', 'All' :type channels: str or :class:`Channels <azure.mgmt.web.models.Channels>` :param tags: An array of category tags that the rule contains. :type tags: list of str """ _validation = { 'level': {'required': True}, 'channels': {'required': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'display_name': {'key': 'displayName', 'type': 'str'}, 'message': {'key': 'message', 'type': 'str'}, 'recommendation_id': {'key': 'recommendationId', 'type': 'str'}, 'description': {'key': 'description', 'type': 'str'}, 'action_name': {'key': 'actionName', 'type': 'str'}, 'enabled': {'key': 'enabled', 'type': 'int'}, 'level': {'key': 'level', 'type': 'NotificationLevel'}, 'channels': {'key': 'channels', 'type': 'Channels'}, 'tags': {'key': 'tags', 'type': '[str]'}, } def __init__(self, level, channels, name=None, display_name=None, message=None, recommendation_id=None, description=None, action_name=None, enabled=None, tags=None): self.name = name self.display_name = display_name self.message = message self.recommendation_id = recommendation_id self.description = description self.action_name = action_name self.enabled = enabled self.level = level self.channels = channels self.tags = tags