azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
70 lines (65 loc) • 1.75 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.
*/
;
/**
* List of job pipeline information items.
*/
class JobPipelineInformationListResult extends Array {
/**
* Create a JobPipelineInformationListResult.
* @member {string} [nextLink] the link (url) to the next page of results.
*/
constructor() {
super();
}
/**
* Defines the metadata of JobPipelineInformationListResult
*
* @returns {object} metadata of JobPipelineInformationListResult
*
*/
mapper() {
return {
required: false,
serializedName: 'JobPipelineInformationListResult',
type: {
name: 'Composite',
className: 'JobPipelineInformationListResult',
modelProperties: {
value: {
required: false,
readOnly: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'JobPipelineInformationElementType',
type: {
name: 'Composite',
className: 'JobPipelineInformation'
}
}
}
},
nextLink: {
required: false,
readOnly: true,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = JobPipelineInformationListResult;