Source code for azure.mgmt.applicationinsights.models.application_insights_component_analytics_item_properties_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 ApplicationInsightsComponentAnalyticsItemProperties(Model): """A set of properties that can be defined in the context of a specific item type. Each type may have its own properties. :param function_alias: A function alias, used when the type of the item is Function :type function_alias: str """ _attribute_map = { 'function_alias': {'key': 'functionAlias', 'type': 'str'}, } def __init__(self, *, function_alias: str=None, **kwargs) -> None: super(ApplicationInsightsComponentAnalyticsItemProperties, self).__init__(**kwargs) self.function_alias = function_alias