azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
53 lines (48 loc) • 1.1 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.
*/
;
/**
* A Data Lake Analytics catalog item list.
*
*/
class CatalogItemList {
/**
* Create a CatalogItemList.
* @member {string} [nextLink] the link to the next page of results.
*/
constructor() {
}
/**
* Defines the metadata of CatalogItemList
*
* @returns {object} metadata of CatalogItemList
*
*/
mapper() {
return {
required: false,
serializedName: 'CatalogItemList',
type: {
name: 'Composite',
className: 'CatalogItemList',
modelProperties: {
nextLink: {
required: false,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = CatalogItemList;