UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

58 lines (53 loc) 1.36 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 filesystem file status list information response. * */ class FileStatusesResult { /** * Create a FileStatusesResult. * @property {object} [fileStatuses] the object representing the list of file * statuses. * @property {array} [fileStatuses.fileStatus] the object containing the list * of properties of the files. */ constructor() { } /** * Defines the metadata of FileStatusesResult * * @returns {object} metadata of FileStatusesResult * */ mapper() { return { required: false, serializedName: 'FileStatusesResult', type: { name: 'Composite', className: 'FileStatusesResult', modelProperties: { fileStatuses: { required: false, readOnly: true, serializedName: 'fileStatuses', type: { name: 'Composite', className: 'FileStatuses' } } } } }; } } module.exports = FileStatusesResult;