UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

71 lines (66 loc) 1.71 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'; /** * A Data Lake Analytics catalog U-SQL assembly file information item. * */ class USqlAssemblyFileInfo { /** * Create a USqlAssemblyFileInfo. * @member {string} [type] the assembly file type. Possible values include: * 'Assembly', 'Resource', 'Nodeploy' * @member {string} [originalPath] the the original path to the assembly * file. * @member {string} [contentPath] the the content path to the assembly file. */ constructor() { } /** * Defines the metadata of USqlAssemblyFileInfo * * @returns {object} metadata of USqlAssemblyFileInfo * */ mapper() { return { required: false, serializedName: 'USqlAssemblyFileInfo', type: { name: 'Composite', className: 'USqlAssemblyFileInfo', modelProperties: { type: { required: false, serializedName: 'type', type: { name: 'String' } }, originalPath: { required: false, serializedName: 'originalPath', type: { name: 'String' } }, contentPath: { required: false, serializedName: 'contentPath', type: { name: 'String' } } } } }; } } module.exports = USqlAssemblyFileInfo;