Source code for azure.mgmt.datalake.analytics.catalog.models.data_lake_analytics_catalog_credential_update_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 DataLakeAnalyticsCatalogCredentialUpdateParameters(Model): """Data Lake Analytics catalog credential update parameters. :param password: the current password for the credential and user with access to the data source. This is required if the requester is not the account owner. :type password: str :param new_password: the new password for the credential and user with access to the data source. :type new_password: str :param uri: the URI identifier for the data source this credential can connect to in the format <hostname>:<port> :type uri: str :param user_id: the object identifier for the user associated with this credential with access to the data source. :type user_id: str """ _attribute_map = { 'password': {'key': 'password', 'type': 'str'}, 'new_password': {'key': 'newPassword', 'type': 'str'}, 'uri': {'key': 'uri', 'type': 'str'}, 'user_id': {'key': 'userId', 'type': 'str'}, } def __init__(self, *, password: str=None, new_password: str=None, uri: str=None, user_id: str=None, **kwargs) -> None: super(DataLakeAnalyticsCatalogCredentialUpdateParameters, self).__init__(**kwargs) self.password = password self.new_password = new_password self.uri = uri self.user_id = user_id