Source code for azure.mgmt.datalake.analytics.account.models.update_data_lake_store_with_account_parameters_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 UpdateDataLakeStoreWithAccountParameters(Model): """The parameters used to update a Data Lake Store account while updating a Data Lake Analytics account. All required parameters must be populated in order to send to Azure. :param name: Required. The unique name of the Data Lake Store account to update. :type name: str :param suffix: The optional suffix for the Data Lake Store account. :type suffix: str """ _validation = { 'name': {'required': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'suffix': {'key': 'properties.suffix', 'type': 'str'}, } def __init__(self, *, name: str, suffix: str=None, **kwargs) -> None: super(UpdateDataLakeStoreWithAccountParameters, self).__init__(**kwargs) self.name = name self.suffix = suffix