Source code for azure.mgmt.datalake.analytics.catalog.models.ddl_name_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 DdlName(Model): """A Data Lake Analytics DDL name item. :param first_part: the name of the table associated with this database and schema. :type first_part: str :param second_part: the name of the table associated with this database and schema. :type second_part: str :param third_part: the name of the table associated with this database and schema. :type third_part: str :param server: the name of the table associated with this database and schema. :type server: str """ _attribute_map = { 'first_part': {'key': 'firstPart', 'type': 'str'}, 'second_part': {'key': 'secondPart', 'type': 'str'}, 'third_part': {'key': 'thirdPart', 'type': 'str'}, 'server': {'key': 'server', 'type': 'str'}, } def __init__(self, *, first_part: str=None, second_part: str=None, third_part: str=None, server: str=None, **kwargs) -> None: super(DdlName, self).__init__(**kwargs) self.first_part = first_part self.second_part = second_part self.third_part = third_part self.server = server