Source code for azure.mgmt.monitor.models.activity_log_alert_all_of_condition_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 ActivityLogAlertAllOfCondition(Model): """An Activity Log alert condition that is met when all its member conditions are met. All required parameters must be populated in order to send to Azure. :param all_of: Required. The list of activity log alert conditions. :type all_of: list[~azure.mgmt.monitor.models.ActivityLogAlertLeafCondition] """ _validation = { 'all_of': {'required': True}, } _attribute_map = { 'all_of': {'key': 'allOf', 'type': '[ActivityLogAlertLeafCondition]'}, } def __init__(self, *, all_of, **kwargs) -> None: super(ActivityLogAlertAllOfCondition, self).__init__(**kwargs) self.all_of = all_of