# 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 AlertProperties(Model):
"""Alert property bag.
:param essentials:
:type essentials: ~azure.mgmt.alertsmanagement.models.Essentials
:param context:
:type context: object
:param egress_config:
:type egress_config: object
"""
_attribute_map = {
'essentials': {'key': 'essentials', 'type': 'Essentials'},
'context': {'key': 'context', 'type': 'object'},
'egress_config': {'key': 'egressConfig', 'type': 'object'},
}
def __init__(self, *, essentials=None, context=None, egress_config=None, **kwargs) -> None:
super(AlertProperties, self).__init__(**kwargs)
self.essentials = essentials
self.context = context
self.egress_config = egress_config