UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

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