UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

72 lines (67 loc) 1.98 kB
/* * 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. */ 'use strict'; /** * Data Lake Analytics catalog credential creation parameters. * */ class DataLakeAnalyticsCatalogCredentialCreateParameters { /** * Create a DataLakeAnalyticsCatalogCredentialCreateParameters. * @member {string} password the password for the credential and user with * access to the data source. * @member {string} uri the URI identifier for the data source this * credential can connect to in the format <hostname>:<port> * @member {string} userId the object identifier for the user associated with * this credential with access to the data source. */ constructor() { } /** * Defines the metadata of DataLakeAnalyticsCatalogCredentialCreateParameters * * @returns {object} metadata of DataLakeAnalyticsCatalogCredentialCreateParameters * */ mapper() { return { required: false, serializedName: 'DataLakeAnalyticsCatalogCredentialCreateParameters', type: { name: 'Composite', className: 'DataLakeAnalyticsCatalogCredentialCreateParameters', modelProperties: { password: { required: true, serializedName: 'password', type: { name: 'String' } }, uri: { required: true, serializedName: 'uri', type: { name: 'String' } }, userId: { required: true, serializedName: 'userId', type: { name: 'String' } } } } }; } } module.exports = DataLakeAnalyticsCatalogCredentialCreateParameters;