azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
64 lines (59 loc) • 1.5 kB
JavaScript
/*
* 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.
*/
;
/**
* Run info for a specific job pipeline.
*
*/
class JobPipelineRunInformation {
/**
* Create a JobPipelineRunInformation.
* @member {uuid} [runId] the run identifier of an instance of pipeline
* executions (a GUID).
* @member {date} [lastSubmitTime] the time this instance was last submitted.
*/
constructor() {
}
/**
* Defines the metadata of JobPipelineRunInformation
*
* @returns {object} metadata of JobPipelineRunInformation
*
*/
mapper() {
return {
required: false,
serializedName: 'JobPipelineRunInformation',
type: {
name: 'Composite',
className: 'JobPipelineRunInformation',
modelProperties: {
runId: {
required: false,
readOnly: true,
serializedName: 'runId',
type: {
name: 'String'
}
},
lastSubmitTime: {
required: false,
readOnly: true,
serializedName: 'lastSubmitTime',
type: {
name: 'DateTime'
}
}
}
}
};
}
}
module.exports = JobPipelineRunInformation;