UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

63 lines (58 loc) 1.43 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'; /** * Data Lake Store file status list information. * */ class FileStatuses { /** * Create a FileStatuses. * @property {array} [fileStatus] the object containing the list of * properties of the files. */ constructor() { } /** * Defines the metadata of FileStatuses * * @returns {object} metadata of FileStatuses * */ mapper() { return { required: false, serializedName: 'FileStatuses', type: { name: 'Composite', className: 'FileStatuses', modelProperties: { fileStatus: { required: false, readOnly: true, serializedName: 'fileStatus', type: { name: 'Sequence', element: { required: false, serializedName: 'FileStatusPropertiesElementType', type: { name: 'Composite', className: 'FileStatusProperties' } } } } } } }; } } module.exports = FileStatuses;