UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

71 lines (65 loc) 1.53 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'; const models = require('./index'); /** * A Data Lake Analytics catalog U-SQL database item. * * @extends models['CatalogItem'] */ class USqlDatabase extends models['CatalogItem'] { /** * Create a USqlDatabase. * @member {string} [name] the name of the database. */ constructor() { super(); } /** * Defines the metadata of USqlDatabase * * @returns {object} metadata of USqlDatabase * */ mapper() { return { required: false, serializedName: 'USqlDatabase', type: { name: 'Composite', className: 'USqlDatabase', modelProperties: { computeAccountName: { required: false, serializedName: 'computeAccountName', type: { name: 'String' } }, version: { required: false, serializedName: 'version', type: { name: 'String' } }, name: { required: false, serializedName: 'databaseName', type: { name: 'String' } } } } }; } } module.exports = USqlDatabase;