azure-arm-datalake-store
Version:
Microsoft Azure Data Lake Store Management Client Library for node
71 lines (66 loc) • 1.69 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.
*/
;
/**
* The list of available operations for Data Lake Store.
*
*/
class OperationListResult {
/**
* Create a OperationListResult.
* @property {array} [value] The results of the list operation.
* @property {string} [nextLink] The link (url) to the next page of results.
*/
constructor() {
}
/**
* Defines the metadata of OperationListResult
*
* @returns {object} metadata of OperationListResult
*
*/
mapper() {
return {
required: false,
serializedName: 'OperationListResult',
type: {
name: 'Composite',
className: 'OperationListResult',
modelProperties: {
value: {
required: false,
readOnly: true,
serializedName: 'value',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'OperationElementType',
type: {
name: 'Composite',
className: 'Operation'
}
}
}
},
nextLink: {
required: false,
readOnly: true,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = OperationListResult;