UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

97 lines (91 loc) 2.3 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 package item. * * @extends models['CatalogItem'] */ class USqlPackage extends models['CatalogItem'] { /** * Create a USqlPackage. * @member {string} [databaseName] the name of the database containing the * package. * @member {string} [schemaName] the name of the schema associated with this * package and database. * @member {string} [name] the name of the package. * @member {string} [definition] the definition of the package. */ constructor() { super(); } /** * Defines the metadata of USqlPackage * * @returns {object} metadata of USqlPackage * */ mapper() { return { required: false, serializedName: 'USqlPackage', type: { name: 'Composite', className: 'USqlPackage', modelProperties: { computeAccountName: { required: false, serializedName: 'computeAccountName', type: { name: 'String' } }, version: { required: false, serializedName: 'version', type: { name: 'String' } }, databaseName: { required: false, serializedName: 'databaseName', type: { name: 'String' } }, schemaName: { required: false, serializedName: 'schemaName', type: { name: 'String' } }, name: { required: false, serializedName: 'packageName', type: { name: 'String' } }, definition: { required: false, serializedName: 'definition', type: { name: 'String' } } } } }; } } module.exports = USqlPackage;