UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

68 lines (63 loc) 1.6 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 table statistics item list. */ class USqlTableStatisticsList extends Array { /** * Create a USqlTableStatisticsList. */ constructor() { super(); } /** * Defines the metadata of USqlTableStatisticsList * * @returns {object} metadata of USqlTableStatisticsList * */ mapper() { return { required: false, serializedName: 'USqlTableStatisticsList', type: { name: 'Composite', className: 'USqlTableStatisticsList', modelProperties: { nextLink: { required: false, serializedName: 'nextLink', type: { name: 'String' } }, value: { required: false, readOnly: true, serializedName: '', type: { name: 'Sequence', element: { required: false, serializedName: 'USqlTableStatisticsElementType', type: { name: 'Composite', className: 'USqlTableStatistics' } } } } } } }; } } module.exports = USqlTableStatisticsList;