1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# 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
class LogSettings(Model):
"""Part of MultiTenantDiagnosticSettings. Specifies the settings for a
particular log.
All required parameters must be populated in order to send to Azure.
:param category: Name of a Diagnostic Log category for a resource type
this setting is applied to. To obtain the list of Diagnostic Log
categories for a resource, first perform a GET diagnostic settings
operation.
:type category: str
:param enabled: Required. a value indicating whether this log is enabled.
:type enabled: bool
:param retention_policy: the retention policy for this log.
:type retention_policy: ~azure.mgmt.monitor.models.RetentionPolicy
"""
_validation = {
'enabled': {'required': True},
}
_attribute_map = {
'category': {'key': 'category', 'type': 'str'},
'enabled': {'key': 'enabled', 'type': 'bool'},
'retention_policy': {'key': 'retentionPolicy', 'type': 'RetentionPolicy'},
}
def __init__(self, **kwargs):
super(LogSettings, self).__init__(**kwargs)
self.category = kwargs.get('category', None)
self.enabled = kwargs.get('enabled', None)
self.retention_policy = kwargs.get('retention_policy', None)
|