# 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 OperationLogSpecification(Model):
"""Details about an operation related to logs.
:param name: The name of the log category.
:type name: str
:param display_name: Localized display name.
:type display_name: str
:param blob_duration: Blobs created in the customer storage account, per
hour.
:type blob_duration: str
"""
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'display_name': {'key': 'displayName', 'type': 'str'},
'blob_duration': {'key': 'blobDuration', 'type': 'str'},
}
def __init__(self, name=None, display_name=None, blob_duration=None):
super(OperationLogSpecification, self).__init__()
self.name = name
self.display_name = display_name
self.blob_duration = blob_duration