UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

83 lines (77 loc) 2.02 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'; const models = require('./index'); /** * The Data Lake Analytics job execution statistics. * */ class JobStatistics { /** * Create a JobStatistics. * @member {date} [lastUpdateTimeUtc] the last update time for the * statistics. * @member {date} [finalizingTimeUtc] the job finalizing start time. * @member {array} [stages] the list of stages for the job. */ constructor() { } /** * Defines the metadata of JobStatistics * * @returns {object} metadata of JobStatistics * */ mapper() { return { required: false, serializedName: 'JobStatistics', type: { name: 'Composite', className: 'JobStatistics', modelProperties: { lastUpdateTimeUtc: { required: false, readOnly: true, serializedName: 'lastUpdateTimeUtc', type: { name: 'DateTime' } }, finalizingTimeUtc: { required: false, readOnly: true, serializedName: 'finalizingTimeUtc', type: { name: 'DateTime' } }, stages: { required: false, readOnly: true, serializedName: 'stages', type: { name: 'Sequence', element: { required: false, serializedName: 'JobStatisticsVertexStageElementType', type: { name: 'Composite', className: 'JobStatisticsVertexStage' } } } } } } }; } } module.exports = JobStatistics;