Source code for azure.mgmt.datalake.analytics.catalog.models.catalog_item_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 CatalogItem(Model): """A Data Lake Analytics catalog item. :param compute_account_name: the name of the Data Lake Analytics account. :type compute_account_name: str :param version: the version of the catalog item. :type version: str """ _attribute_map = { 'compute_account_name': {'key': 'computeAccountName', 'type': 'str'}, 'version': {'key': 'version', 'type': 'str'}, } def __init__(self, *, compute_account_name: str=None, version: str=None, **kwargs) -> None: super(CatalogItem, self).__init__(**kwargs) self.compute_account_name = compute_account_name self.version = version